Initial commit
This commit is contained in:
0
env/lib/python3.10/site-packages/wagtail/locales/__init__.py
vendored
Normal file
0
env/lib/python3.10/site-packages/wagtail/locales/__init__.py
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/apps.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/apps.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/forms.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/forms.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/tests.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/tests.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/utils.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/utils.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/views.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/views.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/wagtail_hooks.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/__pycache__/wagtail_hooks.cpython-310.pyc
vendored
Normal file
Binary file not shown.
8
env/lib/python3.10/site-packages/wagtail/locales/apps.py
vendored
Normal file
8
env/lib/python3.10/site-packages/wagtail/locales/apps.py
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class WagtailLocalesAppConfig(AppConfig):
|
||||
name = "wagtail.locales"
|
||||
label = "wagtaillocales"
|
||||
verbose_name = _("Wagtail locales")
|
||||
36
env/lib/python3.10/site-packages/wagtail/locales/forms.py
vendored
Normal file
36
env/lib/python3.10/site-packages/wagtail/locales/forms.py
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
from django import forms
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from wagtail.coreutils import get_content_languages
|
||||
from wagtail.models import Locale
|
||||
|
||||
|
||||
class LocaleForm(forms.ModelForm):
|
||||
required_css_class = "required"
|
||||
language_code = forms.ChoiceField(
|
||||
label=_("Language"), choices=get_content_languages().items()
|
||||
)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
instance = kwargs.get("instance")
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
# Get language codes that are already used
|
||||
used_language_codes = Locale.objects.values_list("language_code", flat=True)
|
||||
|
||||
self.fields["language_code"].choices = [
|
||||
(language_code, display_name)
|
||||
for language_code, display_name in get_content_languages().items()
|
||||
if language_code not in used_language_codes
|
||||
or (instance and instance.language_code == language_code)
|
||||
]
|
||||
|
||||
# If the existing language code is invalid, add an empty value so Django doesn't automatically select a random language
|
||||
if instance and not instance.language_code_is_valid():
|
||||
self.fields["language_code"].choices.insert(
|
||||
0, (None, _("Select a new language"))
|
||||
)
|
||||
|
||||
class Meta:
|
||||
model = Locale
|
||||
fields = ["language_code"]
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ar/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ar/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
30
env/lib/python3.10/site-packages/wagtail/locales/locale/ar/LC_MESSAGES/django.po
vendored
Normal file
30
env/lib/python3.10/site-packages/wagtail/locales/locale/ar/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# abdulaziz alfuhigi <abajall@gmail.com>, 2021
|
||||
# Ahmed Miske Sidi Med <boutien321@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Ahmed Miske Sidi Med <boutien321@gmail.com>, 2021\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/torchbox/teams/8009/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ar\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"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "نعم, احذف"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "استعمال"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/be/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/be/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
95
env/lib/python3.10/site-packages/wagtail/locales/locale/be/LC_MESSAGES/django.po
vendored
Normal file
95
env/lib/python3.10/site-packages/wagtail/locales/locale/be/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Tatsiana Tsygan <art.tatsiana@gmail.com>, 2021
|
||||
# Stas Rudakou <stas@garage22.net>, 2021
|
||||
# Andrei Satsevich, 2023
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Andrei Satsevich, 2023\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: be\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"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Лакалізацыі Wagtail "
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Мова"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Выбраць новую мову"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Моўны код гэтай лакалі не падтрымліваецца"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Так. Выдаліць"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Гэты моўны код, гэтай лакалі, не падтрымліваецца. Калі ласка, абярыце новую "
|
||||
"мову або выдаліце гэтую лакаль."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Лакалізацыі "
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Дабавіць лакаль"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Выкарыстоўванне"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Дабавіць лакаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Лакаль '%(object)s' створана. "
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Лакаль '%(object)s' абнаўлена."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Лакаль не ўдалося захаваць з-за памылак."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Выдаліць лакаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Лакаль '%(object)s' выдалена."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Вы ўпэўнены, што хочаце выдаліць гэтую лакаль?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Гэтая лакаль не можа быць выдалена, так як іншых лакалей не існуе."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Гэтая лакаль не можа быць выдалена, паколькі існуюць старонкі і / або іншыя "
|
||||
"аб'екты, якія выкарыстоўваюць яе."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/bg/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/bg/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
26
env/lib/python3.10/site-packages/wagtail/locales/locale/bg/LC_MESSAGES/django.po
vendored
Normal file
26
env/lib/python3.10/site-packages/wagtail/locales/locale/bg/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Karl Hobley <karl@torchbox.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Karl Hobley <karl@torchbox.com>, 2021\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Да, изтрий го"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ca/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ca/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
91
env/lib/python3.10/site-packages/wagtail/locales/locale/ca/LC_MESSAGES/django.po
vendored
Normal file
91
env/lib/python3.10/site-packages/wagtail/locales/locale/ca/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Roger Pons <rogerpons@gmail.com>, 2023
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Roger Pons <rogerpons@gmail.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/torchbox/teams/8009/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Configuracions regionals de Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Seleccionar un nou idioma"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "El codi d'idioma d'aquesta configuració regional no està suportat"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Sí, suprimir"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Tornar"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"El codi d'idioma actual d'aquesta configuració regional no està suportat. "
|
||||
"Trieu un altre idioma o suprimiu aquesta configuració regional."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Configuracions regionals"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Afegir una configuració regional"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Ús"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Afegir configuració regional"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "S'ha creat la configuració regional '%(object)s'."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "S'ha actualitzat la configuració regional '%(object)s'."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "No s'ha pogut desar la configuració regional per causa d'errors."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Esborrar configuració regional"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "S'ha esborrat la configuració regional '%(object)s'."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Segur que voleu esborrar aquesta configuració regional?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"No es pot esborrar aquesta configuració regional perquè no n'hi ha d'altres."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"No es pot esborrar aquesta configuració regional perquè hi ha pàgines i/o "
|
||||
"altres objectes que l'estan fent servir."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/cs/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/cs/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/cs/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/cs/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Mirek Zvolský <zvolsky@seznam.cz>, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/torchbox/teams/8009/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
||||
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail místní nastavení"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Vyberte nový jazyk"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Tento kód jazyka není podporován"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ano, zrušit"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Aktuálně zvolený jazykový kód není podporován. Prosím, zvolte jiný jazyk "
|
||||
"nebo odstraňte toto místní nastavení."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Místní nastavení"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Přidat místní nastavení"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Použití"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Přidat místní nastavení"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Místní nastavení '%(object)s' bylo vytvořeno."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Místní nastavení '%(object)s' bylo aktualizováno."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Místní nastavení nelze uložit kvůli chybám."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Zrušit místní nastavení"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Místní nastavení '%(object)s' bylo zrušeno."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Jste si jist(a), že chcete odstranit toto místní nastavení?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Toto místní nastavení nelze odstranit, protože neexistuje žádné zbývající "
|
||||
"místní nastavení."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Toto místní nastavení nelze odstranit, protože existují stránky nebo jiné "
|
||||
"objekty, které jej používají."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/cy/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/cy/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/cy/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/cy/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Philip Crisp, 2022
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Welsh (https://app.transifex.com/torchbox/teams/8009/cy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cy\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
|
||||
"11) ? 2 : 3;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Locales Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Iaith"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Dewisiwch iaith newydd"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Nid yw cod iaith y locale hwn yn cael ei gefnogi"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ia, dileu"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Yn ol"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Nid yw cod iaith cyfredol y locale hwn yn cael ei gefnogi. Dewiswch iaith "
|
||||
"newydd neu dilëwch y locale hwn."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Locales"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Ychwanegwch locale"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Defnydd"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Ychwanegu locale"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Locale '%(object)s' wedi'i creu."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Locale '%(object)s' wedi'i diweddaru."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Ni fu modd cadw'r locale oherwydd gwallau."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Dileu locale"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Locale '%(object)s' wedi'i dileu."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Ydych chi'n siŵr eich bod am ddileu'r locale hwn?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Nid oes modd dileu'r locale hwn oherwydd nad oes unrhyw locale arall."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ni ellir dileu'r locale hwn oherwydd bod tudalennau a/neu wrthrychau eraill "
|
||||
"yn ei ddefnyddio."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/da/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/da/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
25
env/lib/python3.10/site-packages/wagtail/locales/locale/da/LC_MESSAGES/django.po
vendored
Normal file
25
env/lib/python3.10/site-packages/wagtail/locales/locale/da/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Mads Kronborg <madskronborg99@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Mads Kronborg <madskronborg99@gmail.com>, 2021\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/torchbox/teams/8009/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ja, slet"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/de/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/de/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
95
env/lib/python3.10/site-packages/wagtail/locales/locale/de/LC_MESSAGES/django.po
vendored
Normal file
95
env/lib/python3.10/site-packages/wagtail/locales/locale/de/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2021
|
||||
# Moritz Pfeiffer <moritz@alp-phone.ch>, 2021
|
||||
# Oliver Engel <codeangel@posteo.de>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: German (https://app.transifex.com/torchbox/teams/8009/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail Locale"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Wähle eine neue Sprache aus"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Der Sprachcode dieser Locale wird nicht unterstützt."
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ja, löschen"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Der Sprachcode dieser Locale wird nicht unterstützt. Bitte wählen Sie eine "
|
||||
"neue Sprache aus oder löschen Sie diese Locale."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Locale"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Eine Locale hinzufügen"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Benutzung"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Locale hinzufügen"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Locale '%(object)s' erstellt."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Locale '%(object)s' aktualisiert."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Aufgrund von Fehlern konnte die Locale nicht gespeichert werden."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Lösche Locale"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Locale '%(object)s' gelöscht."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Sind Sie sicher, dass Sie diese Locale löschen möchten?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Diese Locale kann nicht gelöscht werden, weil keine anderen Locale vorhanden "
|
||||
"sind."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Diese Locale kann nicht gelöscht werden, weil sie von Seiten und/oder "
|
||||
"anderen Objekten genutzt wird."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/dv/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/dv/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
86
env/lib/python3.10/site-packages/wagtail/locales/locale/dv/LC_MESSAGES/django.po
vendored
Normal file
86
env/lib/python3.10/site-packages/wagtail/locales/locale/dv/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Fauzaan Gasim, 2024
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Fauzaan Gasim, 2024\n"
|
||||
"Language-Team: Divehi (https://app.transifex.com/torchbox/teams/8009/dv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: dv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "ވެގްޓޭލް ބަސްތައް"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "ބަހުރުވަ"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "އާ ބަހެއް ނަގާ"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "މި ބަހުގެ ބަހުރުވަ ކޯޑް ސަޕޯޓެއް ނުކުރޭ"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "ލައްބަ! ފުހެލާ"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "ފަހަތައް"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr "މި ލޮކޭލްގެ މިހާރުގެ ބަހުގެ ކޯޑަށް ސަޕޯޓް ނުކުރެވެއެވެ. އާ ބަހެއް ހޮއްވަވާ ނުވަތަ މި ލޮކޭޝަން ޑިލީޓް ކުރައްވާށެވެ."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Locales"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "ލޮކޭލެއް އިތުރުކުރުން"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "ބޭނުންކުރުން"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "ލޮކޭލެއް އިތުރުކުރުން"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "%(object)s ލޯކޭލް އުފެއްދިއްޖެ"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "%(object)s ލޯކޭލް އިސްދާރު ކުރެވިއްޖެ"
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "ގޯސްތަކެއް ހުރުމުން ލޯކޭލް ސޭވް ނުކުރެވުނެވެ."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "ލޯކޭލް ޑިލީޓް ކުރޭ"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "%(object)s ލޯކޭލް ޑިލީޓް ކުރެވިއްޖެ"
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "މި ލޯކޭލް ޑިލީޓް ކުރަން ބޭނުންވާކަން ޔަގީން ހެއްޔެވެ؟"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "މި ލޯކޭލް ޑިލީޓް ނުކުރެވޭނީ އެހެން ލޯކޭލްތަކެއް ނެތުމުންނެވެ."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr "މި ލޮކޭލް ޑިލީޓް ނުކުރެވޭނީ މި ލޮކޭލް ބޭނުންކުރާ ޞަފްޙާތަކާއި/ނުވަތަ އެހެން ތަކެތި ހުރުމުންނެވެ."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/el/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/el/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/el/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/el/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# George Giannoulopoulos <vdotoree@yahoo.gr>, 2021
|
||||
# fekioh, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: fekioh, 2022\n"
|
||||
"Language-Team: Greek (https://app.transifex.com/torchbox/teams/8009/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ναι, να γίνει διαγραφή"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Χρήση"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/en/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/en/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
103
env/lib/python3.10/site-packages/wagtail/locales/locale/en/LC_MESSAGES/django.po
vendored
Normal file
103
env/lib/python3.10/site-packages/wagtail/locales/locale/en/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-08-07 10:06+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \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"
|
||||
|
||||
#: apps.py:8
|
||||
msgid "Wagtail locales"
|
||||
msgstr ""
|
||||
|
||||
#: forms.py:11 views.py:41
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: forms.py:31
|
||||
msgid "Select a new language"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtaillocales/_language_title_cell.html:7
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtaillocales/confirm_delete.html:10
|
||||
msgid "Yes, delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtaillocales/confirm_delete.html:11
|
||||
#: templates/wagtaillocales/confirm_delete.html:16
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtaillocales/edit.html:8
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:32 wagtail_hooks.py:26
|
||||
msgid "Locales"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:33
|
||||
msgid "Add a locale"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:45
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:50
|
||||
msgid "Add locale"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:51
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:55
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:56
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:57 views.py:64
|
||||
msgid "Delete locale"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:63
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:65
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:71
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:77
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/es/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/es/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
93
env/lib/python3.10/site-packages/wagtail/locales/locale/es/LC_MESSAGES/django.po
vendored
Normal file
93
env/lib/python3.10/site-packages/wagtail/locales/locale/es/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Maylon Pedroso <maylonpedroso@gmail.com>, 2020
|
||||
# Amós Oviedo <amos.oviedo@gmail.com>, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/torchbox/teams/8009/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Regiones de Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Selecciona un nuevo idioma"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Este código de idioma de la región no está soportado"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Sí, eliminar"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Regresar"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Este código de idioma actual de la región no está soportado. Por favor "
|
||||
"selecciona un nuevo idioma o elimina esta región."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Regiones"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Añadir una región"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Uso"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Añadir región"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Región '%(object)s' creada."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Región '%(object)s' actualizada."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "La región no pudo ser guardada debido a errores."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Eliminar región"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Región '%(object)s' eliminada."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "¿Seguro que quieres eliminar esta región?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Esta región no puede ser eliminada porque no hay otras regiones."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Esta región no puede ser eliminada porque hay páginas y/u otros objetos "
|
||||
"usándola."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/et/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/et/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
35
env/lib/python3.10/site-packages/wagtail/locales/locale/et/LC_MESSAGES/django.po
vendored
Normal file
35
env/lib/python3.10/site-packages/wagtail/locales/locale/et/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Erlend Eelmets <debcf78e@opayq.com>, 2021
|
||||
# Martin <martinpajuste@gmail.com>, 2023
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Martin <martinpajuste@gmail.com>, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/torchbox/teams/8009/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Keel"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Jah, kustuta"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Tagasi"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Kasutamine"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fa/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fa/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
25
env/lib/python3.10/site-packages/wagtail/locales/locale/fa/LC_MESSAGES/django.po
vendored
Normal file
25
env/lib/python3.10/site-packages/wagtail/locales/locale/fa/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# pyzenberg <pyzenberg@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: pyzenberg <pyzenberg@gmail.com>, 2021\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/torchbox/teams/8009/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "بله حذف شود"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fi/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fi/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
91
env/lib/python3.10/site-packages/wagtail/locales/locale/fi/LC_MESSAGES/django.po
vendored
Normal file
91
env/lib/python3.10/site-packages/wagtail/locales/locale/fi/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/torchbox/teams/8009/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtailin maa-asetustot"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Kieli"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Valitse uusi kieli"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Tämän maa-asetuston kielikoodi ei ole tuettu"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Kyllä, poista"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Takaisin"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Tämän maa-asetuston nykyinen kielikoodi ei ole tuettu. Valitse uusi kieli "
|
||||
"tai poista tämä maa-asetusto."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Maa-asetustot"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Lisää maa-asetusto"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Käyttö"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Lisää maa-asetusto"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Maa-asetusto '%(object)s' luotu."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Maa-asetusto '%(object)s' päivitetty."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Maa-asetustoa ei voitu tallentaa virheiden vuoksi."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Poista maa-asetusto"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Maa-asetusto '%(object)s' poistettu."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Haluatko varmasti poistaa tämän maa-asetuston?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Tätä maa-asetustoa ei voi poistaa, koska muita maa-asetusta ei ole."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Tätä maa-asetustoa ei voi poistaa, koska jotkin sivut ja/tai muut objektit "
|
||||
"käyttävät sitä."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fr/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/fr/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
91
env/lib/python3.10/site-packages/wagtail/locales/locale/fr/LC_MESSAGES/django.po
vendored
Normal file
91
env/lib/python3.10/site-packages/wagtail/locales/locale/fr/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: French (https://app.transifex.com/torchbox/teams/8009/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Régions Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Sélectionner une nouvelle langue"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Le code de langue associé à cette région n'est pas supporté"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Oui, supprimer"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Le code de langue associé à cette région n'est pas supporté. Veuillez "
|
||||
"choisir une nouvelle langue ou supprimer cette région."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Régions"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Ajouter une région"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Utilisation"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Ajouter la région"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Région « %(object)s » créée."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Région « %(object)s » mise à jour."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "La région ne peut être enregistrée du fait d'erreurs."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Supprimer région"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Région « %(object)s » supprimée."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Êtes-vous sûr(e) de vouloir supprimer cette région ?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Cette région ne peut être supprimée car il n'en existe pas d'autre."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Cette région ne peut être supprimée car d'autres pages et/ou objets "
|
||||
"l'utilisent."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/gl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/gl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
91
env/lib/python3.10/site-packages/wagtail/locales/locale/gl/LC_MESSAGES/django.po
vendored
Normal file
91
env/lib/python3.10/site-packages/wagtail/locales/locale/gl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Amós Oviedo <amos.oviedo@gmail.com>, 2021
|
||||
# X Bello <xbello@gmail.com>, 2022
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Galician (https://app.transifex.com/torchbox/teams/8009/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Rexións de Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Linguaxe"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Seleccionar unha nova lingua"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Este código de idioma non está habilitado"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Si, eliminar"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Atrás"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Este código de idioma non está habilitado. Por favor, elixe outro idioma ou "
|
||||
"borra este."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Rexións"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Engadir unha rexión"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Uso"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Engadir rexión"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Rexión '%(object)s' creada."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Rexión '%(object)s' actualizada."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "O idioma non puido gardarse debido a erros"
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Eliminar rexión"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Rexión '%(object)s' eliminada."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Seguro que queres eliminar esta rexión?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Esta rexión non pode eliminarse porque non hai máis rexións."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Esta rexión non pode eliminarse porque hai páxinas ou outros obxetos usándoa."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/he_IL/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/he_IL/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
27
env/lib/python3.10/site-packages/wagtail/locales/locale/he_IL/LC_MESSAGES/django.po
vendored
Normal file
27
env/lib/python3.10/site-packages/wagtail/locales/locale/he_IL/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Adi Ron <adi@bnop.co>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Adi Ron <adi@bnop.co>, 2021\n"
|
||||
"Language-Team: Hebrew (Israel) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/he_IL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: he_IL\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
|
||||
"1 == 0) ? 1: 2;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "כן, מחק"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/hr_HR/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/hr_HR/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
95
env/lib/python3.10/site-packages/wagtail/locales/locale/hr_HR/LC_MESSAGES/django.po
vendored
Normal file
95
env/lib/python3.10/site-packages/wagtail/locales/locale/hr_HR/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Dino Aljević <dino8890@protonmail.com>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Croatian (Croatia) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hr_HR\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"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail lokaliteti"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Odaberite novi jezik"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Jezična oznaka lokaliteta nije podržana"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Da, izbriši"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Povratak"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Jezična oznaka lokaliteta nije podržana. Molimo odaberite novi jezik ili "
|
||||
"izbrišite ovaj lokalitet."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Lokaliteti"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Dodaj lokalitet"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Upotreba"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Dodaj lokalitet"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Lokalitet '%(object)s' je stvoren."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Lokalitet '%(object)s' je ažuriran."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Nije moguće sačuvati lokalitet zbog grešaka."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Izbriši lokalitet"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Lokalitet '%(object)s' je izbrisan."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Jeste li sigurni da želite izbrisati lokalitet?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Lokalitet nije moguće izbrisati zato što ne postoji niti jedan drugi "
|
||||
"lokalitet."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Lokalitet nije moguće izbrisati zato što ga koriste stranice i/ili ostali "
|
||||
"objekti."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/hu/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/hu/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/hu/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/hu/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Istvan Farkas <istvan.farkas@gmail.com>, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail területi beállítások"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Nyelv"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Új nyelv kiválasztása"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Ennek a területi beállításnak a nyelvkódja nem támogatott"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Igen, törlöm"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Vissza"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Ennek a területi beállításnak a nyelvkódja jelenleg nem támogatott. Kérjük "
|
||||
"válasszon egy új nyelvet, vagy törölje ezt a területi beállítást."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Területi beállítások"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Területi beállítás hozzáadása"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Használat"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Területi beállítás hozzáadása"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "A(z) '%(object)s' területi beállítás létrehozva."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "A(z) '%(object)s' területi beállítás frissítve."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Hiba történt a területi beállítás mentése során."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Nyelvi beállítás törlése"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "A(z) '%(object)s' területi beállítás törölve lett."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Biztosan törölni kívánja ezt a területi beállítást?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Ezt a területi beállítást nem lehet törölni, mert nincs másik megadva."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ezt a területi beállítást nem lehet törölni, mert vannak olyan oldalak és/"
|
||||
"vagy egyéb rekordok, amelyek használják."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/id_ID/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/id_ID/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/id_ID/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/id_ID/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# M. Febrian Ramadhana <febrian@ramadhana.me>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: M. Febrian Ramadhana <febrian@ramadhana.me>, 2021\n"
|
||||
"Language-Team: Indonesian (Indonesia) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/id_ID/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: id_ID\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ya, hapus"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Penggunaan"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/is_IS/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/is_IS/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
93
env/lib/python3.10/site-packages/wagtail/locales/locale/is_IS/LC_MESSAGES/django.po
vendored
Normal file
93
env/lib/python3.10/site-packages/wagtail/locales/locale/is_IS/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# saevarom <saevar@saevar.is>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Icelandic (Iceland) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/is_IS/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: is_IS\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail þýðingar"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Tungumál"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Veldu nýtt tungumál"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Tungumálakóði þessarar þýðingar er ekki studdur"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Já, eyða"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Til baka"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Tungumálakóði þessarar þýðingar er ekki studdur. Vinsamlegast veldu annað "
|
||||
"tungumál eða eyddu þessari þýðingu."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Þýðingar"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Bæta við þýðingu"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Notkun"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Bæta við þýðingu"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Þýðing '%(object)s' búin til."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Þýðing '%(object)s' uppfærð."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Ekki var hægt að vista þýðingu þar sem hún stóðst ekki villuprófanir."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Eyða þýðingu"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Þýðingu '%(object)s' eytt."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Ertu viss um að þú viljir eyða þessari þýðingu?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Ekki er hægt að eyða þýðingu þar sem það eru ekki til neinar aðrar þýðingar."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ekki er hægt að eyða þýðingu þar sem það eru síður og/eða aðrir hlutir að "
|
||||
"nota hana."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/it/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/it/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/it/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/it/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Giacomo Ghizzani <giacomo.ghz@gmail.com>, 2021
|
||||
# Marco Badan <marco.badan@gmail.com>, 2021
|
||||
# tognee, 2024
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: tognee, 2024\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/torchbox/teams/8009/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Localizzazioni Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Seleziona una nuova lingua"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Il codice di questa lingua non è supportato"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Si, elimina"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Torna indietro"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Il codice della lingua corrente non è supportato. Scegli un'altra lingua o "
|
||||
"elimina questa lingua."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Lingue"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Aggiungi una lingua"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Utilizzo"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Aggiungi lingua"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Lingua '%(object)s' creata."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Lingua '%(object)s' aggiornata."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "La lingua non è stata salvata perche sono presenti errori."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Elimina lingua."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Lingua '%(object)s' eliminata."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Sei sicuro di voler eliminare questa lingua?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Questa lingua non può essere eliminata perché non sono presenti altre lingue."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Questa lingua non può essere eliminata perché sono presenti altre pagine e/o "
|
||||
"oggetti che la stanno utilizzando."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ja/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ja/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/ja/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/ja/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# shuhei hirota, 2021
|
||||
# 小口英昭 <oguchi@bluff-lab.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: 小口英昭 <oguchi@bluff-lab.com>, 2021\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/torchbox/teams/8009/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "はい、削除します"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "使用法"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ko/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ko/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/ko/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/ko/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Kyungil Choi <hanpama@gmail.com>, 2021
|
||||
# Kyu Choi, 2022
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/torchbox/teams/8009/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "웨그테일 영역"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "언어"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "새로운 언어 선택"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "해당 로케일의 언어 코드가 지원되지 않습니다."
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "네, 삭제합니다"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "뒤로"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"이 로케일의 현재 언어 코드는 지원되지 않습니다. 새 언어를 선택하거나 이 로케"
|
||||
"일을 삭제하십시오."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "영역"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "로케일 추가"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "사용"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "로케일 추가"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "로케일 '%(object)s' 생성됨"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "로케일 '%(object)s' 업데이트됨"
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "로케일이 오류로인해 저장될 수 없음"
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "로케일 삭제"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "로케일 '%(object)s' 삭제"
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "정말 이 로케일을 삭제하길 원합니까?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "다른 로케일이 없기에 이 로케일은 삭제될 수 없습니다."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"이 로케일을 사용하는 페이지 및/또는 다른 개체가 있으므로 이 로케일을 삭제할 "
|
||||
"수 없습니다."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/lt/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/lt/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/lt/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/lt/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Naglis Jonaitis, 2022
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
|
||||
"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
|
||||
"1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail lokalės"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Kalba"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Pasirinkite naują kalbą"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Šios lokalės kalbos kodas nepalaikomas"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Taip, ištrinti"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Atgal"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Esamas šios lokalės kalbos kodas nepalaikomas. Prašome pasirinkti kitą kalbą "
|
||||
"arba ištrinti šią lokalę."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Lokalės"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Pridėti lokalę"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Panaudojimas"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Pridėti lokalę"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Lokalė '%(object)s' sukurta."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Lokalė '%(object)s' atnaujinta."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Ši lokalė negali būti išsaugota dėl klaidų."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Ištrinti lokalę"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Lokalė '%(object)s' ištrinta."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Ar tikrai norite ištrinti šią lokalę?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Ši lokalė negali būti ištrinta, nes daugiau nėra kitų lokalių."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ši lokalė negali būti ištrinta, nes yra ją naudojančių puslapių ir/ar kitų "
|
||||
"objektų."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/lv/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/lv/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
26
env/lib/python3.10/site-packages/wagtail/locales/locale/lv/LC_MESSAGES/django.po
vendored
Normal file
26
env/lib/python3.10/site-packages/wagtail/locales/locale/lv/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Maris Serzans <maris.serzans@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Maris Serzans <maris.serzans@gmail.com>, 2021\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/torchbox/teams/8009/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Dzēst"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/mi/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/mi/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/mi/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/mi/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Awatea Randall <awatea@octave.nz>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Maori (https://app.transifex.com/torchbox/teams/8009/mi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: mi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Rohe-a-Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Reo"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Kōwhiri he reo hou"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Ehara tēnei reo uhingaro e taupuhipuhi"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ae, muku"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Whakahoki"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Ehara te reo uhingaro nei e taupuhipuhi. Kōwhiri koa he reo hou, kē atu me "
|
||||
"muku ī tēnei rohe."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Rohe"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Tāpiri he rohe"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Whakamahi"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Tāpiri rohe"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Rohe '%(object)s' e hanga"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Rohe '%(object)s' kua whakahou"
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Ehara ka taea te puritia kī te rohe nei, he raruraru "
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Mukuhia rohe"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Rohe '%(object)s' kua mukuhia"
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "E pirangi ana koe kī te mukuhia tēnei rohe?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Ehara tēnei rohe ka taea kī te muku, nōtemea e kore atu ngā rohe I konei"
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ehara tēnei rohe ka taea kī te muku, nōtemea e whakamahi ana ētahi whārangi, "
|
||||
"ahanoa atu ī te rohe nei"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/mn/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/mn/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/mn/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/mn/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Myagmarjav Enkhbileg <miigaa.lucky@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Myagmarjav Enkhbileg <miigaa.lucky@gmail.com>, 2021\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Тийм, устга"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Хэрэглээ"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/my/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/my/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
25
env/lib/python3.10/site-packages/wagtail/locales/locale/my/LC_MESSAGES/django.po
vendored
Normal file
25
env/lib/python3.10/site-packages/wagtail/locales/locale/my/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# ime11 <pmh.yourworstnightmare@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: ime11 <pmh.yourworstnightmare@gmail.com>, 2021\n"
|
||||
"Language-Team: Burmese (https://app.transifex.com/torchbox/teams/8009/my/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: my\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "ဟုတ်ပြီ၊ ဖျက်သိမ်းပါ"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/nb/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/nb/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/nb/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/nb/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Stein Strindhaug <stein.strindhaug@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Stein Strindhaug <stein.strindhaug@gmail.com>, 2021\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ja, slett"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Bruk"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/nl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/nl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/nl/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/nl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/torchbox/teams/8009/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail taalregio's"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Selecteer een nieuwe taal"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "De taalcode van deze taalregio wordt niet ondersteund"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ja, verwijder"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Terug"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"De taalcode van de huidige taalregio wordt niet ondersteund. Kies een andere "
|
||||
"taal of verwijder deze taalregio."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Taalregio's"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Een taalregio toevoegen"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Gebruik"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Taalregio toevoegen"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Taalregio '%(object)s' aangemaakt."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Taalregio '%(object)s' gewijzigd."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "De taalregio kon vanwege fouten niet worden opgeslagen."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Verwijder taalregio"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Taalregio '%(object)s' verwijderd."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Weet u zeker dat u deze taalregio wilt verwijderen?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Deze taalregio kan niet worden verwijderd omdat er geen andere taalregio's "
|
||||
"zijn."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Deze taalregio kan niet verwijderd worden omdat pagina's en/of andere "
|
||||
"objecten er gebruik van maken."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
92
env/lib/python3.10/site-packages/wagtail/locales/locale/pl/LC_MESSAGES/django.po
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/locales/locale/pl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Miłosz Miśkiewicz, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/torchbox/teams/8009/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
||||
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Lokalizacje Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Język"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Wybierz nowy język"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Kod języka nie jest wspierany"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Tak, usuń"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Wróć"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr "Lokalizacja dla tego kodu języka nie jest wspierana. "
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Lokalizacje"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Dodaj lokalizację"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Użycie"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Dodaj lokalizację"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Lokalizacja '%(object)s' utworzona."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Lokalizacja '%(object)s' zaktualizowana."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Lokalizacja nie mogła zostać zapisana z powodu błędów."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Usuń lokalizacje"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Lokalizacja '%(object)s' usunięta."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Czy na pewno chcesz usunąć tą lokalizację?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Ta lokalizacja nie może zostać usunięta, ponieważ nie ma innych lokalizacji."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Ta lokalizacja nie może zostać usunięta ponieważ istnieją strony / obiekty "
|
||||
"używające jej."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_BR/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_BR/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
97
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_BR/LC_MESSAGES/django.po
vendored
Normal file
97
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_BR/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Luiz Boaretto <lboaretto@gmail.com>, 2021
|
||||
# Ed Wurch <ewurch@gmail.com>, 2021
|
||||
# Iuri L. Machado, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Idiomas do Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Selecionar um novo idioma"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "O código da linguagem deste idioma não é suportado"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Sim, remover"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"O código da linguagem deste idioma não é suportado. Por favor escolha um "
|
||||
"novo idioma ou exclua este idioma."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Localidades"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Adicionar um idioma"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Uso"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Adicionar idioma"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Idioma '%(object)s' criado."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Idioma '%(object)s' atualizado."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "O idioma não pode ser salvo devido a erros."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Excluir idioma"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Idioma '%(object)s' excluído."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Você tem certeza que deseja excluir este idioma?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Este idioma não pode ser excluído porque não existem outros idiomas "
|
||||
"disponíveis."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Este idioma não pode ser excluído porque existem páginas e / ou outros "
|
||||
"objetos que o utilizam."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_PT/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_PT/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_PT/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/pt_PT/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Luís Tiago Favas <traducoes@favas.eu>, 2020
|
||||
# Tiago Henriques <trinosauro@gmail.com>, 2022
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Regiões do Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Língua"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Selecione uma nova língua"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "O código de língua desta região não é permitido"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Sim, apagar"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"O código de língua desta região não é permitido. Por favor escolha uma nova "
|
||||
"língua ou apague esta região."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Regiões"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Adicionar uma região"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Utilização"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Adicionar região"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Região '%(object)s' criada."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Região '%(object)s' atualizada."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "A região não pôde ser gravada devido a erros."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Apagar região"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Região '%(object)s' apagada."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Tem a certeza que quer apagar esta região?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Esta região não pode ser apagada porque não existem outras regiões."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Esta região não pode ser apagada por existirem páginas e/ou outros objetos "
|
||||
"que a utilizam."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ro/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ro/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
93
env/lib/python3.10/site-packages/wagtail/locales/locale/ro/LC_MESSAGES/django.po
vendored
Normal file
93
env/lib/python3.10/site-packages/wagtail/locales/locale/ro/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Dan Braghis, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/torchbox/teams/8009/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Localizări Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Limbă"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Selectează limbă nouă"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Codul limbii pentru această localizare nu este suportat."
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Da, șterge"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Înapoi"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Codul limbii curent pentru această localizare nu este suportat. Selectează o "
|
||||
"limbă nouă sau șterge această localizare."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Localizări"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Adaugă o localizare"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Utilizare"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Adaugă localizare"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Localizarea '%(object)s' a fost creată."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Localizarea '%(object)s' a fost actualizată."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Localizarea nu a putut fi salvată din cauza erorilor."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Șterge localizare"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Localizarea '%(object)s' a fost ștearsă."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Sigur doriți să ștergeți această localizare?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Această localizare nu poate fi ștearsă pentru că nu există alte localizări."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Această localizare nu poate fi ștearsă pentru că există pagini și/sau alte "
|
||||
"obiecte care o utilizează."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ru/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/ru/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/ru/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/ru/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Виктор Виктор <spam.vitek@gmail.com>, 2020
|
||||
# sergeybe <sergeybe@gmail.com>, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/torchbox/teams/8009/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\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"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Локали Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Выбрать новый язык"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Код языка этой локали не поддерживается"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Да, удалить"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Текущий код языка локали не поддерживается. Пожалуйста выберите новый язык "
|
||||
"или удалите эту локаль."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Локали"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Добавить локаль"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Использование"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Добавить локаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Локаль '%(object)s' создана."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Локаль '%(object)s' обновлена."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Локаль не может быть сохранена из-за ошибок."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Удалить локаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Локаль '%(object)s' удалена."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Вы уверены, что хотите удалить эту локаль?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Эта локаль не может быть удалена так как нет других локалей."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Эта локаль не может быть удалена, потому что есть страницы и/или другие "
|
||||
"объекты использующие её."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sk_SK/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sk_SK/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
27
env/lib/python3.10/site-packages/wagtail/locales/locale/sk_SK/LC_MESSAGES/django.po
vendored
Normal file
27
env/lib/python3.10/site-packages/wagtail/locales/locale/sk_SK/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Martin Janšto <mato@jansto.sk>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Martin Janšto <mato@jansto.sk>, 2021\n"
|
||||
"Language-Team: Slovak (Slovakia) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/sk_SK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sk_SK\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n "
|
||||
">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Áno, vymazať"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
94
env/lib/python3.10/site-packages/wagtail/locales/locale/sl/LC_MESSAGES/django.po
vendored
Normal file
94
env/lib/python3.10/site-packages/wagtail/locales/locale/sl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Mitja Pagon <mitja.pagon@inueni.com>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
# Andrej Marsetič, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Andrej Marsetič, 2022\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtail obmoćja"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Izberite nov jezik"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Jezikovna koda tega jezika ni podprta"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Da, izbriši"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Nazaj"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Trenutna jezikovna koda tega jezika ni podprta. Izberite nov jezik ali "
|
||||
"izbrišite ta jezik."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Jeziki"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Dodajte jezik"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Uporaba"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Dodaj jezik"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Lokalizacija '%(object)s' ustvarjena."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Lokalizacija '%(object)s' posodobljena."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Področne nastavitve ni bilo mogoče shraniti zaradi napak."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Odstrani jezik"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Lokalizacija '%(object)s' izbrisana."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Ali ste prepričani da želite odstraniti ta jezik?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Tega jezika ni mogoče izbrisati, ker ni drugih jezikov."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Te področne nastavitve ni mogoče izbrisati, ker jo uporabljajo strani in/ali "
|
||||
"drugi predmeti."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sv/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/sv/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
93
env/lib/python3.10/site-packages/wagtail/locales/locale/sv/LC_MESSAGES/django.po
vendored
Normal file
93
env/lib/python3.10/site-packages/wagtail/locales/locale/sv/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Martin Sandström <martin@marteinn.se>, 2020
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/torchbox/teams/8009/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Wagtailöversättningar"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Välj ett nytt språk"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Denna översättnings språkkod stöds inte"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Ja, radera"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Denna översättning har en språkkod som inte stöds. Vänligen välj ett nytt "
|
||||
"språk eller ta bort denna översättning."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Översättningar"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Lägg till en översättning"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Användning"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Lägg till översättning"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Översättning '%(object)s' skapad."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Översättning '%(object)s' uppdaterad."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Översättning kunde inte raderas p.g.a fel."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Radera översättning"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Översättning '%(object)s' raderad."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Är du säker på att du vill radera denna översättning?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr ""
|
||||
"Denna översättning kan inte raderas eftersom det finns inga andra "
|
||||
"översättningar."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Denna översättning kan inte raderas eftersom det är sidor och/eller andra "
|
||||
"objekt som använder den."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tet/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tet/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
30
env/lib/python3.10/site-packages/wagtail/locales/locale/tet/LC_MESSAGES/django.po
vendored
Normal file
30
env/lib/python3.10/site-packages/wagtail/locales/locale/tet/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Peter Coward <peter@catalpa.io>, 2021
|
||||
# Mariano de Deus <dedeus_mariano@yahoo.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Mariano de Deus <dedeus_mariano@yahoo.com>, 2021\n"
|
||||
"Language-Team: Tetum (Tetun) (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"tet/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tet\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Loos, hamoos"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Uza"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/th/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/th/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
28
env/lib/python3.10/site-packages/wagtail/locales/locale/th/LC_MESSAGES/django.po
vendored
Normal file
28
env/lib/python3.10/site-packages/wagtail/locales/locale/th/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Walaksawan Vervoort <nula_wala@yahoo.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Walaksawan Vervoort <nula_wala@yahoo.com>, 2021\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/torchbox/teams/8009/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "ใช่,ลบทิ้ง"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "การใช้"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tr/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tr/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/tr/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/tr/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Ragıp Ünal <ragip@ragipunal.com>, 2021
|
||||
# Py Data Geek <pydatageek@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Py Data Geek <pydatageek@gmail.com>, 2021\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/torchbox/teams/8009/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Evet, sil"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Kullanım"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tr_TR/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/tr_TR/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
29
env/lib/python3.10/site-packages/wagtail/locales/locale/tr_TR/LC_MESSAGES/django.po
vendored
Normal file
29
env/lib/python3.10/site-packages/wagtail/locales/locale/tr_TR/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Py Data Geek <pydatageek@gmail.com>, 2021
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Py Data Geek <pydatageek@gmail.com>, 2021\n"
|
||||
"Language-Team: Turkish (Turkey) (https://app.transifex.com/torchbox/"
|
||||
"teams/8009/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Evet, sil"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Kullanım"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/uk/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/locales/locale/uk/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
97
env/lib/python3.10/site-packages/wagtail/locales/locale/uk/LC_MESSAGES/django.po
vendored
Normal file
97
env/lib/python3.10/site-packages/wagtail/locales/locale/uk/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Sergiy Shkodenko <shkodenkosergiy@gmail.com>, 2021
|
||||
# Anastasiia La, 2021
|
||||
# d55ee35323c0c760f088259cd23b1b6d_9e8a7d1 <5459f3ae99ecdd5ed0be0220acd46004_1019581>, 2021
|
||||
# Loic Teixeira, 2022
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2020-10-23 10:41+0000\n"
|
||||
"Last-Translator: Loic Teixeira, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/torchbox/teams/8009/"
|
||||
"uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
|
||||
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
|
||||
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
|
||||
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
msgid "Wagtail locales"
|
||||
msgstr "Локалі Wagtail"
|
||||
|
||||
msgid "Language"
|
||||
msgstr "Мова"
|
||||
|
||||
msgid "Select a new language"
|
||||
msgstr "Оберіть нову мову"
|
||||
|
||||
msgid "This locale's language code is not supported"
|
||||
msgstr "Поточний код мови цієї локалі не підтримується"
|
||||
|
||||
msgid "Yes, delete"
|
||||
msgstr "Так, видалити"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
msgid ""
|
||||
"This locale's current language code is not supported. Please choose a new "
|
||||
"language or delete this locale."
|
||||
msgstr ""
|
||||
"Поточний код мови цієї локалі не підтримується. Будь ласка, виберіть іншу "
|
||||
"мову або видаліть цю локаль."
|
||||
|
||||
msgid "Locales"
|
||||
msgstr "Локалі"
|
||||
|
||||
msgid "Add a locale"
|
||||
msgstr "Додати локаль"
|
||||
|
||||
msgid "Usage"
|
||||
msgstr "Використання"
|
||||
|
||||
msgid "Add locale"
|
||||
msgstr "Додати локаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' created."
|
||||
msgstr "Локаль '%(object)s' створено."
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' updated."
|
||||
msgstr "Локаль '%(object)s' оновлено."
|
||||
|
||||
msgid "The locale could not be saved due to errors."
|
||||
msgstr "Локаль не можна зберегти через помилки."
|
||||
|
||||
msgid "Delete locale"
|
||||
msgstr "Видалити локаль"
|
||||
|
||||
#, python-format
|
||||
msgid "Locale '%(object)s' deleted."
|
||||
msgstr "Локаль '%(object)s' видалено."
|
||||
|
||||
msgid "Are you sure you want to delete this locale?"
|
||||
msgstr "Ви впевненні, що хочете видалити цю локаль?"
|
||||
|
||||
msgid "This locale cannot be deleted because there are no other locales."
|
||||
msgstr "Цю локаль не можна видалити, тому що немає інших локалей."
|
||||
|
||||
msgid ""
|
||||
"This locale cannot be deleted because there are pages and/or other objects "
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Цю локаль не можна видалити, тому що є сторінки та/або інші об'єкти, які "
|
||||
"використовують її."
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user