diff --git a/konova/views/map_proxy.py b/konova/views/map_proxy.py index 8f1c925..6b6e386 100644 --- a/konova/views/map_proxy.py +++ b/konova/views/map_proxy.py @@ -6,6 +6,7 @@ Created on: 19.08.22 """ import json +from json import JSONDecodeError import requests from django.contrib.auth.decorators import login_required @@ -13,6 +14,8 @@ from django.http import JsonResponse, HttpRequest from django.utils.decorators import method_decorator from django.utils.http import urlencode from django.views import View +from django.utils.translation import gettext_lazy as _ + from requests.auth import HTTPDigestAuth from konova.sub_settings.proxy_settings import PROXIES, CLIENT_PROXY_AUTH_USER, CLIENT_PROXY_AUTH_PASSWORD @@ -57,7 +60,18 @@ class ClientProxyParcelSearch(BaseClientProxyView): def get(self, request: HttpRequest): url = request.META.get("QUERY_STRING") content, response_code = self.perform_url_call(url) - body = json.loads(content) + try: + body = json.loads(content) + except JSONDecodeError as e: + body = { + "totalResultsCount": -1, + "geonames": [ + { + "title": _("The external service is currently unavailable.
Please try again in a few moments...") + } + ] + } + if response_code != 200: return JsonResponse({ "status_code": response_code, diff --git a/locale/de/LC_MESSAGES/django.mo b/locale/de/LC_MESSAGES/django.mo index 85da40f..93455db 100644 Binary files a/locale/de/LC_MESSAGES/django.mo and b/locale/de/LC_MESSAGES/django.mo differ diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index f087f71..dc2c627 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 14:12+0200\n" +"POT-Creation-Date: 2023-07-10 10:16+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -945,6 +945,7 @@ msgstr "Log anzeigen" #: ema/templates/ema/detail/includes/controls.html:41 #: intervention/templates/intervention/detail/includes/controls.html:46 #: venv/lib/python3.7/site-packages/django/forms/formsets.py:391 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:391 msgid "Delete" msgstr "Löschen" @@ -1087,6 +1088,7 @@ msgstr "Fehlende Flächenmengen laut Zielzustand: " #: ema/templates/ema/detail/view.html:64 #: ema/templates/ema/report/report.html:27 #: venv/lib/python3.7/site-packages/django/forms/widgets.py:710 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:710 msgid "Yes" msgstr "Ja" @@ -1101,6 +1103,7 @@ msgstr "Ja" #: ema/templates/ema/detail/view.html:66 #: ema/templates/ema/report/report.html:29 #: venv/lib/python3.7/site-packages/django/forms/widgets.py:711 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:711 msgid "No" msgstr "Nein" @@ -1792,6 +1795,7 @@ msgstr "Wann wurde diese Datei erstellt oder das Foto aufgenommen?" #: konova/forms/modals/document_form.py:49 #: venv/lib/python3.7/site-packages/django/db/models/fields/files.py:231 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/files.py:231 msgid "File" msgstr "Datei" @@ -2024,6 +2028,7 @@ msgstr "keine weitere Angabe" #: konova/utils/message_templates.py:13 #: venv/lib/python3.7/site-packages/django/forms/widgets.py:709 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:709 msgid "Unknown" msgstr "Unbekannt" @@ -2236,8 +2241,8 @@ msgid "" "The geometry contained more than {} vertices. It had to be simplified to " "match the allowed limit of {} vertices." msgstr "" -"Die Geometrie enthielt mehr als {} Eckpunkte. Sie musste vereinfacht werden um die Obergrenze von {} " -"erlaubten Eckpunkten einzuhalten." +"Die Geometrie enthielt mehr als {} Eckpunkte. Sie musste vereinfacht werden " +"um die Obergrenze von {} erlaubten Eckpunkten einzuhalten." #: konova/utils/message_templates.py:89 msgid "This intervention has {} revocations" @@ -2294,6 +2299,14 @@ msgstr "Home" msgid "Log" msgstr "Log" +#: konova/views/map_proxy.py:71 +msgid "" +"The external service is currently unavailable.
Please try again in a few " +"moments..." +msgstr "" +"Der externe Dienst ist zur Zeit nicht erreichbar.
Versuchen Sie es in ein paar " +"Sekunden nochmal." + #: konova/views/record.py:30 msgid "{} unrecorded" msgstr "{} entzeichnet" @@ -3099,20 +3112,26 @@ msgstr "Team verlassen" #: venv/lib/python3.7/site-packages/bootstrap4/components.py:17 #: venv/lib/python3.7/site-packages/bootstrap4/templates/bootstrap4/form_errors.html:3 #: venv/lib/python3.7/site-packages/bootstrap4/templates/bootstrap4/messages.html:4 +#: venv_py3.9/lib/python3.9/site-packages/bootstrap4/components.py:17 +#: venv_py3.9/lib/python3.9/site-packages/bootstrap4/templates/bootstrap4/form_errors.html:3 +#: venv_py3.9/lib/python3.9/site-packages/bootstrap4/templates/bootstrap4/messages.html:4 msgid "close" msgstr "Schließen" #: venv/lib/python3.7/site-packages/click/_termui_impl.py:496 +#: venv_py3.9/lib/python3.9/site-packages/click/_termui_impl.py:496 #, python-brace-format msgid "{editor}: Editing failed" msgstr "" #: venv/lib/python3.7/site-packages/click/_termui_impl.py:500 +#: venv_py3.9/lib/python3.9/site-packages/click/_termui_impl.py:500 #, python-brace-format msgid "{editor}: Editing failed: {e}" msgstr "" #: venv/lib/python3.7/site-packages/click/_unicodefun.py:20 +#: venv_py3.9/lib/python3.9/site-packages/click/_unicodefun.py:20 msgid "" "Click will abort further execution because Python was configured to use " "ASCII as encoding for the environment. Consult https://click.palletsprojects." @@ -3120,6 +3139,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/click/_unicodefun.py:56 +#: venv_py3.9/lib/python3.9/site-packages/click/_unicodefun.py:56 msgid "" "Additional information: on this system no suitable UTF-8 locales were " "discovered. This most likely requires resolving by reconfiguring the locale " @@ -3127,12 +3147,14 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/click/_unicodefun.py:65 +#: venv_py3.9/lib/python3.9/site-packages/click/_unicodefun.py:65 msgid "" "This system supports the C.UTF-8 locale which is recommended. You might be " "able to resolve your issue by exporting the following environment variables:" msgstr "" #: venv/lib/python3.7/site-packages/click/_unicodefun.py:75 +#: venv_py3.9/lib/python3.9/site-packages/click/_unicodefun.py:75 #, python-brace-format msgid "" "This system lists some UTF-8 supporting locales that you can pick from. The " @@ -3140,6 +3162,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/click/_unicodefun.py:93 +#: venv_py3.9/lib/python3.9/site-packages/click/_unicodefun.py:93 msgid "" "Click discovered that you exported a UTF-8 locale but the locale system " "could not pick up from it because it does not exist. The exported locale is " @@ -3147,25 +3170,32 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:1095 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1095 msgid "Aborted!" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:1279 #: venv/lib/python3.7/site-packages/click/decorators.py:434 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1279 +#: venv_py3.9/lib/python3.9/site-packages/click/decorators.py:434 msgid "Show this message and exit." msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:1308 #: venv/lib/python3.7/site-packages/click/core.py:1334 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1308 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1334 #, python-brace-format msgid "(Deprecated) {text}" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:1351 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1351 msgid "Options" msgstr "Optionen" #: venv/lib/python3.7/site-packages/click/core.py:1375 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1375 #, python-brace-format msgid "Got unexpected extra argument ({args})" msgid_plural "Got unexpected extra arguments ({args})" @@ -3173,26 +3203,32 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/core.py:1390 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1390 msgid "DeprecationWarning: The command {name!r} is deprecated." msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:1607 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1607 msgid "Commands" msgstr "Befehle" #: venv/lib/python3.7/site-packages/click/core.py:1639 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1639 msgid "Missing command." msgstr "Befehl fehlt" #: venv/lib/python3.7/site-packages/click/core.py:1717 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:1717 msgid "No such command {name!r}." msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:2258 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2258 msgid "Value must be an iterable." msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:2278 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2278 #, python-brace-format msgid "Takes {nargs} values but 1 was given." msgid_plural "Takes {nargs} values but {len} were given." @@ -3200,81 +3236,99 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/core.py:2701 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2701 #, python-brace-format msgid "env var: {var}" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:2724 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2724 msgid "(dynamic)" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:2735 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2735 #, python-brace-format msgid "default: {default}" msgstr "" #: venv/lib/python3.7/site-packages/click/core.py:2748 +#: venv_py3.9/lib/python3.9/site-packages/click/core.py:2748 msgid "required" msgstr "" #: venv/lib/python3.7/site-packages/click/decorators.py:339 +#: venv_py3.9/lib/python3.9/site-packages/click/decorators.py:339 #, python-format msgid "%(prog)s, version %(version)s" msgstr "" #: venv/lib/python3.7/site-packages/click/decorators.py:403 +#: venv_py3.9/lib/python3.9/site-packages/click/decorators.py:403 msgid "Show the version and exit." msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:43 #: venv/lib/python3.7/site-packages/click/exceptions.py:79 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:43 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:79 #, python-brace-format msgid "Error: {message}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:71 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:71 #, python-brace-format msgid "Try '{command} {option}' for help." msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:120 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:120 #, python-brace-format msgid "Invalid value: {message}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:122 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:122 #, python-brace-format msgid "Invalid value for {param_hint}: {message}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:178 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:178 msgid "Missing argument" msgstr "Argument fehlt" #: venv/lib/python3.7/site-packages/click/exceptions.py:180 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:180 msgid "Missing option" msgstr "Option fehlt" #: venv/lib/python3.7/site-packages/click/exceptions.py:182 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:182 msgid "Missing parameter" msgstr "Parameter fehlt" #: venv/lib/python3.7/site-packages/click/exceptions.py:184 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:184 #, python-brace-format msgid "Missing {param_type}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:191 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:191 #, python-brace-format msgid "Missing parameter: {param_name}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:211 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:211 #, python-brace-format msgid "No such option: {name}" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:223 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:223 #, python-brace-format msgid "Did you mean {possibility}?" msgid_plural "(Possible options: {possibilities})" @@ -3282,61 +3336,75 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/exceptions.py:261 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:261 msgid "unknown error" msgstr "" #: venv/lib/python3.7/site-packages/click/exceptions.py:268 +#: venv_py3.9/lib/python3.9/site-packages/click/exceptions.py:268 msgid "Could not open file {filename!r}: {message}" msgstr "" #: venv/lib/python3.7/site-packages/click/parser.py:231 +#: venv_py3.9/lib/python3.9/site-packages/click/parser.py:231 msgid "Argument {name!r} takes {nargs} values." msgstr "" #: venv/lib/python3.7/site-packages/click/parser.py:413 +#: venv_py3.9/lib/python3.9/site-packages/click/parser.py:413 msgid "Option {name!r} does not take a value." msgstr "" #: venv/lib/python3.7/site-packages/click/parser.py:474 +#: venv_py3.9/lib/python3.9/site-packages/click/parser.py:474 msgid "Option {name!r} requires an argument." msgid_plural "Option {name!r} requires {nargs} arguments." msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/shell_completion.py:316 +#: venv_py3.9/lib/python3.9/site-packages/click/shell_completion.py:316 msgid "Shell completion is not supported for Bash versions older than 4.4." msgstr "" #: venv/lib/python3.7/site-packages/click/shell_completion.py:322 +#: venv_py3.9/lib/python3.9/site-packages/click/shell_completion.py:322 msgid "Couldn't detect Bash version, shell completion is not supported." msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:161 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:161 msgid "Repeat for confirmation" msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:178 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:178 msgid "Error: The value you entered was invalid." msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:180 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:180 #, python-brace-format msgid "Error: {e.message}" msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:191 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:191 msgid "Error: The two entered values do not match." msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:247 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:247 msgid "Error: invalid input" msgstr "" #: venv/lib/python3.7/site-packages/click/termui.py:798 +#: venv_py3.9/lib/python3.9/site-packages/click/termui.py:798 msgid "Press any key to continue..." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:258 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:258 #, python-brace-format msgid "" "Choose from:\n" @@ -3344,67 +3412,82 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:290 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:290 msgid "{value!r} is not {choice}." msgid_plural "{value!r} is not one of {choices}." msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/types.py:380 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:380 msgid "{value!r} does not match the format {format}." msgid_plural "{value!r} does not match the formats {formats}." msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/click/types.py:402 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:402 msgid "{value!r} is not a valid {number_type}." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:458 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:458 #, python-brace-format msgid "{value} is not in the range {range}." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:599 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:599 msgid "{value!r} is not a valid boolean." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:623 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:623 msgid "{value!r} is not a valid UUID." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:801 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:801 msgid "file" msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:803 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:803 msgid "directory" msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:805 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:805 msgid "path" msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:851 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:851 msgid "{name} {filename!r} does not exist." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:860 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:860 msgid "{name} {filename!r} is a file." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:868 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:868 msgid "{name} {filename!r} is a directory." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:876 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:876 msgid "{name} {filename!r} is not writable." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:884 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:884 msgid "{name} {filename!r} is not readable." msgstr "" #: venv/lib/python3.7/site-packages/click/types.py:951 +#: venv_py3.9/lib/python3.9/site-packages/click/types.py:951 #, python-brace-format msgid "{len_type} values are required, but {len_value} was given." msgid_plural "{len_type} values are required, but {len_value} were given." @@ -3412,57 +3495,71 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/contrib/messages/apps.py:7 +#: venv_py3.9/lib/python3.9/site-packages/django/contrib/messages/apps.py:7 msgid "Messages" msgstr "Nachrichten" #: venv/lib/python3.7/site-packages/django/contrib/sitemaps/apps.py:7 +#: venv_py3.9/lib/python3.9/site-packages/django/contrib/sitemaps/apps.py:7 msgid "Site Maps" msgstr "" #: venv/lib/python3.7/site-packages/django/contrib/staticfiles/apps.py:9 +#: venv_py3.9/lib/python3.9/site-packages/django/contrib/staticfiles/apps.py:9 msgid "Static Files" msgstr "" #: venv/lib/python3.7/site-packages/django/contrib/syndication/apps.py:7 +#: venv_py3.9/lib/python3.9/site-packages/django/contrib/syndication/apps.py:7 msgid "Syndication" msgstr "" #: venv/lib/python3.7/site-packages/django/core/paginator.py:48 +#: venv_py3.9/lib/python3.9/site-packages/django/core/paginator.py:48 msgid "That page number is not an integer" msgstr "" #: venv/lib/python3.7/site-packages/django/core/paginator.py:50 +#: venv_py3.9/lib/python3.9/site-packages/django/core/paginator.py:50 msgid "That page number is less than 1" msgstr "" #: venv/lib/python3.7/site-packages/django/core/paginator.py:55 +#: venv_py3.9/lib/python3.9/site-packages/django/core/paginator.py:55 msgid "That page contains no results" msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:20 msgid "Enter a valid value." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:91 #: venv/lib/python3.7/site-packages/django/forms/fields.py:671 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:91 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:671 msgid "Enter a valid URL." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:145 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:145 msgid "Enter a valid integer." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:156 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:156 msgid "Enter a valid email address." msgstr "" #. Translators: "letters" means latin letters: a-z and A-Z. #: venv/lib/python3.7/site-packages/django/core/validators.py:230 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:230 msgid "" "Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:237 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:237 msgid "" "Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " "hyphens." @@ -3470,39 +3567,50 @@ msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:246 #: venv/lib/python3.7/site-packages/django/core/validators.py:266 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:246 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:266 msgid "Enter a valid IPv4 address." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:251 #: venv/lib/python3.7/site-packages/django/core/validators.py:267 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:251 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:267 msgid "Enter a valid IPv6 address." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:261 #: venv/lib/python3.7/site-packages/django/core/validators.py:265 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:261 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:265 msgid "Enter a valid IPv4 or IPv6 address." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:295 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:295 msgid "Enter only digits separated by commas." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:301 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:301 #, python-format msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:334 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:334 #, python-format msgid "Ensure this value is less than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:343 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:343 #, python-format msgid "Ensure this value is greater than or equal to %(limit_value)s." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:353 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:353 #, python-format msgid "" "Ensure this value has at least %(limit_value)d character (it has " @@ -3514,6 +3622,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/core/validators.py:368 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:368 #, python-format msgid "" "Ensure this value has at most %(limit_value)d character (it has " @@ -3527,10 +3636,14 @@ msgstr[1] "" #: venv/lib/python3.7/site-packages/django/core/validators.py:387 #: venv/lib/python3.7/site-packages/django/forms/fields.py:292 #: venv/lib/python3.7/site-packages/django/forms/fields.py:327 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:387 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:292 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:327 msgid "Enter a number." msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:389 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:389 #, python-format 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." @@ -3538,6 +3651,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/core/validators.py:394 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:394 #, python-format 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." @@ -3545,6 +3659,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/core/validators.py:399 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:399 #, python-format msgid "" "Ensure that there are no more than %(max)s digit before the decimal point." @@ -3554,6 +3669,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/core/validators.py:461 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:461 #, python-format msgid "" "File extension “%(extension)s” is not allowed. Allowed extensions are: " @@ -3561,33 +3677,41 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/core/validators.py:513 +#: venv_py3.9/lib/python3.9/site-packages/django/core/validators.py:513 msgid "Null characters are not allowed." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/base.py:1190 #: venv/lib/python3.7/site-packages/django/forms/models.py:760 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/base.py:1190 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:760 msgid "and" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/base.py:1192 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/base.py:1192 #, python-format msgid "%(model_name)s with this %(field_labels)s already exists." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:100 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:100 #, python-format msgid "Value %(value)r is not a valid choice." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:101 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:101 msgid "This field cannot be null." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:102 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:102 msgid "This field cannot be blank." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:103 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:103 #, python-format msgid "%(model_name)s with this %(field_label)s already exists." msgstr "" @@ -3595,40 +3719,48 @@ msgstr "" #. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. #. Eg: "Title must be unique for pub_date year" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:107 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:107 #, python-format msgid "" "%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:126 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:126 #, python-format msgid "Field of type: %(field_type)s" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:939 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:939 #, python-format msgid "“%(value)s” value must be either True or False." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:940 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:940 #, python-format msgid "“%(value)s” value must be either True, False, or None." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:942 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:942 msgid "Boolean (Either True or False)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:983 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:983 #, python-format msgid "String (up to %(max_length)s)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1047 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1047 msgid "Comma-separated integers" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1096 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1096 #, python-format msgid "" "“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " @@ -3637,6 +3769,8 @@ msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1098 #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1241 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1098 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1241 #, python-format msgid "" "“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " @@ -3644,10 +3778,12 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1101 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1101 msgid "Date (without time)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1239 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1239 #, python-format msgid "" "“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." @@ -3655,6 +3791,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1243 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1243 #, python-format msgid "" "“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" @@ -3662,19 +3799,23 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1247 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1247 msgid "Date (with time)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1395 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1395 #, python-format msgid "“%(value)s” value must be a decimal number." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1397 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1397 msgid "Decimal number" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1536 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1536 #, python-format msgid "" "“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." @@ -3682,83 +3823,103 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1539 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1539 msgid "Duration" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1589 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1589 msgid "Email address" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1612 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1612 msgid "File path" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1678 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1678 #, python-format msgid "“%(value)s” value must be a float." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1680 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1680 msgid "Floating point number" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1718 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1718 #, python-format msgid "“%(value)s” value must be an integer." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1720 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1720 msgid "Integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1803 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1803 msgid "Big (8 byte) integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1819 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1819 msgid "IPv4 address" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1850 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1850 msgid "IP address" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1930 #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1931 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1930 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1931 #, python-format msgid "“%(value)s” value must be either None, True or False." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1933 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1933 msgid "Boolean (Either True, False or None)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1976 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1976 msgid "Positive big integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:1989 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1989 msgid "Positive integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2002 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2002 msgid "Positive small integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2016 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2016 #, python-format msgid "Slug (up to %(max_length)s)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2048 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2048 msgid "Small integer" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2055 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2055 msgid "Text" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2083 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2083 #, python-format msgid "" "“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " @@ -3766,6 +3927,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2085 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2085 #, python-format msgid "" "“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " @@ -3773,115 +3935,143 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2088 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2088 msgid "Time" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2214 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2214 msgid "URL" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2236 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2236 msgid "Raw binary data" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2301 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2301 #, python-format msgid "“%(value)s” is not a valid UUID." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/__init__.py:2303 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2303 msgid "Universally unique identifier" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/files.py:379 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/files.py:379 msgid "Image" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/json.py:18 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/json.py:18 msgid "A JSON object" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/json.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/json.py:20 msgid "Value must be valid JSON." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:790 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:790 #, python-format msgid "%(model)s instance with %(field)s %(value)r does not exist." msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:792 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:792 msgid "Foreign Key (type determined by related field)" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:1045 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:1045 msgid "One-to-one relationship" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:1099 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:1099 #, python-format msgid "%(from)s-%(to)s relationship" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:1100 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:1100 #, python-format msgid "%(from)s-%(to)s relationships" msgstr "" #: venv/lib/python3.7/site-packages/django/db/models/fields/related.py:1142 +#: venv_py3.9/lib/python3.9/site-packages/django/db/models/fields/related.py:1142 msgid "Many-to-many relationship" msgstr "" #. Translators: If found as last label character, these punctuation #. characters will prevent the default label_suffix to be appended to the label #: venv/lib/python3.7/site-packages/django/forms/boundfield.py:150 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/boundfield.py:150 msgid ":?.!" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:54 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:54 msgid "This field is required." msgstr "Pflichtfeld" #: venv/lib/python3.7/site-packages/django/forms/fields.py:247 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:247 msgid "Enter a whole number." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:398 #: venv/lib/python3.7/site-packages/django/forms/fields.py:1139 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:398 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:1139 msgid "Enter a valid date." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:422 #: venv/lib/python3.7/site-packages/django/forms/fields.py:1140 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:422 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:1140 msgid "Enter a valid time." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:450 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:450 msgid "Enter a valid date/time." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:484 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:484 msgid "Enter a valid duration." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:485 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:485 #, python-brace-format msgid "The number of days must be between {min_days} and {max_days}." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:545 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:545 msgid "No file was submitted. Check the encoding type on the form." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:546 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:546 msgid "No file was submitted." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:547 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:547 msgid "The submitted file is empty." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:549 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:549 #, python-format msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." msgid_plural "" @@ -3890,10 +4080,12 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:552 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:552 msgid "Please either submit a file or check the clear checkbox, not both." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:613 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:613 msgid "" "Upload a valid image. The file you uploaded was either not an image or a " "corrupted image." @@ -3902,6 +4094,9 @@ msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:775 #: venv/lib/python3.7/site-packages/django/forms/fields.py:865 #: venv/lib/python3.7/site-packages/django/forms/models.py:1296 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:775 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:865 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:1296 #, python-format msgid "Select a valid choice. %(value)s is not one of the available choices." msgstr "" @@ -3909,36 +4104,46 @@ msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:866 #: venv/lib/python3.7/site-packages/django/forms/fields.py:981 #: venv/lib/python3.7/site-packages/django/forms/models.py:1295 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:866 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:981 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:1295 msgid "Enter a list of values." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:982 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:982 msgid "Enter a complete value." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:1198 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:1198 msgid "Enter a valid UUID." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/fields.py:1228 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/fields.py:1228 msgid "Enter a valid JSON." msgstr "" #. Translators: This is the default suffix added to form field labels #: venv/lib/python3.7/site-packages/django/forms/forms.py:78 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/forms.py:78 msgid ":" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/forms.py:205 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/forms.py:205 #, python-format msgid "(Hidden field %(name)s) %(error)s" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/formsets.py:93 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:93 msgid "ManagementForm data is missing or has been tampered with" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/formsets.py:345 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:345 #, python-format msgid "Please submit %d or fewer forms." msgid_plural "Please submit %d or fewer forms." @@ -3946,6 +4151,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/forms/formsets.py:352 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:352 #, python-format msgid "Please submit %d or more forms." msgid_plural "Please submit %d or more forms." @@ -3954,20 +4160,25 @@ msgstr[1] "" #: venv/lib/python3.7/site-packages/django/forms/formsets.py:379 #: venv/lib/python3.7/site-packages/django/forms/formsets.py:386 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:379 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/formsets.py:386 msgid "Order" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:755 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:755 #, python-format msgid "Please correct the duplicate data for %(field)s." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:759 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:759 #, python-format msgid "Please correct the duplicate data for %(field)s, which must be unique." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:765 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:765 #, python-format msgid "" "Please correct the duplicate data for %(field_name)s which must be unique " @@ -3975,23 +4186,28 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:774 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:774 msgid "Please correct the duplicate values below." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:1096 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:1096 msgid "The inline value did not match the parent instance." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:1180 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:1180 msgid "Select a valid choice. That choice is not one of the available choices." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/models.py:1298 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/models.py:1298 #, python-format msgid "“%(pk)s” is not a valid value." msgstr "" #: venv/lib/python3.7/site-packages/django/forms/utils.py:167 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/utils.py:167 #, python-format msgid "" "%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " @@ -3999,24 +4215,30 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/widgets.py:398 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:398 msgid "Clear" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/widgets.py:399 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:399 msgid "Currently" msgstr "" #: venv/lib/python3.7/site-packages/django/forms/widgets.py:400 +#: venv_py3.9/lib/python3.9/site-packages/django/forms/widgets.py:400 msgid "Change" msgstr "" #. Translators: Please do not add spaces around commas. #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:790 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:790 msgid "yes,no,maybe" msgstr "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:819 #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:836 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:819 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:836 #, python-format msgid "%(size)d byte" msgid_plural "%(size)d bytes" @@ -4024,347 +4246,426 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:838 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:838 #, python-format msgid "%s KB" msgstr "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:840 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:840 #, python-format msgid "%s MB" msgstr "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:842 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:842 #, python-format msgid "%s GB" msgstr "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:844 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:844 #, python-format msgid "%s TB" msgstr "" #: venv/lib/python3.7/site-packages/django/template/defaultfilters.py:846 +#: venv_py3.9/lib/python3.9/site-packages/django/template/defaultfilters.py:846 #, python-format msgid "%s PB" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:65 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:65 msgid "p.m." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:66 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:66 msgid "a.m." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:71 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:71 msgid "PM" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:72 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:72 msgid "AM" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:149 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:149 msgid "midnight" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dateformat.py:151 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dateformat.py:151 msgid "noon" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:6 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:6 msgid "Monday" msgstr "Montag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:6 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:6 msgid "Tuesday" msgstr "Dienstag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:6 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:6 msgid "Wednesday" msgstr "Mittwoch" #: venv/lib/python3.7/site-packages/django/utils/dates.py:6 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:6 msgid "Thursday" msgstr "Donnerstag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:6 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:6 msgid "Friday" msgstr "Freitag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:7 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:7 msgid "Saturday" msgstr "Samstag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:7 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:7 msgid "Sunday" msgstr "Sonntag" #: venv/lib/python3.7/site-packages/django/utils/dates.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:10 msgid "Mon" msgstr "Mo" #: venv/lib/python3.7/site-packages/django/utils/dates.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:10 msgid "Tue" msgstr "Di" #: venv/lib/python3.7/site-packages/django/utils/dates.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:10 msgid "Wed" msgstr "Mi" #: venv/lib/python3.7/site-packages/django/utils/dates.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:10 msgid "Thu" msgstr "Do" #: venv/lib/python3.7/site-packages/django/utils/dates.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:10 msgid "Fri" msgstr "Fr" #: venv/lib/python3.7/site-packages/django/utils/dates.py:11 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:11 msgid "Sat" msgstr "Sa" #: venv/lib/python3.7/site-packages/django/utils/dates.py:11 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:11 msgid "Sun" msgstr "So" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "January" msgstr "Januar" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "February" msgstr "Februar" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "March" msgstr "März" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "April" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "May" msgstr "Mai" #: venv/lib/python3.7/site-packages/django/utils/dates.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:14 msgid "June" msgstr "Juni" #: venv/lib/python3.7/site-packages/django/utils/dates.py:15 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:15 msgid "July" msgstr "Juli" #: venv/lib/python3.7/site-packages/django/utils/dates.py:15 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:15 msgid "August" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:15 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:15 msgid "September" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:15 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:15 msgid "October" msgstr "Oktober" #: venv/lib/python3.7/site-packages/django/utils/dates.py:15 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:15 msgid "November" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:16 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:16 msgid "December" msgstr "Dezember" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "jan" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "feb" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "mar" msgstr "mär" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "apr" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "may" msgstr "mai" #: venv/lib/python3.7/site-packages/django/utils/dates.py:19 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:19 msgid "jun" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "jul" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "aug" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "sep" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "oct" msgstr "okt" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "nov" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:20 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:20 msgid "dec" msgstr "dez" #: venv/lib/python3.7/site-packages/django/utils/dates.py:23 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:23 msgctxt "abbrev. month" msgid "Jan." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:24 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:24 msgctxt "abbrev. month" msgid "Feb." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:25 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:25 msgctxt "abbrev. month" msgid "March" msgstr "Mär" #: venv/lib/python3.7/site-packages/django/utils/dates.py:26 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:26 msgctxt "abbrev. month" msgid "April" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:27 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:27 msgctxt "abbrev. month" msgid "May" msgstr "Mai" #: venv/lib/python3.7/site-packages/django/utils/dates.py:28 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:28 msgctxt "abbrev. month" msgid "June" msgstr "Juni" #: venv/lib/python3.7/site-packages/django/utils/dates.py:29 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:29 msgctxt "abbrev. month" msgid "July" msgstr "Juli" #: venv/lib/python3.7/site-packages/django/utils/dates.py:30 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:30 msgctxt "abbrev. month" msgid "Aug." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:31 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:31 msgctxt "abbrev. month" msgid "Sept." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:32 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:32 msgctxt "abbrev. month" msgid "Oct." msgstr "Okt." #: venv/lib/python3.7/site-packages/django/utils/dates.py:33 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:33 msgctxt "abbrev. month" msgid "Nov." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:34 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:34 msgctxt "abbrev. month" msgid "Dec." msgstr "Dez." #: venv/lib/python3.7/site-packages/django/utils/dates.py:37 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:37 msgctxt "alt. month" msgid "January" msgstr "Januar" #: venv/lib/python3.7/site-packages/django/utils/dates.py:38 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:38 msgctxt "alt. month" msgid "February" msgstr "Februar" #: venv/lib/python3.7/site-packages/django/utils/dates.py:39 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:39 msgctxt "alt. month" msgid "March" msgstr "März" #: venv/lib/python3.7/site-packages/django/utils/dates.py:40 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:40 msgctxt "alt. month" msgid "April" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:41 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:41 msgctxt "alt. month" msgid "May" msgstr "Mai" #: venv/lib/python3.7/site-packages/django/utils/dates.py:42 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:42 msgctxt "alt. month" msgid "June" msgstr "Juni" #: venv/lib/python3.7/site-packages/django/utils/dates.py:43 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:43 msgctxt "alt. month" msgid "July" msgstr "Juli" #: venv/lib/python3.7/site-packages/django/utils/dates.py:44 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:44 msgctxt "alt. month" msgid "August" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:45 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:45 msgctxt "alt. month" msgid "September" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:46 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:46 msgctxt "alt. month" msgid "October" msgstr "Oktober" #: venv/lib/python3.7/site-packages/django/utils/dates.py:47 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:47 msgctxt "alt. month" msgid "November" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/dates.py:48 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/dates.py:48 msgctxt "alt. month" msgid "December" msgstr "Dezember" #: venv/lib/python3.7/site-packages/django/utils/ipv6.py:8 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/ipv6.py:8 msgid "This is not a valid IPv6 address." msgstr "" #: venv/lib/python3.7/site-packages/django/utils/text.py:70 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/text.py:70 #, python-format msgctxt "String to return when truncating text" msgid "%(truncated_text)s…" msgstr "" #: venv/lib/python3.7/site-packages/django/utils/text.py:236 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/text.py:236 msgid "or" msgstr "oder" #. Translators: This string is used as a separator between list elements #: venv/lib/python3.7/site-packages/django/utils/text.py:255 #: venv/lib/python3.7/site-packages/django/utils/timesince.py:83 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/text.py:255 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:83 msgid ", " msgstr "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:9 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:9 #, python-format msgid "%d year" msgid_plural "%d years" @@ -4372,6 +4673,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:10 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:10 #, python-format msgid "%d month" msgid_plural "%d months" @@ -4379,6 +4681,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:11 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:11 #, python-format msgid "%d week" msgid_plural "%d weeks" @@ -4386,6 +4689,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:12 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:12 #, python-format msgid "%d day" msgid_plural "%d days" @@ -4393,6 +4697,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:13 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:13 #, python-format msgid "%d hour" msgid_plural "%d hours" @@ -4400,6 +4705,7 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/utils/timesince.py:14 +#: venv_py3.9/lib/python3.9/site-packages/django/utils/timesince.py:14 #, python-format msgid "%d minute" msgid_plural "%d minutes" @@ -4407,14 +4713,17 @@ msgstr[0] "" msgstr[1] "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:110 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:110 msgid "Forbidden" msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:111 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:111 msgid "CSRF verification failed. Request aborted." msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:115 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:115 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 " @@ -4423,6 +4732,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:120 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:120 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-" @@ -4430,6 +4740,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:124 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:124 msgid "" "If you are using the tag or " "including the “Referrer-Policy: no-referrer” header, please remove them. The " @@ -4439,6 +4750,7 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:132 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:132 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 " @@ -4446,44 +4758,56 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:137 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:137 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 "" #: venv/lib/python3.7/site-packages/django/views/csrf.py:142 +#: venv_py3.9/lib/python3.9/site-packages/django/views/csrf.py:142 msgid "More information is available with DEBUG=True." msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:41 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:41 msgid "No year specified" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:61 #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:111 #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:208 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:61 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:111 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:208 msgid "Date out of range" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:90 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:90 msgid "No month specified" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:142 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:142 msgid "No day specified" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:188 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:188 msgid "No week specified" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:338 #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:367 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:338 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:367 #, python-format msgid "No %(verbose_name_plural)s available" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:589 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:589 #, python-format msgid "" "Future %(verbose_name_plural)s not available because %(class_name)s." @@ -4491,48 +4815,58 @@ msgid "" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/dates.py:623 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/dates.py:623 #, python-format msgid "Invalid date string “%(datestr)s” given format “%(format)s”" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/detail.py:54 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/detail.py:54 #, python-format msgid "No %(verbose_name)s found matching the query" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/list.py:67 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/list.py:67 msgid "Page is not “last”, nor can it be converted to an int." msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/list.py:72 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/list.py:72 #, python-format msgid "Invalid page (%(page_number)s): %(message)s" msgstr "" #: venv/lib/python3.7/site-packages/django/views/generic/list.py:154 +#: venv_py3.9/lib/python3.9/site-packages/django/views/generic/list.py:154 #, python-format msgid "Empty list and “%(class_name)s.allow_empty” is False." msgstr "" #: venv/lib/python3.7/site-packages/django/views/static.py:40 +#: venv_py3.9/lib/python3.9/site-packages/django/views/static.py:40 msgid "Directory indexes are not allowed here." msgstr "" #: venv/lib/python3.7/site-packages/django/views/static.py:42 +#: venv_py3.9/lib/python3.9/site-packages/django/views/static.py:42 #, python-format msgid "“%(path)s” does not exist" msgstr "" #: venv/lib/python3.7/site-packages/django/views/static.py:80 +#: venv_py3.9/lib/python3.9/site-packages/django/views/static.py:80 #, python-format msgid "Index of %(directory)s" msgstr "" #: venv/lib/python3.7/site-packages/django/views/templates/default_urlconf.html:7 +#: venv_py3.9/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:7 msgid "Django: the Web framework for perfectionists with deadlines." msgstr "" #: venv/lib/python3.7/site-packages/django/views/templates/default_urlconf.html:346 +#: venv_py3.9/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:346 #, python-format msgid "" "View