Initial commit
This commit is contained in:
0
env/lib/python3.10/site-packages/wagtail/contrib/settings/__init__.py
vendored
Normal file
0
env/lib/python3.10/site-packages/wagtail/contrib/settings/__init__.py
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/apps.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/apps.cpython-310.pyc
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/forms.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/forms.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/jinja2tags.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/jinja2tags.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/models.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/models.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/permissions.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/permissions.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/registry.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/registry.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/urls.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/urls.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/views.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/views.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/wagtail_hooks.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/__pycache__/wagtail_hooks.cpython-310.pyc
vendored
Normal file
Binary file not shown.
7
env/lib/python3.10/site-packages/wagtail/contrib/settings/apps.py
vendored
Normal file
7
env/lib/python3.10/site-packages/wagtail/contrib/settings/apps.py
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class WagtailSettingsAppConfig(AppConfig):
|
||||
name = "wagtail.contrib.settings"
|
||||
label = "wagtailsettings"
|
||||
verbose_name = "Wagtail settings"
|
||||
75
env/lib/python3.10/site-packages/wagtail/contrib/settings/context_processors.py
vendored
Normal file
75
env/lib/python3.10/site-packages/wagtail/contrib/settings/context_processors.py
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
from wagtail.contrib.settings.models import BaseGenericSetting, BaseSiteSetting
|
||||
from wagtail.models import Site
|
||||
|
||||
from .registry import registry
|
||||
|
||||
|
||||
class SettingProxy(dict):
|
||||
"""
|
||||
Get a SettingModuleProxy for an app using proxy['app_label']
|
||||
"""
|
||||
|
||||
def __init__(self, request_or_site):
|
||||
self.request_or_site = request_or_site
|
||||
|
||||
def __missing__(self, app_label):
|
||||
self[app_label] = value = SettingModuleProxy(self.request_or_site, app_label)
|
||||
return value
|
||||
|
||||
|
||||
class SettingModuleProxy(dict):
|
||||
"""
|
||||
Get a specific setting instance using proxy['modelname']
|
||||
"""
|
||||
|
||||
def __init__(self, request_or_site, app_label):
|
||||
self.app_label = app_label
|
||||
self.request_or_site = request_or_site
|
||||
|
||||
def __getitem__(self, model_name):
|
||||
"""Get a setting instance for a model"""
|
||||
# Model names are treated as case-insensitive
|
||||
return super().__getitem__(model_name.lower())
|
||||
|
||||
def __missing__(self, model_name):
|
||||
"""Get and cache settings that have not been looked up yet"""
|
||||
self[model_name] = value = self.get_setting(model_name)
|
||||
return value
|
||||
|
||||
def __str__(self):
|
||||
return f"SettingModuleProxy({self.app_label})"
|
||||
|
||||
def get_setting(self, model_name):
|
||||
"""
|
||||
Get a setting instance
|
||||
"""
|
||||
Model = registry.get_by_natural_key(self.app_label, model_name)
|
||||
if Model is None:
|
||||
raise RuntimeError(
|
||||
f"Could not find model matching `{self.app_label}.{model_name}`."
|
||||
)
|
||||
|
||||
if issubclass(Model, BaseGenericSetting):
|
||||
return Model.load(request_or_site=self.request_or_site)
|
||||
elif issubclass(Model, BaseSiteSetting):
|
||||
if self.request_or_site is not None:
|
||||
if isinstance(self.request_or_site, Site):
|
||||
return Model.for_site(self.request_or_site)
|
||||
|
||||
# Utilises cached value on request if set
|
||||
return Model.for_request(self.request_or_site)
|
||||
|
||||
raise RuntimeError(
|
||||
"Site-specific settings cannot be identified because "
|
||||
"`request` is not available in the context and "
|
||||
"`use_default_site` is False."
|
||||
)
|
||||
|
||||
raise NotImplementedError(
|
||||
"Setting models should inherit from either `BaseGenericSetting` "
|
||||
"or `BaseSiteSetting`."
|
||||
)
|
||||
|
||||
|
||||
def settings(request):
|
||||
return {"settings": SettingProxy(request_or_site=request)}
|
||||
39
env/lib/python3.10/site-packages/wagtail/contrib/settings/forms.py
vendored
Normal file
39
env/lib/python3.10/site-packages/wagtail/contrib/settings/forms.py
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
from django import forms
|
||||
from django.urls import reverse
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from wagtail.models import Site
|
||||
|
||||
|
||||
class SiteSwitchForm(forms.Form):
|
||||
site = forms.ChoiceField(
|
||||
choices=[],
|
||||
widget=forms.Select(
|
||||
attrs={
|
||||
"data-controller": "w-action",
|
||||
"data-action": "change->w-action#redirect",
|
||||
}
|
||||
),
|
||||
)
|
||||
|
||||
def __init__(self, current_site, model, **kwargs):
|
||||
initial_data = {"site": self.get_change_url(current_site, model)}
|
||||
super().__init__(initial=initial_data, **kwargs)
|
||||
self.fields["site"].choices = [
|
||||
(
|
||||
self.get_change_url(site, model),
|
||||
(
|
||||
site.hostname + " [{}]".format(_("default"))
|
||||
if site.is_default_site
|
||||
else site.hostname
|
||||
),
|
||||
)
|
||||
for site in Site.objects.all()
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def get_change_url(cls, site, model):
|
||||
return reverse(
|
||||
"wagtailsettings:edit",
|
||||
args=[model._meta.app_label, model._meta.model_name, site.pk],
|
||||
)
|
||||
92
env/lib/python3.10/site-packages/wagtail/contrib/settings/jinja2tags.py
vendored
Normal file
92
env/lib/python3.10/site-packages/wagtail/contrib/settings/jinja2tags.py
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
from weakref import WeakKeyDictionary
|
||||
|
||||
import jinja2
|
||||
from django.utils.encoding import force_str
|
||||
from jinja2.ext import Extension
|
||||
|
||||
from wagtail.contrib.settings.models import BaseGenericSetting, BaseSiteSetting
|
||||
from wagtail.contrib.settings.registry import registry
|
||||
from wagtail.models import Site
|
||||
|
||||
# Settings are cached per template context, to prevent excessive database
|
||||
# lookups. The cached settings are disposed of once the template context is no
|
||||
# longer used.
|
||||
settings_cache = WeakKeyDictionary()
|
||||
|
||||
|
||||
class SettingContextCache(dict):
|
||||
"""
|
||||
Settings cache for a template Context
|
||||
"""
|
||||
|
||||
def __missing__(self, key):
|
||||
out = self[key] = Setting(key)
|
||||
return out
|
||||
|
||||
|
||||
class Setting(dict):
|
||||
def __init__(self, site):
|
||||
super().__init__()
|
||||
self.site = site
|
||||
|
||||
def __getitem__(self, key):
|
||||
# Normalise all keys to lowercase
|
||||
return super().__getitem__(force_str(key).lower())
|
||||
|
||||
def __missing__(self, key):
|
||||
"""
|
||||
Get the settings instance and store it for later
|
||||
"""
|
||||
try:
|
||||
app_label, model_name = key.split(".", 1)
|
||||
except ValueError:
|
||||
raise KeyError(f"Invalid model name: `{key}`")
|
||||
|
||||
Model = registry.get_by_natural_key(app_label, model_name)
|
||||
if Model is None:
|
||||
raise RuntimeError(f"Could not find model matching `{key}`.")
|
||||
|
||||
if issubclass(Model, BaseGenericSetting):
|
||||
out = self[key] = Model.load(request_or_site=self.site)
|
||||
elif issubclass(Model, BaseSiteSetting):
|
||||
if self.site is None or not isinstance(self.site, Site):
|
||||
raise RuntimeError(
|
||||
"Site-specific settings cannot be identified because "
|
||||
"`self.site` is not a Site."
|
||||
)
|
||||
out = self[key] = Model.for_site(self.site)
|
||||
else:
|
||||
raise NotImplementedError
|
||||
|
||||
return out
|
||||
|
||||
|
||||
@jinja2.pass_context
|
||||
def get_setting(context, model_string, use_default_site=False):
|
||||
cache_key = None
|
||||
if use_default_site:
|
||||
cache_key = Site.objects.get(is_default_site=True)
|
||||
elif "request" in context:
|
||||
cache_key = Site.find_for_request(context["request"])
|
||||
|
||||
# Sadly, WeakKeyDictionary can not implement __missing__, so we have to do
|
||||
# this one manually
|
||||
try:
|
||||
context_cache = settings_cache[context]
|
||||
except KeyError:
|
||||
context_cache = settings_cache[context] = SettingContextCache()
|
||||
# These ones all implement __missing__ in a useful way though
|
||||
return context_cache[cache_key][model_string]
|
||||
|
||||
|
||||
class SettingsExtension(Extension):
|
||||
def __init__(self, environment):
|
||||
super().__init__(environment)
|
||||
self.environment.globals.update(
|
||||
{
|
||||
"settings": get_setting,
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
settings = SettingsExtension
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/af/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/af/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
23
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/af/LC_MESSAGES/django.po
vendored
Normal file
23
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/af/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Jaco du Plessis <jaco@jacoduplessis.co.za>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Jaco du Plessis <jaco@jacoduplessis.co.za>, 2016\n"
|
||||
"Language-Team: Afrikaans (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Stoor"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ar/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ar/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ar/LC_MESSAGES/django.po
vendored
Normal file
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ar/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# abdulaziz alfuhigi <abajall@gmail.com>, 2016
|
||||
# abdulaziz alfuhigi <abajall@gmail.com>, 2016
|
||||
# Bashar Al-Abdulhadi, 2020
|
||||
# Bashar Al-Abdulhadi, 2020
|
||||
# Khaled Arnaout <khaledarnaout@live.com>, 2018
|
||||
# Younes Oumakhou, 2022
|
||||
# Younes Oumakhou, 2022
|
||||
# abdulaziz alfuhigi <abajall@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: abdulaziz alfuhigi <abajall@gmail.com>, 2016\n"
|
||||
"Language-Team: Arabic (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "الإفتراضي"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "موقع"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "جاري الحفظ…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "حفظ"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "اعدادات"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "لايمكن فتح الاعدادات لعدم وجود موقع مُعرف."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "لايمكن حفظ الاعدادات بسبب وجود اخطاء"
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "تم تحديث %(setting_type)s"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/az_AZ/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/az_AZ/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
41
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/az_AZ/LC_MESSAGES/django.po
vendored
Normal file
41
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/az_AZ/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Mirza Iskandarov <mirza.iskandarov@gmail.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Mirza Iskandarov <mirza.iskandarov@gmail.com>, 2020\n"
|
||||
"Language-Team: Azerbaijani (Azerbaijan) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/az_AZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: az_AZ\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Yadda saxlanılır..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Yadda saxla"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Parametrlər"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Müəyyən edilə bilən sayt mövcud olmadığı üçün parametrləri yadda saxlamaq "
|
||||
"mümkün olmadı."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Səhvlərə görə parametrləri yadda saxlamaq mümkün olmadı."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)syeniləndi."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/be/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/be/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/be/LC_MESSAGES/django.po
vendored
Normal file
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/be/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Andrei Satsevich, 2023
|
||||
# Tatsiana Tsygan <art.tatsiana@gmail.com>, 2018,2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Andrei Satsevich, 2023\n"
|
||||
"Language-Team: Belarusian (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/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 "default"
|
||||
msgstr "па змаўчанні"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s для %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Сайт"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Захаванне"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Захаваць"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Налады"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Гэты параметр не магчыма адчыніць, бо сайт не вызначаны."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Не атрымалася захаваць наладку з-за памылкі"
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)sабноўлена"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bg/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bg/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
22
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bg/LC_MESSAGES/django.po
vendored
Normal file
22
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bg/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "Save"
|
||||
msgstr "Запази"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bn/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bn/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
42
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bn/LC_MESSAGES/django.po
vendored
Normal file
42
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/bn/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# MA Rahman <ugikot@gmail.com>, 2020
|
||||
# MA Rahman <ugikot@gmail.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: MA Rahman <ugikot@gmail.com>, 2020\n"
|
||||
"Language-Team: Bengali (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"bn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "default"
|
||||
msgstr "ডিফল্ট"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "সাইট "
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "সংরক্ষিত হচ্ছে..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "সংরক্ষণ"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "সেটিংস "
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "কোনও সাইট নির্ধারিত না থাকায় এই সেটিংটি খোলা যায় নি।"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "ত্রুটির কারণে সেটিংসটি সংরক্ষণ করা যায়নি।"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ca/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ca/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ca/LC_MESSAGES/django.po
vendored
Normal file
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ca/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Matt Westcott <matthew@torchbox.com>, 2017
|
||||
# Roger Pons <rogerpons@gmail.com>, 2017-2018,2020,2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Roger Pons <rogerpons@gmail.com>, 2017-2018,2020,2023\n"
|
||||
"Language-Team: Catalan (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "per defecte"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s per %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Lloc web"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Desant…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Desar"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Configuració"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"No es pot obrir aquest paràmetre de configuració perquè no hi ha cap lloc "
|
||||
"web definit."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "El paràmetre de configuració no pot ser desat per causa d'errors."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)sactualitzat/da."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.po
vendored
Normal file
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cs/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# IT Management <hudan@itmanagement.cz>, 2018
|
||||
# IT Management <hudan@itmanagement.cz>, 2018,2024
|
||||
# Marek Turnovec <aesculap@gmail.com>, 2016,2020
|
||||
# Mirek Zvolský <zvolsky@seznam.cz>, 2020
|
||||
# IT Management <hudan@itmanagement.cz>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: IT Management <hudan@itmanagement.cz>, 2018,2024\n"
|
||||
"Language-Team: Czech (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "výchozí"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s pro %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Web"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Ukládání…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Uložit"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Nastavení"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Nastavení nebylo možné načíst protože není definovaný žádný web."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Nastavení nelze uložit, zkontrolujte správné vyplnění polí."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s aktualizováno."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cy/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cy/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
47
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cy/LC_MESSAGES/django.po
vendored
Normal file
47
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/cy/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Adam Hughes <adamhughes31@gmail.com>, 2017,2020
|
||||
# Matt Westcott <matthew@torchbox.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Matt Westcott <matthew@torchbox.com>, 2017\n"
|
||||
"Language-Team: Welsh (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "diofyn"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Safle"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Cadw…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Cadw"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Gosodiadau"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Ni ellid agor y gosodiad hwn oherwydd nad oes safle wedi'i ddiffinio."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Ni ellid achub y gosodiadau oherwydd gwallau."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)swedi'i ddiweddaru."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/da/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/da/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/da/LC_MESSAGES/django.po
vendored
Normal file
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/da/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Asger Sørensen <asger.soerensen@live.com>, 2016
|
||||
# Benjamin Bach <benjaoming@gmail.com>, 2022
|
||||
# Mads Kronborg <madskronborg99@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Mads Kronborg <madskronborg99@gmail.com>, 2018\n"
|
||||
"Language-Team: Danish (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "standardindstilling"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Gemmer…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Gem"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Denne indstilling kunne ikke åbnes, da der ikke er nogen side defineret."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Denne indstilling kunne ikke gemmes på grund af fejl."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s opdateret."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/de/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/de/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
62
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/de/LC_MESSAGES/django.po
vendored
Normal file
62
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/de/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Henrik Kröger <hedwig@riseup.net>, 2016,2018
|
||||
# Krzysztof Jeziorny <github@jeziorny.net>, 2021
|
||||
# Matthias Martin, 2019
|
||||
# Matthias Martin, 2019
|
||||
# Matti Borchers, 2022
|
||||
# mattibo, 2022
|
||||
# Moritz Pfeiffer <moritz@alp-phone.ch>, 2016
|
||||
# Scriptim <Scriptim@gmx.de>, 2020
|
||||
# Stefan Hammer <stefan@hammerworxx.com>, 2022
|
||||
# Stefan Hammer <stefan@hammerworxx.com>, 2022
|
||||
# Tibor <tibor@lpld.io>, 2020
|
||||
# Scriptim <Scriptim@gmx.de>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Scriptim <Scriptim@gmx.de>, 2020\n"
|
||||
"Language-Team: German (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "Standard"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s von %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Webseite"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Speichern…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Diese Einstellung konnte nicht geöffnet werden, da keine Website definiert "
|
||||
"ist."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Aufgrund von Fehlern konnte die Einstellung nicht gespeichert werden."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s aktualisiert."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/dv/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/dv/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
49
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/dv/LC_MESSAGES/django.po
vendored
Normal file
49
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/dv/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Fauzaan Gasim, 2024
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Fauzaan Gasim, 2024\n"
|
||||
"Language-Team: Divehi (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "ޑީފޯލްޓް"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s އަށް %(site)s "
|
||||
|
||||
msgid "Site"
|
||||
msgstr "ސައިޓް"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "ސޭވްކުރަނީ"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "ސޭވްކުރޭ"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "ސެޓިންގް"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "ސައިޓް ޑިފައިން ވެފަ ނެތީމަ ސެޓިން ހުޅުވޭކަށް ނެތް!"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "މައްސަލަތަކެއް އެބައުޅޭ، ސެޓިން ސޭވް ވާކަށް ނެތް!"
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s އިސްދާރުކުރެވިއްޖެ."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/el/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/el/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/el/LC_MESSAGES/django.po
vendored
Normal file
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/el/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Dimitri Fekas, 2022
|
||||
# fekioh, 2022
|
||||
# Nick Mavrakis <mavrakis.n@gmail.com>, 2017
|
||||
# serafeim <serafeim@torchbox.com>, 2016
|
||||
# serafeim <serafeim@torchbox.com>, 2016
|
||||
# Yiannis Inglessis <negtheone@gmail.com>, 2016,2018
|
||||
# Yiannis Inglessis <negtheone@gmail.com>, 2016,2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Yiannis Inglessis <negtheone@gmail.com>, 2016,2018\n"
|
||||
"Language-Team: Greek (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "προεπιλογή"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Ιστότοπος"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Αποθήκευση…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Αποθήκευση"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Επιλογές"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Αυτή ρύθμιση δεν άνοιξε γιατί δεν έχει οριστεί ιστότοπος"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Η ρύθμιση δεν μπορεί να αποθηκευτεί λόγω σφάλματος."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s αναθεωρήθηκε"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en/LC_MESSAGES/django.po
vendored
Normal file
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
# 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"
|
||||
|
||||
#: forms.py:26
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: models.py:152
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtailsettings/edit.html:9
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtailsettings/edit.html:31
|
||||
msgid "Saving…"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtailsettings/edit.html:34
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wagtailsettings/index.html:3
|
||||
#: templates/wagtailsettings/index.html:7
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views.py:62
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:84
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr ""
|
||||
|
||||
#: views.py:152
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr ""
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en_IN/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en_IN/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
35
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en_IN/LC_MESSAGES/django.po
vendored
Normal file
35
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/en_IN/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.
|
||||
#
|
||||
# Translators:
|
||||
# Neeraj PY, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Neeraj PY, 2023\n"
|
||||
"Language-Team: English (India) (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/en_IN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: en_IN\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "default"
|
||||
msgstr "default"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Saving..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es/LC_MESSAGES/django.po
vendored
Normal file
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Antoni Aloy <aaloy@apsl.net>, 2022
|
||||
# Daniel Wohlgemuth <daniel.wohlgemuth.epp@gmail.com>, 2020
|
||||
# José Luis <alagunajs@gmail.com>, 2016
|
||||
# José Luis <alagunajs@gmail.com>, 2016,2018
|
||||
# Oscar Luciano Espirilla Flores, 2020
|
||||
# Oscar Luciano Espirilla Flores, 2020
|
||||
# X Bello <xbello@gmail.com>, 2022
|
||||
# José Luis <alagunajs@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: José Luis <alagunajs@gmail.com>, 2016,2018\n"
|
||||
"Language-Team: Spanish (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "predeterminado"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)sde %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sitio"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Guardando..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Propiedades"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Esta configuración podría no ser abierta porque no hay un sitio definido."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "La configuración no puede ser guardada debido a errores"
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s actualizado."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_419/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_419/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
50
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_419/LC_MESSAGES/django.po
vendored
Normal file
50
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_419/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Rodrigo Yanez, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Rodrigo Yanez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
msgid "default"
|
||||
msgstr "predeterminado"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s para %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Página"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Guardando..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Esta configuración no puede abrirse porque no hay una página definida."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "La configuración no se ha podido guardar debido a errores."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s actualizada."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_VE/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_VE/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_VE/LC_MESSAGES/django.po
vendored
Normal file
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/es_VE/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Rodrigo Yanez, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Rodrigo Yanez, 2023\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s para %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Página"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Guardando..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"La configuración no puede abrirse debido a que no hay una página definida."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "La configuración no se ha podido guardar debido a errores."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s actualizado(s)."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/et/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/et/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/et/LC_MESSAGES/django.po
vendored
Normal file
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/et/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Erlend Eelmets <debcf78e@opayq.com>, 2020
|
||||
# Erlend Eelmets <debcf78e@opayq.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Erlend Eelmets <debcf78e@opayq.com>, 2020\n"
|
||||
"Language-Team: Estonian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "vaikimis"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sait"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Salvestan..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Salvesta"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Sätted"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Seda seadet ei saanud avada, kuna pole ühtegi saiti määratletud."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Seadet ei õnnestunud vigade tõttu salvestada."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s uuendatud."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fa/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fa/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
56
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fa/LC_MESSAGES/django.po
vendored
Normal file
56
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fa/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Hamed NAJAND <hmd.nzhd@gmail.com>, 2020
|
||||
# Mehdi <myjahromi@gmail.com>, 2020
|
||||
# Mohammad Hossein Mojtahedi <Mhm5000@gmail.com>, 2017
|
||||
# Mohammad Sharif Shokouhi <m.sh.shokouhi@outlook.com>, 2020
|
||||
# pyzenberg <pyzenberg@gmail.com>, 2017
|
||||
# pyzenberg <pyzenberg@gmail.com>, 2017
|
||||
# Salar Yazdani, 2023
|
||||
# Vessal Daneshvar, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Vessal Daneshvar, 2023\n"
|
||||
"Language-Team: Persian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "پیشفرض"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s برای %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "سایت"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "در حال ذخیره کردن…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "ذخیره"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "تنظیمات"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "چون سایتی تعریف نشده است، این تنظیمات قابل باز شدن نمیباشد."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "به دلیل بروز خطا امکان ذخیره تنظیمات وجود ندارد."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)sبروزرسانی شد."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fi/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fi/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fi/LC_MESSAGES/django.po
vendored
Normal file
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fi/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2022
|
||||
# Juha Yrjölä <juha.yrjola@iki.fi>, 2016
|
||||
# Rauli Laine <rauli.laine@iki.fi>, 2016
|
||||
# Rauli Laine <rauli.laine@iki.fi>, 2016
|
||||
# Valter Maasalo <vmaasalo@gmail.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Valter Maasalo <vmaasalo@gmail.com>, 2020\n"
|
||||
"Language-Team: Finnish (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "oletusarvo"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s sivustolle %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sivusto"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Tallennetaan…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Tallenna"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Tätä asetusta ei voitu avata, koska sivustoa ei ole määritelty."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Asetusta ei voitu tallentaa virheiden vuoksi."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s päivitetty."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fr/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fr/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fr/LC_MESSAGES/django.po
vendored
Normal file
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/fr/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Bertrand Bordage <bordage.bertrand@gmail.com>, 2016,2018
|
||||
# Léo <leo@naeka.fr>, 2016
|
||||
# Loic Teixeira, 2020,2022
|
||||
# Loic Teixeira, 2020,2022
|
||||
# Sébastien Corbin <seb.corbin@gmail.com>, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Sébastien Corbin <seb.corbin@gmail.com>, 2023\n"
|
||||
"Language-Team: French (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "défaut"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s pour %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Enregistrement…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Paramètres"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Ce paramètre ne peut être ouvert car aucun site n’est défini."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Ce paramètre ne peut être enregistré du fait d’erreurs."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s mis à jour."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/gl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/gl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/gl/LC_MESSAGES/django.po
vendored
Normal file
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/gl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Amós Oviedo <amos.oviedo@gmail.com>, 2016,2020
|
||||
# Amós Oviedo <amos.oviedo@gmail.com>, 2016,2020
|
||||
# Amós Oviedo <amos.oviedo@gmail.com>, 2016
|
||||
# X Bello <xbello@gmail.com>, 2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: X Bello <xbello@gmail.com>, 2022\n"
|
||||
"Language-Team: Galician (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "por defecto"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s para %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sitio web"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Gardando…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Gardar"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Esta configuración non puido ser aberta porque non hai ningún sitio web "
|
||||
"definido."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "A configuración non pode ser gardada debido a erros."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s actualizado."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
49
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.po
vendored
Normal file
49
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Adi Ron <adi@bnop.co>, 2019
|
||||
# Men770, 2021
|
||||
# Men770, 2021
|
||||
# Oleg Sverdlov <oleg.sverdlov@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Oleg Sverdlov <oleg.sverdlov@gmail.com>, 2017\n"
|
||||
"Language-Team: Hebrew (Israel) (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/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 "default"
|
||||
msgstr "ברירת מחדל"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "אתר"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "שומר..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "שמור"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "הגדרות"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "לא ניתן לפתוח את ההגדרות בגלל שאף אתר לא מוגדר."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "לא ניתן לשמור את ההגדרות עקב שגיאות."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)sעודכנו"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hi/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hi/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hi/LC_MESSAGES/django.po
vendored
Normal file
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hi/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Anshika Vashistha, 2023
|
||||
# Apoorv Saini, 2023
|
||||
# priyanshu kumar, 2023
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: priyanshu kumar, 2023\n"
|
||||
"Language-Team: Hindi (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "default"
|
||||
msgstr "मूलचर"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s for %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "साइट"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Saving…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "यह सेटिंग खोली नहीं जा सकती क्योंकि कोई साइट परिभाषित नहीं है।"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "यह सेटिंग त्रुटियों के कारण सहेजी नहीं जा सकी।"
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s updated."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hr_HR/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hr_HR/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hr_HR/LC_MESSAGES/django.po
vendored
Normal file
52
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hr_HR/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Dino Aljević <dino8890@protonmail.com>, 2020
|
||||
# Dino Aljević <dino8890@protonmail.com>, 2020,2023
|
||||
# Ivica Dosen <idosen71@gmail.com>, 2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Dino Aljević <dino8890@protonmail.com>, 2020,2023\n"
|
||||
"Language-Team: Croatian (Croatia) (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/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 "default"
|
||||
msgstr "zadano"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s za %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sjedište"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Snimanje...."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Spremi"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Nije moguće otvoriti postavku budući da nema definiranog sjedišta."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Nije moguće sačuvati postavku zbog grešaka."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "Ažurirano %(setting_type)s"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ht/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ht/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
42
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ht/LC_MESSAGES/django.po
vendored
Normal file
42
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ht/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Hantz Vius <vhantz@protonmail.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Hantz Vius <vhantz@protonmail.com>, 2020\n"
|
||||
"Language-Team: Haitian (Haitian Creole) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/ht/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ht\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sit"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Anrejistreman..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Anrejistre"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Konfigirasyon"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Konfigirasyn sa pa t ka louvri paske okenn sit pa defini."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Konfigirasyon an pa t ka anrejistre akòz de erè."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)saktyalize."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hu/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hu/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hu/LC_MESSAGES/django.po
vendored
Normal file
54
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/hu/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# aaao <aron.santa@gmail.com>, 2019
|
||||
# B N <biczoxd@gmail.com>, 2018
|
||||
# Istvan Farkas <istvan.farkas@gmail.com>, 2019-2020,2022
|
||||
# Kornel Novak Mergulhão <nkornel@gmail.com>, 2016
|
||||
# Kornel Novak Mergulhão <nkornel@gmail.com>, 2016
|
||||
# B N <biczoxd@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: B N <biczoxd@gmail.com>, 2018\n"
|
||||
"Language-Team: Hungarian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "alapértelmezett"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s ehhez: %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Weboldal"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Mentés folyamatban…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Mentés"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Beállítások"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Ez a beállítás nem nyitható meg, mert nincs webhely definiálva."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "A beállításokat nem lehetett elmenteni."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s frissítve."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/id_ID/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/id_ID/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/id_ID/LC_MESSAGES/django.po
vendored
Normal file
48
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/id_ID/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Andry Widya Putra UN <andrywidyaputra@gmail.com>, 2020
|
||||
# M. Febrian Ramadhana <febrian@ramadhana.me>, 2018
|
||||
# Ronggo Radityo <radityo3000@yahoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Ronggo Radityo <radityo3000@yahoo.com>, 2017\n"
|
||||
"Language-Team: Indonesian (Indonesia) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/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 "default"
|
||||
msgstr "default"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Situs"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Menyimpan…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Simpan"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Pengaturan"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Pengaturan ini tidak dapat dibuka karena tidak ada situs yang didefinisikan."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Pengaturan tidak dapat disimpan karena terdapat kesalahan."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s diperbarui."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/is_IS/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/is_IS/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/is_IS/LC_MESSAGES/django.po
vendored
Normal file
53
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/is_IS/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Arnar Tumi Þorsteinsson <arnartumi@gmail.com>, 2016,2018,2022
|
||||
# saevarom <saevar@saevar.is>, 2020,2022
|
||||
# saevarom <saevar@saevar.is>, 2020,2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: saevarom <saevar@saevar.is>, 2020,2022\n"
|
||||
"Language-Team: Icelandic (Iceland) (http://app.transifex.com/torchbox/"
|
||||
"wagtail/language/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 "default"
|
||||
msgstr "sjálfgefin"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s fyrir %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Síða"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Vista…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Vista"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Stillingar"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Ekki er hægt að breyta þessari stillingu þar sem engin síða hefur verið "
|
||||
"skilgreind."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Ekki var hægt að vista stillingarnar, villur komu upp."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)suppfært."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/it/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/it/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
61
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/it/LC_MESSAGES/django.po
vendored
Normal file
61
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/it/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Carlo Miron <carlo@miron.it>, 2016
|
||||
# Carlo Miron <carlo@miron.it>, 2016
|
||||
# Carlo Miron <carlo@miron.it>, 2016
|
||||
# Edd Baldry <edd.baldry@gmail.com>, 2016
|
||||
# Giacomo Ghizzani <giacomo.ghz@gmail.com>, 2016
|
||||
# giammi <gian-maria.daffre@giammi.org>, 2018
|
||||
# giammi <gian-maria.daffre@giammi.org>, 2018
|
||||
# Marco Badan <marco.badan@gmail.com>, 2022
|
||||
# Marco Lerco <marcolerco@gmail.com>, 2021
|
||||
# Stefano Marchetto <airbatum@gmail.com>, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Marco Badan <marco.badan@gmail.com>, 2022\n"
|
||||
"Language-Team: Italian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "default"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s per %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Sito"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Salvataggio in corso…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Questa impostazione non può essere aperta perché non esiste un sito "
|
||||
"predefinito."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "L'impostazione non può essere salvata a causa di errori."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s aggiornata."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ja/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ja/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
44
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ja/LC_MESSAGES/django.po
vendored
Normal file
44
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ja/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# shuhei hirota, 2019
|
||||
# shuhei hirota, 2019
|
||||
# Tri Minh <minh.nguyentri.95@gmail.com>, 2019
|
||||
# 溝江 智徳 <tomo.mizoe@gmail.com>, 2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: 溝江 智徳 <tomo.mizoe@gmail.com>, 2019\n"
|
||||
"Language-Team: Japanese (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "サイト"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "保存中"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "サイトが定義されていないため、この設定を開けません。"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "エラーが発生したため、サイトを保存できませんでした。"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ka/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ka/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
25
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ka/LC_MESSAGES/django.po
vendored
Normal file
25
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ka/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.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Georgian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "საიტი"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "შენახვა"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ko/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ko/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
47
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ko/LC_MESSAGES/django.po
vendored
Normal file
47
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/ko/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Kyu Choi, 2022
|
||||
# Kyu Choi, 2022
|
||||
# Kyungil Choi <hanpama@gmail.com>, 2017-2018,2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Kyu Choi, 2022\n"
|
||||
"Language-Team: Korean (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "기본"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "사이트"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "저장 중…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "저장"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "설정"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "사이트가 정의되지 않아 이 설정을 열 수 없습니다."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "에러로 인해 설정을 저장할 수 없습니다."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s의 수정이 반영됨 "
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lt/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lt/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lt/LC_MESSAGES/django.po
vendored
Normal file
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lt/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Matas Dailyda <matas@dailyda.com>, 2017
|
||||
# Naglis Jonaitis, 2020
|
||||
# Naglis Jonaitis, 2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Naglis Jonaitis, 2020\n"
|
||||
"Language-Team: Lithuanian (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/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 "default"
|
||||
msgstr "numatytasis"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Tinklalapis"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Saugojama…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Išsaugoti"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Nustatymai"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Nustatymas negalėjo būti išsaugotas dėl klaidų."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s atnaujintas."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lv/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lv/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lv/LC_MESSAGES/django.po
vendored
Normal file
46
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/lv/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Reinis Rozenbergs <reinisr@gmail.com>, 2016-2018,2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Reinis Rozenbergs <reinisr@gmail.com>, 2016-2018,2020\n"
|
||||
"Language-Team: Latvian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "noklusētais"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Vietne"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Saglabā..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Saglabāt"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Uzstādījumi"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Šo iestatījumu nevarēja atvērt, jo nav definēta vietne."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Kļūdu dēļ uzstādījumus nebija iespējams saglabāt."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s saglabāti."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mi/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mi/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
45
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mi/LC_MESSAGES/django.po
vendored
Normal file
45
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mi/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Awatea Randall <awatea@octave.nz>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Awatea Randall <awatea@octave.nz>, 2021\n"
|
||||
"Language-Team: Maori (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "taunoa"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Pae"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "pupuru ana..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Puritia"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "tautuhinga"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Nōtemea e kore he pae tautuhi, ehara tēnei ka taea ki te pōaha "
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Ehara tēnei i puritia, he raruraru."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s whakahou."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mn/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mn/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mn/LC_MESSAGES/django.po
vendored
Normal file
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/mn/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Myagmarjav Enkhbileg <miigaa.lucky@gmail.com>, 2019,2021
|
||||
# Soft Exim, 2022
|
||||
# visual, 2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Soft Exim, 2022\n"
|
||||
"Language-Team: Mongolian (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "өгөгдмөл"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site)s -н %(site_setting)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Сайт"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Хадгалж байна"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Хадгалах"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Тохиргоо"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "Ямар нэг сайт тохируулаагүй учир энэ тохиргоо нээгдэхгүй."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Дараах алдаануудаас болж тохиргоо хадгалагдсангүй."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s шинэчлэгдлээ."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/my/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/my/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
39
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/my/LC_MESSAGES/django.po
vendored
Normal file
39
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/my/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# ime11 <pmh.yourworstnightmare@gmail.com>, 2019
|
||||
# ime11 <pmh.yourworstnightmare@gmail.com>, 2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: ime11 <pmh.yourworstnightmare@gmail.com>, 2019\n"
|
||||
"Language-Team: Burmese (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "Site"
|
||||
msgstr "ဆိုက်"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "သိမ်းဆည်းနေသည်..."
|
||||
|
||||
msgid "Save"
|
||||
msgstr "သိမ်းဆည်းပါ"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "ဆက်တင်များ"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr "ဘယ်ဆိုက်မှ မသတ်မှတ်ထားသောကြောင့် ဆက်တင်ကို မဖွင့်နိုင်ပါ။"
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "အမှားအယွင်းများကြောင့် ဆက်တင်ကို မသိမ်းဆည်းနိုင်ပါ။"
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nb/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nb/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nb/LC_MESSAGES/django.po
vendored
Normal file
51
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nb/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Jonathan D, 2023
|
||||
# Stein Strindhaug <stein.strindhaug@gmail.com>, 2016,2018-2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Jonathan D, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (http://app.transifex.com/torchbox/wagtail/"
|
||||
"language/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 "default"
|
||||
msgstr "standard"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s for %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Nettsted"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Lagrer…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Lagre"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Innstillingen kunne ikke åpnes fordi det ikke er noe nettsted definert."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Innstillingen kunne ikke lagres grunnet feil."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s oppdatert."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.po
vendored
Normal file
58
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/nl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Benjamin Van Renterghem <benjaaa.vr@gmail.com>, 2020
|
||||
# Benjamin Van Renterghem <benjaaa.vr@gmail.com>, 2020
|
||||
# Coen van der Kamp <cvanderkamp@gmail.com>, 2019,2022
|
||||
# Maarten Kling <kling.maarten@gmail.com>, 2018
|
||||
# Meteor0id, 2021
|
||||
# Meteor0id, 2021
|
||||
# Rob Moorman <rob@moori.nl>, 2016
|
||||
# Storm Heg <storm@stormbase.digital>, 2022
|
||||
# Thijs Kramer <thijskramer@gmail.com>, 2016,2020
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Thijs Kramer <thijskramer@gmail.com>, 2016,2020\n"
|
||||
"Language-Team: Dutch (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "standaard"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s voor %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Bezig met opslaan…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Opslaan"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"Deze instelling kon niet worden geopend omdat er geen site is aangegeven."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "De instelling kon vanwege fouten niet worden opgeslagen."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s gewijzigd."
|
||||
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/pl/LC_MESSAGES/django.mo
vendored
Normal file
BIN
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/pl/LC_MESSAGES/django.mo
vendored
Normal file
Binary file not shown.
56
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/pl/LC_MESSAGES/django.po
vendored
Normal file
56
env/lib/python3.10/site-packages/wagtail/contrib/settings/locale/pl/LC_MESSAGES/django.po
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Krzysztof Jeziorny <github@jeziorny.net>, 2022
|
||||
# Miłosz Miśkiewicz, 2016
|
||||
# Miłosz Miśkiewicz, 2018-2020
|
||||
# Miłosz Miśkiewicz, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wagtail\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-19 16:26+0100\n"
|
||||
"PO-Revision-Date: 2016-03-01 19:20+0000\n"
|
||||
"Last-Translator: Miłosz Miśkiewicz, 2016\n"
|
||||
"Language-Team: Polish (http://app.transifex.com/torchbox/wagtail/language/"
|
||||
"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 "default"
|
||||
msgstr "domyślny"
|
||||
|
||||
#, python-format
|
||||
msgid "%(site_setting)s for %(site)s"
|
||||
msgstr "%(site_setting)s dla %(site)s"
|
||||
|
||||
msgid "Site"
|
||||
msgstr "Serwis"
|
||||
|
||||
msgid "Saving…"
|
||||
msgstr "Zapisywanie…"
|
||||
|
||||
msgid "Save"
|
||||
msgstr "Zapisz"
|
||||
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
msgid "This setting could not be opened because there is no site defined."
|
||||
msgstr ""
|
||||
"To ustawienie nie mogło zostać otwarte ponieważ nie zdefiniowano żadnego "
|
||||
"serwisu."
|
||||
|
||||
msgid "The setting could not be saved due to errors."
|
||||
msgstr "Ustawienie nie mogło zostać zapisane z powodu błędów."
|
||||
|
||||
#, python-format
|
||||
msgid "%(setting_type)s updated."
|
||||
msgstr "%(setting_type)s zaktualizowane."
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user