Got basic webpage working. Need to make base page, static folders
This commit is contained in:
@@ -0,0 +1 @@
|
||||
default_app_config = 'django.contrib.flatpages.apps.FlatPagesConfig'
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,19 @@
|
||||
from django.contrib import admin
|
||||
from django.contrib.flatpages.forms import FlatpageForm
|
||||
from django.contrib.flatpages.models import FlatPage
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
@admin.register(FlatPage)
|
||||
class FlatPageAdmin(admin.ModelAdmin):
|
||||
form = FlatpageForm
|
||||
fieldsets = (
|
||||
(None, {'fields': ('url', 'title', 'content', 'sites')}),
|
||||
(_('Advanced options'), {
|
||||
'classes': ('collapse',),
|
||||
'fields': ('registration_required', 'template_name'),
|
||||
}),
|
||||
)
|
||||
list_display = ('url', 'title')
|
||||
list_filter = ('sites', 'registration_required')
|
||||
search_fields = ('url', 'title')
|
||||
@@ -0,0 +1,7 @@
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class FlatPagesConfig(AppConfig):
|
||||
name = 'django.contrib.flatpages'
|
||||
verbose_name = _("Flat Pages")
|
||||
@@ -0,0 +1,58 @@
|
||||
from django import forms
|
||||
from django.conf import settings
|
||||
from django.contrib.flatpages.models import FlatPage
|
||||
from django.utils.translation import gettext, gettext_lazy as _
|
||||
|
||||
|
||||
class FlatpageForm(forms.ModelForm):
|
||||
url = forms.RegexField(
|
||||
label=_("URL"),
|
||||
max_length=100,
|
||||
regex=r'^[-\w/\.~]+$',
|
||||
help_text=_("Example: '/about/contact/'. Make sure to have leading and trailing slashes."),
|
||||
error_messages={
|
||||
"invalid": _(
|
||||
"This value must contain only letters, numbers, dots, "
|
||||
"underscores, dashes, slashes or tildes."
|
||||
),
|
||||
},
|
||||
)
|
||||
|
||||
class Meta:
|
||||
model = FlatPage
|
||||
fields = '__all__'
|
||||
|
||||
def clean_url(self):
|
||||
url = self.cleaned_data['url']
|
||||
if not url.startswith('/'):
|
||||
raise forms.ValidationError(
|
||||
gettext("URL is missing a leading slash."),
|
||||
code='missing_leading_slash',
|
||||
)
|
||||
if (settings.APPEND_SLASH and
|
||||
'django.middleware.common.CommonMiddleware' in settings.MIDDLEWARE and
|
||||
not url.endswith('/')):
|
||||
raise forms.ValidationError(
|
||||
gettext("URL is missing a trailing slash."),
|
||||
code='missing_trailing_slash',
|
||||
)
|
||||
return url
|
||||
|
||||
def clean(self):
|
||||
url = self.cleaned_data.get('url')
|
||||
sites = self.cleaned_data.get('sites')
|
||||
|
||||
same_url = FlatPage.objects.filter(url=url)
|
||||
if self.instance.pk:
|
||||
same_url = same_url.exclude(pk=self.instance.pk)
|
||||
|
||||
if sites and same_url.filter(sites__in=sites).exists():
|
||||
for site in sites:
|
||||
if same_url.filter(sites=site).exists():
|
||||
raise forms.ValidationError(
|
||||
_('Flatpage with url %(url)s already exists for site %(site)s'),
|
||||
code='duplicate_url',
|
||||
params={'url': url, 'site': site},
|
||||
)
|
||||
|
||||
return super().clean()
|
||||
BIN
Binary file not shown.
+77
@@ -0,0 +1,77 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Afrikaans (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Bashar Al-Abdulhadi, 2015
|
||||
# Bashar Al-Abdulhadi, 2014
|
||||
# Eyad Toma <[email protected]>, 2013
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Ossama Khayat <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Bashar Al-Abdulhadi\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "خيارات متقدّمة"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "صفحات مسطحة"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "رابط"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr "مثال: '/about/contact/'. تأكد من وضع شرطات في البداية والنهاية."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"يجب أن تحتوي هذه القيمة الأحرف والأرقام والنقاط وعلامات _ و - و / أو ~ فقط."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "العنوان URL يفقد رمز / في بدايته."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "العنوان URL يفقد رمز / في نهايته."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "الصفحة ذو العنوان %(url)s موجودة سابقاً في موقع %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "العنوان"
|
||||
|
||||
msgid "content"
|
||||
msgstr "المحتوى"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "السماح بالتعليقات"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "اسم القالب"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"مثال: 'flatpages/contact_page.html'. إن لم تكن الصفحة موجودة، فسوف يستخدم "
|
||||
"النظام 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "التسجيل مطلوب"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"إذا كان هذا الخيار محددا، فإن المستخدمين الداخلين فقط سيتمكنون من مشاهدة "
|
||||
"الصفحة."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "المواقع"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "صفحة مسطحة"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "صفحات مسطحة"
|
||||
BIN
Binary file not shown.
+80
@@ -0,0 +1,80 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Ḷḷumex03 <[email protected]>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 19:51+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Asturian (http://www.transifex.com/django/django/language/"
|
||||
"ast/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ast\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzaes"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr "títulu"
|
||||
|
||||
msgid "content"
|
||||
msgstr "conteníu"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "habilitar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "requierse rexistru"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Si esto ta conseñao, namái los usuarios con sesión aniciada podrán ver la "
|
||||
"páxina."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Ali Ismayilov <[email protected]>, 2011
|
||||
# Dimitris Glezos <[email protected]>, 2012
|
||||
# Emin Mastizada <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Azerbaijani (http://www.transifex.com/django/django/language/"
|
||||
"az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Əlavə imkanlar"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Flat Səhifələr"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Məsələn, \"/about/contact/\". Əvvəldə və sondakı kəsr xəttinin olmasına "
|
||||
"diqqət edin."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Burada yalnız hərf, rəqəm, nöqtə, altdan xətt, defis, kəsr xətti və ya "
|
||||
"tildadan istifadə etmək olar."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Ünvan başlanğıcında çəp xətt əksikdir."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Ünvan sonunda çəp xətt əksikdir."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "%(site)s saytı üçün artıq %(url)s ünvanlı Flatpage mövcuddur"
|
||||
|
||||
msgid "title"
|
||||
msgstr "başlıq"
|
||||
|
||||
msgid "content"
|
||||
msgstr "məzmun"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "şərhlər olsun"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "şablonun adı"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Məsələn, \"flatpages/contact_page.html\". Əgər göstərməsəniz, biz "
|
||||
"\"flatpages/default.html\" şablonundan istifadə edəcəyik."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "ancaq qeydiyyatlılar üçün"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Əgər bura quş qoysanız, ancaq qeydiyyatdan keçib sayta daxil olmuş "
|
||||
"istifadəçilər bu səhifəni görə biləcəklər."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "adi səhifə"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "adi səhifələr"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# znotdead <[email protected]>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: znotdead <[email protected]>\n"
|
||||
"Language-Team: Belarusian (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Адмысловыя можнасьці"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Нязменныя Бачыны"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "Сеціўная спасылка"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Прыклад: «/about/contact/». Упэўніцеся, што адрас пачынаецца й заканчваецца "
|
||||
"рыскаю «/»."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Дазваляюцца толькі літары, лічбы, кропкі, знак падкрэсьліваньня, злучкі, "
|
||||
"нахіленыя рыскі, тыльды."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Спасылка не пачынаецца з рыскі «/»."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Спасылка не заканчваецца рыскаю «/»."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "На пляцоўцы «%(site)s» ужо існуе нязьменная бачына з адрасам «%(url)s»"
|
||||
|
||||
msgid "title"
|
||||
msgstr "назва"
|
||||
|
||||
msgid "content"
|
||||
msgstr "зьмесьціва"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "дазволіць выказваньні"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "назва шаблёну"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Прыклад: «flatpages/contact_page.html». Калі не пазначаць нічога, сыстэма "
|
||||
"будзе ўжываць «flatpages/default.html»."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "трэба запісацца"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Калі абраць гэта, бачыну змогуць пабачыць толькі тыя карыстальнікі, што "
|
||||
"апазналіся."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "сайты"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "нязьменная бачына"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "нязьменныя бачыны"
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Venelin Stoykov <[email protected]>, 2016
|
||||
# vestimir <[email protected]>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Venelin Stoykov <[email protected]>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Допълнителни опции"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Информативни страници"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Пример: '/about/contact/'. Началната и крайната наклонена чертичка са "
|
||||
"задължителни. "
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Тази стойност трябва да съдържа само букви, цифри, точки, долни тирета, "
|
||||
"наклонени черти или tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL липсва водеща черта."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL липсва наклонена черта."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Flatpage с url %(url)s вече съществува за site %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "заглавие"
|
||||
|
||||
msgid "content"
|
||||
msgstr "съдържание"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "позволяване на коментари"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "име на шаблон"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Пример: 'flatpages/contact_page.html'. Ако това не е указано, системата ще "
|
||||
"използва 'flatpages/default.html'. "
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "изисква се регистрация"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Ако това е чекнато, само логнати потребители ще могат да виждат страницата. "
|
||||
|
||||
msgid "sites"
|
||||
msgstr "сайтове"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "информативна страница"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "информативни страници"
|
||||
BIN
Binary file not shown.
+83
@@ -0,0 +1,83 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Tahmid Rafi <[email protected]>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Bengali (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "এডভান্সড অপশন"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "ফ্ল্যাট পেজ"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "ইউআরএল (URL)"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr "উদাহরণঃ '/about/contact/'। শুরু এবং শেষের স্ল্যাশগুলো আবশ্যক।"
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"এই মানটিতে শুধুমাত্র বর্ণ, অঙ্ক, পিরিয়ড, আন্ডারস্কোর, ড্যাশ, স্ল্যাশ অথবা টিল্ড "
|
||||
"ক্যারেক্টার থাকতে পারবে।"
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "ইউআরএল টির শুরুর স্ল্যাশ চিহ্নটি দেওয়া হয় নি।"
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "ইউআরএল টির শেষের স্ল্যাশ চিহ্নটি দেওয়া হয় নি।"
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "%(site)s সাইটের জন্য %(url)s ইউআরএল এর ফ্ল্যাটপেজ আগেই তৈরী করা হয়েছ।"
|
||||
|
||||
msgid "title"
|
||||
msgstr "শিরোনাম"
|
||||
|
||||
msgid "content"
|
||||
msgstr "কনটেন্ট"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "মন্তব্য প্রদান সচল করুন"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "টেমপ্লেট নাম"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"উদাহরণঃ ’flatpage/contact_page.html'। এটি যদি খালি থাকে, তবে সিস্টেম "
|
||||
"’flatpage/default.html' ব্যবহার করবে।"
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "নিবন্ধন আবশ্যক"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "এটি চেক করা হলে, শুধুমাত্র লগইন করা সদস্যরা পাতাটি দেখতে সমর্থ হবেন।"
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "ফ্লাট পাতা"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "ফ্লাট পাতা সমূহ"
|
||||
BIN
Binary file not shown.
+77
@@ -0,0 +1,77 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Fulup <[email protected]>, 2012
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Breton (http://www.transifex.com/django/django/language/br/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: br\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr "titl"
|
||||
|
||||
msgid "content"
|
||||
msgstr "danvez"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Filip Dupanović <[email protected]>, 2011
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/django/django/language/"
|
||||
"bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bs\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 "Advanced options"
|
||||
msgstr "Napredna podešavanja"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Primjer: '/about/contact/'. Pazite na to da postoje i početne i završne kose "
|
||||
"crte."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Ova vrijednost smije samo sadržati slova, brijeve, tačke, donje crte, crte, "
|
||||
"kose crte i tilde."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr "naslov"
|
||||
|
||||
msgid "content"
|
||||
msgstr "sadržaj"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "omogući komentare"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "naziv obrazca"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Primjer: 'flatpages/contact_page.html'. Ako ovo ostavite praznim, sistem će "
|
||||
"koristiti 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registracija obavezna"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Ako je ovo obilježeno, samo će prijavljeni korisnici moći da vide ovu "
|
||||
"stranicu."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "statična stranica"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "statične stranice"
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Antoni Aloy <[email protected]>, 2011
|
||||
# Carles Barrobés <[email protected]>, 2012,2014
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Roger Pons <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Roger Pons <[email protected]>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Opcions avançades"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Pàgines Estàtiques"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Exemple: '/about/contact/'. Assegureu-vos de posar les barres al principi i "
|
||||
"al final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Aquest valor sols pot contenir lletres, nombres, punts, subratllats, guions, "
|
||||
"barres o accents."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "La URL no comença amb \"/\"."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "La URL no acaba amb \"/\"."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Ja hi ha una pàgina estàtica amb la URL %(url)s per al lloc %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "títol"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contingut"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "habilitar comentaris"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nom de la plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Exemple: 'flatpages/contact_page.html'. Si no es proporciona, el sistema "
|
||||
"utilitzarà 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "cal estar registrat"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si està marcat, només els usuaris registrats podran veure la pàgina."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "llocs"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "pàgina estàtica"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "pàgines estàtiques"
|
||||
BIN
Binary file not shown.
+84
@@ -0,0 +1,84 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Vláďa Macek <[email protected]>, 2011-2012,2014
|
||||
# Vláďa Macek <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Vláďa Macek <[email protected]>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/django/django/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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Pokročilá nastavení"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Statické stránky"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Příklad: \"/o/kontakt/\". Ujistěte se, že máte počáteční a konečná lomítka."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Tato hodnota musí obsahovat pouze písmena, číslice, tečky, podtržítka, "
|
||||
"pomlčky, lomítka nebo vlnovky."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "V adrese URL chybí úvodní lomítko."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "V adrese URL chybí koncové lomítko."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Flat stránka s adresou %(url)s pro web %(site)s již existuje."
|
||||
|
||||
msgid "title"
|
||||
msgstr "titulek"
|
||||
|
||||
msgid "content"
|
||||
msgstr "obsah"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "povolit komentáře"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "název šablony"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Příklad: \"flatpages/kontaktni_stranka.html\". Pokud toto není zadáno, bude "
|
||||
"použita šablona \"flatpages/default.html\"."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "nutná registrace"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Určuje, že tuto stránku uvidí pouze přihlášení uživatelé."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "weby"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "statická stránka"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "statické stránky"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Maredudd ap Gwyndaf <[email protected]>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Opsiynau uwch"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Tudalennau Fflat"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Enghraifft: '/amdanom/cyswllt/'. Sicrhewch fod gennych slaesau ar y dechrau "
|
||||
"a'r diwedd."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Gall y gwerth hwn ond gynnwys llythrennau, rhifau, dotiau, tanlinellau, "
|
||||
"llinellau doriad, slaesau neu tildeau."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Mae'r slaes ar goll ar ddechrau'r URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Mae slaes ar goll ar ddiwedd yr URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
"Mae flatpage gyda'r url %(url)s yn bodoli yn barod am y safle %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "teitl"
|
||||
|
||||
msgid "content"
|
||||
msgstr "cynnwys"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "galluogi sylwadau"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "enw'r templed"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Enghraifft: 'flatpages/tudalen_cyswllt.html'. Os na ddarparir hyn, bydd y "
|
||||
"system yn defnyddio 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "cofrestriad gofynnol"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Os ticir hwn, dim ond defnyddwyr sydd wedi mewngofnodi bydd yn gallu gweld y "
|
||||
"dudalen."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "tudalen fflat"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "tudalennau fflat"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Christian Joergensen <[email protected]>, 2012
|
||||
# Erik Wognsen <[email protected]>, 2012,2014-2015
|
||||
# Finn Gruwier Larsen, 2011
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Erik Wognsen <[email protected]>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Avancerede muligheder"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Flade sider"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Eksempel: '/om/kontakt/'. Vær opmærksom på, at der skal være skråstreg både "
|
||||
"først og sidst."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Denne værdi må kun indeholde bogstaver, tal, punktum, understreger, "
|
||||
"bindestreger, skråstreger eller tilder."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL mangler en skråstreg i starten."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL mangler en afsluttende skråstreg."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "En flad side med URL'en %(url)s eksisterer allerede for siden %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titel"
|
||||
|
||||
msgid "content"
|
||||
msgstr "indhold"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "tillad kommentarer"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "skabelonnavn"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Eksempel: 'flatpages/kontaktside'. Hvis dette ikke tilbydes, bruger systemet "
|
||||
"'flatpages/default'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registrering påkrævet"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Hvis denne boks er markeret, vil kun brugere der er logget ind, kunne se "
|
||||
"siden."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "websider"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "flad side"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "flade sider"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# André Hagenbruch, 2012
|
||||
# Jannis Leidel <[email protected]>, 2011,2013-2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Markus Holtermann <[email protected]>\n"
|
||||
"Language-Team: German (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Erweiterte Optionen"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Flat Pages"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "Adresse (URL)"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Beispiel: „/about/contact/“. Wichtig: Am Anfang und Ende muss ein / stehen."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Dieser Wert darf nur Buchstaben, Ziffern, Punkte, Unterstriche, "
|
||||
"Bindestriche, Schrägstriche und Tilden enthalten."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Der URL fehlt ein vorangestellter Schrägstrich."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Der URL fehlt ein abschließender Schrägstrich."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
"Flatpage mit der URL %(url)s ist für die Website %(site)s bereits vorhanden"
|
||||
|
||||
msgid "title"
|
||||
msgstr "Titel"
|
||||
|
||||
msgid "content"
|
||||
msgstr "Inhalt"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "Kommentare aktivieren"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "Name des Templates"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Beispiel: „flatpages/contact_page.html“. Wenn dieses Feld nicht gesetzt ist, "
|
||||
"wird standardmäßig „flatpages/default.html“ benutzt."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "Registrierung erforderlich"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Wenn hier ein Haken gesetzt ist, können nur angemeldete Benutzer die Seite "
|
||||
"sehen."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "Websites"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "Flat Page"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "Flat Pages"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Michael Wolf <[email protected]>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 00:02+0000\n"
|
||||
"Last-Translator: Michael Wolf <[email protected]>\n"
|
||||
"Language-Team: Lower Sorbian (http://www.transifex.com/django/django/"
|
||||
"language/dsb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: dsb\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Rozšyrjone nastajenja"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Statiske boki"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Pśikład: '/about/contact/'. Pśeznańśo se, až sćo wócynjajucu a zacynjajucu "
|
||||
"nakósnu smužku pódał."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Toś ta gódnota smějo jano pismiki, licby, dypki, pódsmužki, , wězawki, "
|
||||
"nakósne smužki abo tildy wopśimowaś."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL njama wócynjajucu nakósnu smužku."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL njama zacynjajucu nakósnu smužku."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Statiski bok z url %(url)s južo eksistěrujo za sedło %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titel"
|
||||
|
||||
msgid "content"
|
||||
msgstr "wopśimjeśe"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "komentary zmóžniś"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "mě pśedłogi"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Pśikład: 'flatpages/contact_page.html'. Jolic to njejo pódane, buźo system "
|
||||
"'flatpages/default.html' wužywaś."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registrěrowanje trěbne"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Jolic to jo zmóžnjone, mógu se jano pśizjawjone wužywarje bok woglědaś."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sedła"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "statiski bok"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "statiske boki"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Dimitris Glezos <[email protected]>, 2011
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Pãnoș <[email protected]>, 2014
|
||||
# Pãnoș <[email protected]>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Pãnoș <[email protected]>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Προχωρημένες επιλογές"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Απλές Σελίδες"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Παράδειγμα: '/about/contact/'. Βεβαιωθείτε ότι περιέχει καθέτους στην αρχή "
|
||||
"και το τέλος."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Η τιμή αυτή πρέπει να περιέχει μόνο γράμματα, αριθμούς, τελείες, παύλες, "
|
||||
"κάτω παύλες, καθέτους ή περισπωμένες."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Λείπει μια αρχική κάθετος από την διεύθυνση."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Λείπει μια τελική κάθετος από τη διεύθυνση."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
"Υπάρχει ήδη Απλή σελίδα με διεύθυνση %(url)s για την ιστοσελίδα %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "τίτλος"
|
||||
|
||||
msgid "content"
|
||||
msgstr "περιεχόμενο"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "ενεργοποίηση σχολίων"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "όνομα περιγράμματος"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Παράδειγμα: 'flatpages/contact_page.html'. Αν δεν δηλωθεί, το σύστημα θα "
|
||||
"χρησιμοποιήσει το 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "απαιτείται εγγραφή"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Εάν επιλεγεί, μόνο συνδεδεμένοι χρήστες θα μπορούν να βλέπουν τη σελίδα."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "ιστότοποι"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "απλή σελίδα"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "απλές σελίδες"
|
||||
BIN
Binary file not shown.
+92
@@ -0,0 +1,92 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2010-05-13 15:35+0200\n"
|
||||
"Last-Translator: Django team\n"
|
||||
"Language-Team: English <[email protected]>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: contrib/flatpages/admin.py:12
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/apps.py:7
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:8 contrib/flatpages/models.py:12
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:9
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:12
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:25
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:32
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/forms.py:49
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:13
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:14
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:15
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:16
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:18
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:22
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:23
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:25
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:29
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
#: contrib/flatpages/models.py:30
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+74
@@ -0,0 +1,74 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-03-18 09:16+0100\n"
|
||||
"PO-Revision-Date: 2015-03-18 08:34+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/projects/p/"
|
||||
"django/language/en_AU/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: en_AU\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+85
@@ -0,0 +1,85 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# jon_atkinson <[email protected]>, 2012
|
||||
# Ross Poulton <[email protected]>, 2011-2012
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/django/"
|
||||
"django/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Advanced options"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL is missing a leading slash."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL is missing a trailing slash."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "title"
|
||||
|
||||
msgid "content"
|
||||
msgstr "content"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "enable comments"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "template name"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registration required"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"If this is checked, only logged-in users will be able to view the page."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "flat page"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "flat pages"
|
||||
BIN
Binary file not shown.
+85
@@ -0,0 +1,85 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Baptiste Darthenay <[email protected]>, 2011-2012
|
||||
# Baptiste Darthenay <[email protected]>, 2014-2015,2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Baptiste Darthenay <[email protected]>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/django/django/language/"
|
||||
"eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Altnivelaj elektoj"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Simplaj paĝoj"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ekzemplo: '/pri/kontakto/'. Certigu, ke estas kondukaj kaj sekvaj strekoj."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Ĉi tiu valoro devus enhavi sole leterojn, nombrojn, punktojn, substrekoj, "
|
||||
"haltostrekoj, oblikvoj aŭ tildoj."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "La streka karaktero \"/\" ne ĉeestas en komenco de ĉeno."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "La streka karaktero \"/\" ne ĉeestas en fino de ĉeno."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Simpla paĝo kun URL %(url)s jam ekzistas por la retejo %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titolo"
|
||||
|
||||
msgid "content"
|
||||
msgstr "enhavo"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "ebligu rimarkoj"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "ŝablono nomo"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ekzemplo: 'flatpages/contact_page.html'. Se ĉi tiu ne provizas, la sistemo "
|
||||
"uzos 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registrado postulita"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Se ĉi tio estus elektita, nur ensalutitaj uzantoj povus rigardi la paĝon."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "retejoj"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "simpla paĝo"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "simplaj paĝoj"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Antoni Aloy <[email protected]>, 2011-2012
|
||||
# Ernesto Avilés Vázquez <[email protected]>, 2015
|
||||
# Ernesto Avilés Vázquez <[email protected]>, 2014
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Veronicabh <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Ernesto Avilés Vázquez <[email protected]>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/django/django/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=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Páginas estáticas"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ejemplo: '/about/contact/'. Asegúrese de que pone barras al principio y al "
|
||||
"final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor solo puede contener letras, números, puntos, guiones bajos o "
|
||||
"medios, barras o tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "A la URL le falta la barra inicial."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "A la URL le falta la barra final."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr " En el sitio %(site)s ya hay un Flatpage con la url %(url)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "habilitar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nombre de plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ejemplo: 'flatpages/contact_page.html'. Si no se proporciona uno, el sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "debe estar registrado"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si está marcado, sólo los usuarios registrados podrán ver la página."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sitios"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "página estática"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páginas estáticas"
|
||||
BIN
Binary file not shown.
+85
@@ -0,0 +1,85 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Ramiro Morales, 2011-2012,2014-2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Ramiro Morales\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/django/django/"
|
||||
"language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Páginas Estáticas"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ejemplo: '/about/contact/'. Asegúrese de usar barras '/' al principio y al "
|
||||
"final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor debe contener solamente letras, números, puntos, guiones bajos, "
|
||||
"guiones (-), barras (/) o tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "A la URL le falta una / al principio."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "A la URL le falta una / al final."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Ya existe una flatpage con url %(url)s para el sitio %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "activar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nombre de plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ejemplo: 'flatpages/contact_page.html'. Si no lo proporciona, el sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "debe estar registrado"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si está marcado, sólo los usuarios registrados podrán ver la página."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sitios"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "página estática"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páginas estáticas"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Ernesto Avilés Vázquez <[email protected]>, 2014-2015
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Veronicabh <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-20 03:01+0000\n"
|
||||
"Last-Translator: Carlos Muñoz <[email protected]>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/django/django/"
|
||||
"language/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Páginas estáticas"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ejemplo: '/about/contact/'. Asegúrese de que pone barras al principio y al "
|
||||
"final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor solo puede contener letras, números, puntos, guiones bajos o "
|
||||
"medios, barras o tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "A la URL le falta la barra inicial."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "A la URL le falta la barra final."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr " En el sitio %(site)s ya hay un Flatpage con la url %(url)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "habilitar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nombre de plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ejemplo: 'flatpages/contact_page.html'. Si no se proporciona uno, el sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "debe estar registrado"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si está marcado, sólo los usuarios registrados podrán ver la página."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sitios"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "página estática"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páginas estáticas"
|
||||
BIN
Binary file not shown.
+84
@@ -0,0 +1,84 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Abraham Estrada, 2011-2012
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/django/django/"
|
||||
"language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ejemplo: '/acerca/contacto/'. Asegúrese de usar barras '/' al principio y al "
|
||||
"final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor debe contener solamente letras, números, puntos, guiones bajos, "
|
||||
"guiones (-), barras (/) o tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "A la URL le falta una diagonal al inicio"
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "A la URL le falta una diagonal al final"
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "La página con la url %(url)s ya existe para el sitio %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "activar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nombre de la plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ejemplo: 'flatpages/pagina_contacto.html'. Si no lo proporciona, el sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "necesario registrarse"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si está marcado, sólo los usuarios registrados podrán ver la página."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "página estática"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páginas estática"
|
||||
BIN
Binary file not shown.
+85
@@ -0,0 +1,85 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Leonardo J. Caballero G. <[email protected]>, 2016
|
||||
# Leonardo J. Caballero G. <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Leonardo J. Caballero G. <[email protected]>\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/django/django/"
|
||||
"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=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opciones avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Páginas estáticas"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "Dirección URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Ejemplo: '/about/contact/'. Asegúrese de que pone barras al principio y al "
|
||||
"final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor solo puede contener letras, números, puntos, guiones bajos o "
|
||||
"medios, barras o tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "A la URL le falta la barra inicial."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "A la URL le falta la barra final."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "La página estática con la url %(url)s ya existe para el sitio %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "permitir comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nombre de la plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ejemplo: 'flatpages/contact_page.html'. Si no se proporciona uno, el sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "es necesario registrarse"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Si está marcado, sólo los usuarios registrados podrán ver la página."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sitios"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "página estática"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páginas estáticas"
|
||||
BIN
Binary file not shown.
+85
@@ -0,0 +1,85 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Janno Liivak <[email protected]>, 2013-2015
|
||||
# madisvain <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Janno Liivak <[email protected]>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Lisavalikud"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Sisulehed"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Näide: '/about/contact/'. Veenduge, et URL algaks ja lõppeks kaldkriipsuga."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"See väärtus peab sisaldama ainult tähti, numbreid, punkte, alakriipse, "
|
||||
"kriipse, kaldkriipse või tildeseid."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Internetiaadressil puudub alustav kaldkriips"
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Internetiaadressil puudub lõpetav kaldkriips"
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Saidil %(site)s on sisuleht aadressiga %(url)s juba olemas"
|
||||
|
||||
msgid "title"
|
||||
msgstr "pealkiri"
|
||||
|
||||
msgid "content"
|
||||
msgstr "sisu"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "võimalda kommentaarid"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "mall"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Näide: 'flatpages/contact_page.html'. Kui mall on määramata, kasutatakse "
|
||||
"vaikimisi malli 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registreerumine nõutav"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Kui see on valitud, näevad lehte ainult sisselogitud kasutajad"
|
||||
|
||||
msgid "sites"
|
||||
msgstr "saidid"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "sisuleht"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "sisulehed"
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Aitzol Naberan <[email protected]>, 2011-2012
|
||||
# Eneko Illarramendi <[email protected]>, 2017
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Eneko Illarramendi <[email protected]>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/django/django/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Aukera aurreratuak"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Flatpage-ak"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Adibidez: '/about/contact/'. Ziurta zaitez '/' karaktera hasieran eta "
|
||||
"bukaeran dagoela."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Eremu honetan soilik hizki, zenbaki, puntu, azpimarra, marra, / edo ~ egon "
|
||||
"daitezke."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URLak hasierako / falta du."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URLk bukaerako / falta du."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "%(site)s webgunean dagoeneko existitzende %(url)s urldun Flatpage bat"
|
||||
|
||||
msgid "title"
|
||||
msgstr "izenburua"
|
||||
|
||||
msgid "content"
|
||||
msgstr "edukia"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "komentarioak onartu"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "plantila izena"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Adibidez: 'flatpages/contact_page.html'. Hau zehazten ez bada, sistemak "
|
||||
"'flatpages/default.html' erabiliko du."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "erregistratzea beharrezkoa da"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Hau markatuta badago, erregistratutako erabiltzaileek bakarrik ikusiko dute "
|
||||
"orria."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "webguneak"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "flat page"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "flat pages"
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Ali Nikneshan <[email protected]>, 2011-2012
|
||||
# Ali Vakilzade <[email protected]>, 2015
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Reza Mohammadi <[email protected]>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Mohammad Hossein Mojtahedi <[email protected]>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/django/django/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=1; plural=0;\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "گزینههای پیشرفته"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "صفحات تخت"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "نشانی اینترنتی"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"مثال: '/about/contact/'. مطمئن شوید که اسلش را هم در ابتدا و هم در انتها "
|
||||
"گذاشتهاید."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr "این مقدار فقط باید حاوی حروف، اعداد، خط زیر، خط تیره و یا اسلش باشد."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "در آدرس اسلش آغازین فراموش شده است."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "در آدرس اسلش پایانی فراموش شده است."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "صفحه تخت با آدرس %(url)s برای سایت %(site)s وجود دارد "
|
||||
|
||||
msgid "title"
|
||||
msgstr "عنوان"
|
||||
|
||||
msgid "content"
|
||||
msgstr "محتوا"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "فعال کردن نظرات"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "نام قالب"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"مثال: 'flatpages/contact_page.html'. اگر این مشخص نشود، سیستم از 'flatpages/"
|
||||
"default.html' استفاده خواهد کرد."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "عضویت لازم است"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"اگر این انتخاب شود، فقط کاربران وارد شده خواهند توانست این صفحه را مشاهده "
|
||||
"نمایند."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "وبگاهها"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "صفحه تخت"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "صفحات تخت"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Aarni Koskela, 2015
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Klaus Dahlén <[email protected]>, 2012
|
||||
# Ville Säävuori <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Aarni Koskela\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Lisäasetukset"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Tekstisivut"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL-osoite"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Esimerkki: '/tietoja/yhteystiedot/'. Varmista, että sekä alussa että lopussa "
|
||||
"on kauttaviiva."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Tämä arvo saa sisältää vain kirjaimia, numeroita, pisteitä sekä ala-, tavu-, "
|
||||
"kautta- ja aaltoviivoja."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL:n alusta puuttuu kauttaviiva."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL:n lopusta puuttuu kauttaviiva."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Sivustolla %(site)s on jo sivu, jonka URL on %(url)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "otsikko"
|
||||
|
||||
msgid "content"
|
||||
msgstr "sisältö"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "salli kommentit"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "mallipohjan nimi"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Esimerkiksi: 'flatpages/yhteydenotto.html'. Jos tämä jätetään tyhjäksi, "
|
||||
"käytetään oletuspohjaa 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "vaaditaan rekisteröityminen"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Jos tämä kohta on valittu, vain sisäänkirjautuneet käyttäjät näkevät sivun."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sivustot"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "tekstisivu"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "tekstisivut"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# charettes <[email protected]>, 2012
|
||||
# Claude Paroz <[email protected]>, 2014-2015
|
||||
# Claude Paroz <[email protected]>, 2011
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Claude Paroz <[email protected]>\n"
|
||||
"Language-Team: French (http://www.transifex.com/django/django/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=2; plural=(n > 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Options avancées"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Pages statiques"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Par exemple, « /a_propos/contact/ ». Vérifiez la présence du caractère « / » "
|
||||
"en début et en fin de chaîne."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Cette valeur ne peut contenir que des lettres, des chiffres, des points, des "
|
||||
"soulignés, des tirets, des barres obliques ou des tildes."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Le caractère « / » n'est pas présent en début de chaîne."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Le caractère « / » n'est pas présent en fin de chaîne."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "La page statique à l'URL %(url)s existe déjà pour le site %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titre"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contenu"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "autoriser les commentaires"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nom du template"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Par exemple, « flatpages/contact_page.html ». Sans définition, le système "
|
||||
"utilisera « flatpages/default.html »."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "enregistrement requis"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Si coché, seuls les utilisateurs connectés auront la possibilité de voir "
|
||||
"cette page."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sites"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "page statique"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "pages statiques"
|
||||
BIN
Binary file not shown.
+74
@@ -0,0 +1,74 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-03-18 09:16+0100\n"
|
||||
"PO-Revision-Date: 2015-03-18 08:34+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Western Frisian (http://www.transifex.com/projects/p/django/"
|
||||
"language/fy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+87
@@ -0,0 +1,87 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Michael Thornhill <[email protected]>, 2011-2012,2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Irish (http://www.transifex.com/django/django/language/ga/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ga\n"
|
||||
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
|
||||
"4);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Ard-rogha"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Leathanaigh Maol"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Sampla '/about/contact/' Déan cinnte go bhfuil príomhslaid agus cúlslais "
|
||||
"agat."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Ní mór an luach a bhfuil ach litreacha, uimhreacha, poncanna, béim, dashes, "
|
||||
"slaiseanna nó thilde."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Tá slais tosaigh in easnamh ag an URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Tá slais deireanach in easnamh ag an URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Tá flatpage le url %(url)s ann cheana le suíomh %(site)s."
|
||||
|
||||
msgid "title"
|
||||
msgstr "teideal"
|
||||
|
||||
msgid "content"
|
||||
msgstr "inneachar"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "Cuir nótaí tráchta ar chumas"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "ainm an teimpléid"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Sampla: 'flatpages/contact_page.html'. Muna bhfuil sé ar soláthair, bainfidh "
|
||||
"an córás úsáid as 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "clárúchán riachtanach"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Dá mbéadh é seo seicailte, ní beidh ach úsáideora logáilte isteach in ann an "
|
||||
"leathanach seo a fheiceail"
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "leacleathanach"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "leacleathanaigh"
|
||||
BIN
Binary file not shown.
+89
@@ -0,0 +1,89 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# GunChleoc, 2015
|
||||
# GunChleoc, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-22 17:29+0000\n"
|
||||
"Last-Translator: GunChleoc\n"
|
||||
"Language-Team: Gaelic, Scottish (http://www.transifex.com/django/django/"
|
||||
"language/gd/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gd\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : "
|
||||
"(n > 2 && n < 20) ? 2 : 3;\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Roghainnean adhartach"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Duilleagan rèidhe"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Mar eisimpleir: “/mu-dheidhinn/fios-thugainn/”. Dèan cinnteach gum bi slais "
|
||||
"air an toiseach ’s air an deireadh."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Chan fhaod ach litrichean, àireamhan, puingean, fo-loidhnichean, tàthanan, "
|
||||
"slaisichean is tuinn a bhith san luach."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Tha slais a dhìth air thoiseach an URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Tha slais a dhìth air deireadh an URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
"Tha duilleag rèidh le url %(url)s ann mar-tà airson na làraich %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "tiotal"
|
||||
|
||||
msgid "content"
|
||||
msgstr "susbaint"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "cuir beachdan an comas"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "ainm na teamplaid"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Ball-eisimpleir: “flatpages/duilleag_fios_thugainn.html”. Mura dèid seo a "
|
||||
"sholar-cleachdaidh an siostam “flatpages/default.html”."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "tha clàradh riatanach"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Ma tha cromag ris, chan faic ach na chleachdaichean a chlàraich a-steach an "
|
||||
"duilleag seo."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "làraichean"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "duilleag rèidh"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "duilleagan rèidhe"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# fasouto <[email protected]>, 2011
|
||||
# fonso <[email protected]>, 2011,2013
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Leandro Regueiro <[email protected]>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "Opcións avanzadas"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Exemplo: '/about/contact/'. Lembre incluír as barras ao principio e ao final."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Este valor soamente pode conter letras, números, puntos, guións baixos, "
|
||||
"guións, barras inclinadas e tiles do eñe (~)."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Falta unha barra inclinada no principio da URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Falta unha barra inclinada no final da URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Xa existe unha páxina simple con url %(url)s no sitio %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
msgid "content"
|
||||
msgstr "contido"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "activar comentarios"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nome da plantilla"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Exemplo: 'flatpages/contact_page.html'. Se non se especifica, o sistema "
|
||||
"usará 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "require rexistro"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Se se marca, só poderán ver a páxina os usuarios identificados."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "páxina simple"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "páxinas simples"
|
||||
BIN
Binary file not shown.
+84
@@ -0,0 +1,84 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Alex Gaynor <[email protected]>, 2011
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Meir Kriheli <[email protected]>, 2012,2014-2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Meir Kriheli <[email protected]>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/django/django/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "אפשרויות מתקדמות"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "דפים פשוטים"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"לדוגמא: '/about/contact/'. יש לוודא הימצאות הקווים הנטויים בהתחלה ובסוף."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"הערך הזאת חייב להכיל רק אותיות, מספרים, נקודות, מקפים, קווים תחתונים, חתכים "
|
||||
"או סימני טילדה בלבד."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "חסר קו נטוי בתחילת URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "חסר קו נטוי בסוף URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "קיים כבר דף פשוט עם url %(url)s עבור אתר %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "כותרת"
|
||||
|
||||
msgid "content"
|
||||
msgstr "תוכן"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "אפשר תגובות"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "שם תבנית"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"דוגמא: 'flatpages/contact_page.html'. אם לא צויין, המערכת תשתמש ב-'flatpages/"
|
||||
"default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "הרשמה נדרשת"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "אם מסומן, רק משתמשים מחוברים יוכלו לצפות בדף."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "אתרים"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "דף פשוט"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "דפים פשוטים"
|
||||
BIN
Binary file not shown.
+81
@@ -0,0 +1,81 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Chandan kumar <[email protected]>, 2012
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Sandeep Satavlekar <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "उन्नत विकल्प"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr "अग्रणी है और अनुगामी स्लैश का होना सुनिश्चित करें. उदाहरण: '/about/contact/'"
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr "इस मूल्य में सिर्फ वर्णाक्षर, अंक, बिंदु, रेखांकन, डैश, स्लैश और टिल्ड्स ही होने चाहिए"
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "यूआरएल से प्रमुख स्लैश गायब है."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "यूआरएल से अनुगामी स्लैश गायब है."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "%(site)s साइट के लिए %(url)s यूआरएल के साथ चपटापृष्ट मौजूद है."
|
||||
|
||||
msgid "title"
|
||||
msgstr "शीर्षक"
|
||||
|
||||
msgid "content"
|
||||
msgstr "विषय सूची"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "टिप्पणियां सक्षम करें"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "सांचे का नाम"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"उदाहरण: 'flatpages/contact_page.html'. यदि यह जिक्र नहीं किया तो यह प्रणाली "
|
||||
"'flatpages/default.html' का प्रयोग करेगी. ."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "पंजीकरण आवश्यक"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "अगर इस जाँच की है, केवल लॉग इन करने वालों के लिए पृष्ठ देखने में सक्षम हो जाएगा."
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "चपटा पृष्ट"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "चपटे पृष्ट"
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# aljosa <[email protected]>, 2011-2012
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Mislav Cimperšak <[email protected]>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Mislav Cimperšak <[email protected]>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/django/django/language/"
|
||||
"hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: 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 "Advanced options"
|
||||
msgstr "Napredne opcije"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Statične stranice"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Primjer: '/about/contact/'. Provjerite ako imate prvi i preostale slash-eve "
|
||||
"(/)."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Ova vrijednost može sadržavati samo slova, brojeve, točke, podvlake, crtice, "
|
||||
"kose crte ili tilde."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL-u nedostaje početni /."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL-u nedostaje / na kraju."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Stranica sa URL-om %(url)s već postoji za web %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "naslov"
|
||||
|
||||
msgid "content"
|
||||
msgstr "sadržaj"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "uključi komentare"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "ime template-a"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Primjer: 'flatpages/contact_page.html'. Ako navedeno nije definirano sistem "
|
||||
"će koristiti 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registracija obavezna"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Ako je ovo selektirano samo logirani korisnici moći će vidjeti ovu stranicu."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "stranice"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "statična stranica"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "statične stranice"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Michael Wolf <[email protected]>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 00:02+0000\n"
|
||||
"Last-Translator: Michael Wolf <[email protected]>\n"
|
||||
"Language-Team: Upper Sorbian (http://www.transifex.com/django/django/"
|
||||
"language/hsb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hsb\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Rozšěrjene nastajenja"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Statiske strony"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Přikład: '/about/contact/'. Přeswědčće so, zo sće wočinjace a začinjace "
|
||||
"nakósne smužki podał."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Tuta hódnota smě jenož pismiki, ličby, dypki, podsmužki, wjazawki, nakósne "
|
||||
"smužki abo tildy wobsahować."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "URL wočinjacu nakósnu smužku nima."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "URL začinjacu nakósnu smužku nima."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Statiska strona z url %(url)s hižo za sydło %(site)s eksistuje"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titul"
|
||||
|
||||
msgid "content"
|
||||
msgstr "wobsah"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "komentary zmóžnić"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "mjeno předłohi"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Přikład: 'flatpages/contact_page.html'. Jeli to njeje podate, budźe system "
|
||||
"'flatpages/default.html' wužiwać."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "registrowanje trěbne"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Jeli to je zmóžnjene, móža sej jenož přizjewjeni wužiwarjo stronu wobhladać."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "sydła"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "statiska strona"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "statiske strony"
|
||||
BIN
Binary file not shown.
+86
@@ -0,0 +1,86 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# András Veres-Szentkirályi, 2016
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Szilveszter Farkas <[email protected]>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: János R (Hangya)\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/django/django/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 "Advanced options"
|
||||
msgstr "További beállítások"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Egyszerű oldalak"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr "Például: '/about/contact/'. Figyeljen a nyitó és záró perjelre!"
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Ez az érték csak betűt, számot, pontot, aláhúzást, kötőjelet, perjelet, vagy "
|
||||
"hullámot tartalmazhat."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "AZ URL-ből hiányzik a kezdő perjel."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "AZ URL-ből hiányzik a záró perjel."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "%(site)s honlapon már létezik egyszerű oldal ezzel az URL-lel: %(url)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "cím"
|
||||
|
||||
msgid "content"
|
||||
msgstr "tartalom"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "megjegyzések engedélyezése"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "sablon neve"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Példa: 'flatpages/contact_page'. Ha ez nem létezik, a rendszer a 'flatpages/"
|
||||
"default.html' sablont fogja használni."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "regisztráció szükséges"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Ha ez be van jelölve, csak bejelentkezett felhasználó tudja az oldalt "
|
||||
"megnézni."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "honlapok"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "egyszerű oldal"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "egyszerű oldalak"
|
||||
BIN
Binary file not shown.
+77
@@ -0,0 +1,77 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Interlingua (http://www.transifex.com/django/django/language/"
|
||||
"ia/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+88
@@ -0,0 +1,88 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Fery Setiawan <[email protected]>, 2015-2016
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# rodin <[email protected]>, 2011-2012
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
||||
"Last-Translator: rodin <[email protected]>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/django/django/language/"
|
||||
"id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Opsi lanjutan"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Halaman Tetap"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
"Contoh: '/about/contact/'. Pastikan dimulai dan diakhiri dengan garis miring "
|
||||
"(/)."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Nilai hanya hanya dapat berisi huruf, angka, titik, garis bawah, tanda "
|
||||
"minus, garis miring, atau tanda tilde."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Tidak ada garis miring awal pada URL."
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Tidak ada garis miring akhir pada URL."
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "Laman tetap %(url)s sudah ada untuk situs %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "judul"
|
||||
|
||||
msgid "content"
|
||||
msgstr "isi"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "aktifkan komentar"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nama templat"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Contoh: 'flatpages/contact_page.html'. Jika tidak tersedia, sistem akan "
|
||||
"menggunakan 'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "pendaftaran diwajibkan"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
"Jika dipilih, hanya pengguna ter-otentikasi yang bisa mengunjungi halaman "
|
||||
"ini."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "situs"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "laman tetap"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "laman tetap"
|
||||
BIN
Binary file not shown.
+74
@@ -0,0 +1,74 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-03-18 09:16+0100\n"
|
||||
"PO-Revision-Date: 2015-03-18 08:34+0000\n"
|
||||
"Last-Translator: Jannis Leidel <[email protected]>\n"
|
||||
"Language-Team: Ido (http://www.transifex.com/projects/p/django/language/"
|
||||
"io/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: io\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr ""
|
||||
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr ""
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr ""
|
||||
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr ""
|
||||
|
||||
msgid "template name"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
|
||||
msgid "registration required"
|
||||
msgstr ""
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr ""
|
||||
|
||||
msgid "flat page"
|
||||
msgstr ""
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr ""
|
||||
BIN
Binary file not shown.
+84
@@ -0,0 +1,84 @@
|
||||
# This file is distributed under the same license as the Django package.
|
||||
#
|
||||
# Translators:
|
||||
# Hafsteinn Einarsson <[email protected]>, 2011-2012
|
||||
# Jannis Leidel <[email protected]>, 2011
|
||||
# Thordur Sigurdsson <[email protected]>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: django\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
||||
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
||||
"Last-Translator: Thordur Sigurdsson <[email protected]>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/django/django/language/"
|
||||
"is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
msgid "Advanced options"
|
||||
msgstr "Ítarlegar stillingar"
|
||||
|
||||
msgid "Flat Pages"
|
||||
msgstr "Flatskrár"
|
||||
|
||||
msgid "URL"
|
||||
msgstr "Veffang"
|
||||
|
||||
msgid ""
|
||||
"Example: '/about/contact/'. Make sure to have leading and trailing slashes."
|
||||
msgstr "Dæmi: '/about/contact/'. Passaðu að hafa skástrik fremst og aftast."
|
||||
|
||||
msgid ""
|
||||
"This value must contain only letters, numbers, dots, underscores, dashes, "
|
||||
"slashes or tildes."
|
||||
msgstr ""
|
||||
"Þessi reitur má aðeins innihalda bókstafi (ekki broddstafi), tölustafi og "
|
||||
"táknin . / - _ og ~."
|
||||
|
||||
msgid "URL is missing a leading slash."
|
||||
msgstr "Skástrik vantar fremst í slóð"
|
||||
|
||||
msgid "URL is missing a trailing slash."
|
||||
msgstr "Skástrik vantar aftast í slóð"
|
||||
|
||||
#, python-format
|
||||
msgid "Flatpage with url %(url)s already exists for site %(site)s"
|
||||
msgstr "'Flatpage' með slóðina %(url)s er þegar til fyrir síðuna %(site)s"
|
||||
|
||||
msgid "title"
|
||||
msgstr "titill"
|
||||
|
||||
msgid "content"
|
||||
msgstr "innihald"
|
||||
|
||||
msgid "enable comments"
|
||||
msgstr "virkja athugasemdir"
|
||||
|
||||
msgid "template name"
|
||||
msgstr "nafn sniðmáts"
|
||||
|
||||
msgid ""
|
||||
"Example: 'flatpages/contact_page.html'. If this isn't provided, the system "
|
||||
"will use 'flatpages/default.html'."
|
||||
msgstr ""
|
||||
"Dæmi: 'flatpages/contact_page.html'. Ef ekkert er gefið upp mun kerfið nota "
|
||||
"'flatpages/default.html'."
|
||||
|
||||
msgid "registration required"
|
||||
msgstr "skráning nauðsynleg"
|
||||
|
||||
msgid "If this is checked, only logged-in users will be able to view the page."
|
||||
msgstr "Ef þetta er valið geta eingöngu innskráðir notendur séð síðuna."
|
||||
|
||||
msgid "sites"
|
||||
msgstr "vefir"
|
||||
|
||||
msgid "flat page"
|
||||
msgstr "flatskrá"
|
||||
|
||||
msgid "flat pages"
|
||||
msgstr "flatskrár"
|
||||
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user