code stringlengths 0 21.5M | repo_name stringlengths 4 92 | path stringlengths 1 189 | language stringlengths 0 26 | license stringclasses 11
values | size int64 0 21.5M |
|---|---|---|---|---|---|
from django.contrib import auth
from django.contrib.auth import load_backend
from django.contrib.auth.backends import RemoteUserBackend
from django.core.exceptions import ImproperlyConfigured
from django.utils.deprecation import MiddlewareMixin
from django.utils.functional import SimpleLazyObject
def get_user(request... | castiel248/Convert | Lib/site-packages/django/contrib/auth/middleware.py | Python | mit | 5,431 |
import django.contrib.auth.models
from django.contrib.auth import validators
from django.db import migrations, models
from django.utils import timezone
class Migration(migrations.Migration):
dependencies = [
("contenttypes", "__first__"),
]
operations = [
migrations.CreateModel(
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0001_initial.py | Python | mit | 7,281 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="permission",
name="name",
field=models.CharField(max_length=255, verbose_name=... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py | Python | mit | 346 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0002_alter_permission_name_max_length"),
]
operations = [
migrations.AlterField(
model_name="user",
name="email",
field=models.EmailField(
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py | Python | mit | 418 |
from django.contrib.auth import validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0003_alter_user_email_max_length"),
]
# No database changes; modifies validators and error_messages (#13147).
operations = [
migrations... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py | Python | mit | 880 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0004_alter_user_username_opts"),
]
operations = [
migrations.AlterField(
model_name="user",
name="last_login",
field=models.DateTimeField(
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py | Python | mit | 410 |
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("auth", "0005_alter_user_last_login_null"),
("contenttypes", "0002_remove_content_type_name"),
]
operations = [
# Ensure the contenttypes migration is applied before sending
# post_mi... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py | Python | mit | 369 |
from django.contrib.auth import validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0006_require_contenttypes_0002"),
]
operations = [
migrations.AlterField(
model_name="user",
name="username",
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py | Python | mit | 802 |
from django.contrib.auth import validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0007_alter_validators_add_error_messages"),
]
operations = [
migrations.AlterField(
model_name="user",
name="userna... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py | Python | mit | 814 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0008_alter_user_username_max_length"),
]
operations = [
migrations.AlterField(
model_name="user",
name="last_name",
field=models.CharField(
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py | Python | mit | 415 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0009_alter_user_last_name_max_length"),
]
operations = [
migrations.AlterField(
model_name="group",
name="name",
field=models.CharField(max_length... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py | Python | mit | 378 |
import sys
from django.core.management.color import color_style
from django.db import IntegrityError, migrations, transaction
from django.db.models import Q
WARNING = """
A problem arose migrating proxy model permissions for {old} to {new}.
Permission(s) for {new} already existed.
Codenames Q: {query... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py | Python | mit | 2,860 |
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("auth", "0011_update_proxy_permissions"),
]
operations = [
migrations.AlterField(
model_name="user",
name="first_name",
field=models.CharField(
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py | Python | mit | 411 |
castiel248/Convert | Lib/site-packages/django/contrib/auth/migrations/__init__.py | Python | mit | 0 | |
from urllib.parse import urlparse
from django.conf import settings
from django.contrib.auth import REDIRECT_FIELD_NAME
from django.contrib.auth.views import redirect_to_login
from django.core.exceptions import ImproperlyConfigured, PermissionDenied
from django.shortcuts import resolve_url
class AccessMixin:
"""
... | castiel248/Convert | Lib/site-packages/django/contrib/auth/mixins.py | Python | mit | 4,652 |
from django.apps import apps
from django.contrib import auth
from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
from django.contrib.auth.hashers import make_password
from django.contrib.contenttypes.models import ContentType
from django.core.exceptions import PermissionDenied
from django.core.m... | castiel248/Convert | Lib/site-packages/django/contrib/auth/models.py | Python | mit | 16,500 |
import functools
import gzip
import re
from difflib import SequenceMatcher
from pathlib import Path
from django.conf import settings
from django.core.exceptions import (
FieldDoesNotExist,
ImproperlyConfigured,
ValidationError,
)
from django.utils.functional import cached_property, lazy
from django.utils.h... | castiel248/Convert | Lib/site-packages/django/contrib/auth/password_validation.py | Python | mit | 9,376 |
from django.dispatch import Signal
user_logged_in = Signal()
user_login_failed = Signal()
user_logged_out = Signal()
| castiel248/Convert | Lib/site-packages/django/contrib/auth/signals.py | Python | mit | 118 |
<div{% include 'django/forms/widgets/attrs.html' %}>
{% for entry in summary %}
<strong>{{ entry.label }}</strong>{% if entry.value %}: <bdi>{{ entry.value }}</bdi>{% endif %}
{% endfor %}
</div>
| castiel248/Convert | Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html | HTML | mit | 196 |
{% load i18n %}{% autoescape off %}
{% blocktranslate %}Password reset on {{ site_name }}{% endblocktranslate %}
{% endautoescape %} | castiel248/Convert | Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt | Text | mit | 132 |
from datetime import datetime
from django.conf import settings
from django.utils.crypto import constant_time_compare, salted_hmac
from django.utils.http import base36_to_int, int_to_base36
class PasswordResetTokenGenerator:
"""
Strategy object used to generate and check tokens for the password
reset mech... | castiel248/Convert | Lib/site-packages/django/contrib/auth/tokens.py | Python | mit | 4,328 |
# The views used below are normally mapped in the AdminSite instance.
# This URLs file is used to provide a reliable view deployment for test purposes.
# It is also provided as a convenience to those who want to deploy these URLs
# elsewhere.
from django.contrib.auth import views
from django.urls import path
urlpatte... | castiel248/Convert | Lib/site-packages/django/contrib/auth/urls.py | Python | mit | 1,185 |
import re
from django.core import validators
from django.utils.deconstruct import deconstructible
from django.utils.translation import gettext_lazy as _
@deconstructible
class ASCIIUsernameValidator(validators.RegexValidator):
regex = r"^[\w.@+-]+\Z"
message = _(
"Enter a valid username. This value m... | castiel248/Convert | Lib/site-packages/django/contrib/auth/validators.py | Python | mit | 722 |
import warnings
from urllib.parse import urlparse, urlunparse
from django.conf import settings
# Avoid shadowing the login() and logout() views below.
from django.contrib.auth import REDIRECT_FIELD_NAME, get_user_model
from django.contrib.auth import login as auth_login
from django.contrib.auth import logout as auth_... | castiel248/Convert | Lib/site-packages/django/contrib/auth/views.py | Python | mit | 14,446 |
castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/__init__.py | Python | mit | 0 | |
from functools import partial
from django.contrib.admin.checks import InlineModelAdminChecks
from django.contrib.admin.options import InlineModelAdmin, flatten_fieldsets
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.forms import (
BaseGenericInlineFormSet,
ge... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/admin.py | Python | mit | 5,200 |
from django.apps import AppConfig
from django.contrib.contenttypes.checks import (
check_generic_foreign_keys,
check_model_name_lengths,
)
from django.core import checks
from django.db.models.signals import post_migrate, pre_migrate
from django.utils.translation import gettext_lazy as _
from .management import... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/apps.py | Python | mit | 846 |
from itertools import chain
from django.apps import apps
from django.core.checks import Error
def check_generic_foreign_keys(app_configs=None, **kwargs):
from .fields import GenericForeignKey
if app_configs is None:
models = apps.get_models()
else:
models = chain.from_iterable(
... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/checks.py | Python | mit | 1,268 |
import functools
import itertools
from collections import defaultdict
from asgiref.sync import sync_to_async
from django.contrib.contenttypes.models import ContentType
from django.core import checks
from django.core.exceptions import FieldDoesNotExist, ObjectDoesNotExist
from django.db import DEFAULT_DB_ALIAS, models... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/fields.py | Python | mit | 29,513 |
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.forms import ModelForm, modelformset_factory
from django.forms.models import BaseModelFormSet
class BaseGenericInlineFormSet(BaseModelFormSet):
"""
A formset for generic inline objects to a parent.
"""
... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/forms.py | Python | mit | 3,956 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# F Wolff <friedel@translate.org.za>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2019-01-04 18:49+0000\n"
"Last-Translator: F W... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po | po | mit | 1,244 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bashar Al-Abdulhadi, 2014
# Jannis Leidel <jannis@leidel.info>, 2011
# AlMeer <mohammad.almeer@gmail.com>, 2014
# Muaaz Alsaied, 2020
# صفا الفليج <safaalfulaij@hotmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po | po | mit | 1,634 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Riterix <infosrabah@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-12-14 18:35+0000\n"
"Last-Translator: Riterix... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po | po | mit | 1,447 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ḷḷumex03 <tornes@opmbx.org>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-20 02:41+0000\n"
"Last-Translator: Jannis Lei... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po | po | mit | 1,088 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ali Ismayilov <ali@ismailov.info>, 2011
# Emin Mastizada <emin@linux.com>, 2020
# Emin Mastizada <emin@linux.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 ... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po | po | mit | 1,359 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Viktar Palstsiuk <vipals@gmail.com>, 2015
# znotdead <zhirafchik@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po | po | mit | 1,615 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# arneatec <arneatec@gmail.com>, 2022
# Boris Chervenkov <office@sentido.bg>, 2012
# Georgi Kostadinov <grgkostadinov@gmail.com>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# vestimir <vestimir@gmail.com>, 2014
msgid ""
msgst... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po | po | mit | 1,613 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Tahmid Rafi <rafi.tahmid@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 20... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po | po | mit | 1,491 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Irriep Nala Novram <allannkorh@yahoo.fr>, 2018-2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2019-03-12 14:31+0000\n"
"Last-Tran... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po | po | mit | 1,613 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator: Jan... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po | po | mit | 1,151 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Carles Barrobés <carles@barrobes.com>, 2012,2014
# Jannis Leidel <jannis@leidel.info>, 2011
# Manel Clos <manelclos@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po | po | mit | 1,403 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Swara <swara09@gmail.com>, 2022
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2023-04-24 19:22+0000\n"
"Last-Translator: Swara <swara... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ckb/LC_MESSAGES/django.po | po | mit | 1,419 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Vláďa Macek <macek@sandbox.cz>, 2012,2014
# Vláďa Macek <macek@sandbox.cz>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po | po | mit | 1,410 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Maredudd ap Gwyndaf <maredudd@maredudd.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po | po | mit | 1,385 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Erik Wognsen <r4mses@gmail.com>, 2014,2019
# Jannis Leidel <jannis@leidel.info>, 2011
# Kristian Øllegaard <kristian@oellegaard.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creatio... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po | po | mit | 1,349 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# André Hagenbruch, 2012
# Jannis Leidel <jannis@leidel.info>, 2011,2013-2014,2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2020-0... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po | po | mit | 1,308 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Michael Wolf <milupo@sorbzilla.de>, 2016,2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2020-02-25 16:03+0000\n"
"Last-Translator... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po | po | mit | 1,355 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Nikolas Demiridis <nikolas@demiridis.gr>, 2014
# Pãnoș <panos.laganakos@gmail.com>, 2014
# Pãnoș <panos.laganakos@gmail.com>, 2016,2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po | po | mit | 1,643 |
# 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: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2010-05-13 15:35+0200\n"
"Last-Translator: Django team\n"
"Language-Team: English <en@li.org>\n"
"Langua... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po | po | mit | 1,110 |
# 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-01-17 11:07+0100\n"
"PO-Revision-Date: 2014-10-05 20:11+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
"Languag... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po | po | mit | 1,001 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# jon_atkinson <jon@jonatkinson.co.uk>, 2011
# Ross Poulton <ross@rossp.org>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-0... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po | po | mit | 1,298 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Batist D 🐍 <baptiste+transifex@darthenay.fr>, 2014
# Meiyer <interdist+translations@gmail.com>, 2022
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po | po | mit | 1,350 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Antoni Aloy <aaloy@apsl.net>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# Josue Naaman Nistal Guerra <josuenistal@hotmail.com>, 2014
# Uriel Medina <urimeba511@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: djang... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po | po | mit | 1,456 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Ramiro Morales, 2012,2014-2015,2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-10-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po | po | mit | 1,337 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Carlos Muñoz <cmuozdiaz@outlook.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-20 03:01+0000\n"
"Last-Translator: C... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po | po | mit | 1,338 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Abe Estrada, 2011-2012
# Jesús Bautista <jesbam98@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-12-25 05:47+000... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po | po | mit | 1,237 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Eduardo <edos21@gmail.com>, 2017
# Yoel Acevedo, 2017
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-20 03:01+0000\n"
"Last-Tr... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po | po | mit | 1,342 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Janno Liivak <jannolii@gmail.com>, 2013
# Marti Raudsepp <marti@juffo.org>, 2014
# Ragnar Rebase <rrebase@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgi... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po | po | mit | 1,368 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Aitzol Naberan <anaberan@codesyntax.com>, 2012
# Eneko Illarramendi <eneko@illarra.com>, 2017
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po | po | mit | 1,344 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ali Nikneshan <ali@nikneshan.com>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# rahim agh <rahim.aghareb@gmail.com>, 2020
# Reza Mohammadi <reza@teeleh.ir>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msg... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po | po | mit | 1,471 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Aarni Koskela, 2015,2020
# Jannis Leidel <jannis@leidel.info>, 2011
# Klaus Dahlén <klaus.dahlen@gmail.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po | po | mit | 1,325 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Claude Paroz <claude@2xlibre.net>, 2014,2019
# Claude Paroz <claude@2xlibre.net>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po | po | mit | 1,379 |
# 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-01-17 11:07+0100\n"
"PO-Revision-Date: 2014-10-05 20:13+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
"Languag... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po | po | mit | 991 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Luke Blaney <transifex@lukeblaney.co.uk>, 2019
# Michael Thornhill <michael@maithu.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po | po | mit | 1,408 |
# 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: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-12-13 12:51+0000\n"
"Last-Translator: GunChleoc\... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po | po | mit | 1,368 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# fonso <fonzzo@gmail.com>, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
# Leandro Regueiro <leandro.regueiro@gmail.com>, 2013
# X Bello <xbello@gmail.com>, 2023
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-B... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po | po | mit | 1,417 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Meir Kriheli <mkriheli@gmail.com>, 2012,2014,2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po | po | mit | 1,486 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Chandan kumar <chandankumar.093047@gmail.com>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revisio... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po | po | mit | 1,577 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bojan Mihelač <bmihelac@mihelac.org>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# Mislav Cimperšak <mislav.cimpersak@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creati... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po | po | mit | 1,445 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Michael Wolf <milupo@sorbzilla.de>, 2016,2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2019-09-21 19:25+0000\n"
"Last-Translator... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po | po | mit | 1,329 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# András Veres-Szentkirályi, 2016
# Attila Nagy <>, 2012
# Istvan Farkas <istvan.farkas@gmail.com>, 2019
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po | po | mit | 1,427 |
# 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-01-17 11:07+0100\n"
"PO-Revision-Date: 2018-11-01 20:28+0000\n"
"Last-Translator: Ruben Harutyunov <rharutyunov@mail.ru>\n"
"Lan... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po | po | mit | 1,421 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Martijn Dekker <mcdutchie@hotmail.com>, 2012,2021
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2021-12-24 19:22+0000\n"
"Last-Transl... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po | po | mit | 1,318 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Fery Setiawan <gembelweb@gmail.com>, 2020
# Jannis Leidel <jannis@leidel.info>, 2011
# M Asep Indrayana <me@drayanaindra.com>, 2015
# rodin <romihardiyanto@gmail.com>, 2011-2012
# rodin <romihardiyanto@gmail.com>, 2016
msgid ""
... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po | po | mit | 1,424 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Viko Bartero <inactive+tergrundo@transifex.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-20 01:58+0000\n"
"Last-Tr... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po | po | mit | 1,266 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Hafsteinn Einarsson <haffi67@gmail.com>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# Thordur Sigurdsson <thordur@ja.is>, 2016,2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po | po | mit | 1,360 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Marco Bonetti, 2014
# Mirco Grillo <mirco.grillomg@gmail.com>, 2020
# Nicola Larosa <transifex@teknico.net>, 2012
# Stefano Brentegani <sbrentegani@gmail.com>, 2015
msgid ""
msgstr ""
"... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po | po | mit | 1,457 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Shinya Okano <tokibito@gmail.com>, 2012,2014
# Takuya N <takninnovationresearch@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creati... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po | po | mit | 1,534 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# André Bouatchidzé <a@anbz.net>, 2013,2015
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 20... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po | po | mit | 1,654 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Nurlan Rakhimzhanov <nurlan.rakhimzhanov@gmail.com>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Las... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po | po | mit | 1,130 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator: Jan... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po | po | mit | 1,123 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator: Jan... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po | po | mit | 1,168 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Le Tartuffe <magno79@gmail.com>, 2014
# Yang Chan Woo <oizys18@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po | po | mit | 1,383 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.com>, 2020
# Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+02... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po | po | mit | 1,465 |
# 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-01-17 11:07+0100\n"
"PO-Revision-Date: 2014-10-05 20:12+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
"Languag... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po | po | mit | 989 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Matas Dailyda <matas@dailyda.com>, 2015
# Simonas Kazlauskas <simonas@kazlauskas.me>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Dat... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po | po | mit | 1,488 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# NullIsNot0 <nullisnot0@inbox.lv>, 2019
# peterisb <pb@sungis.lv>, 2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po | po | mit | 1,356 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Vasil Vangelovski <vvangelovski@gmail.com>, 2014
# Vasil Vangelovski <vvangelovski@gmail.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Cre... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po | po | mit | 1,534 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Rajeesh Nair <rajeeshrnair@gmail.com>, 2011-2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-D... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po | po | mit | 1,634 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bayarkhuu Bataa, 2017
# Jannis Leidel <jannis@leidel.info>, 2011
# Zorig <zorig_ezd@yahoo.com>, 2014
# Анхбаяр Анхаа <l.ankhbayar@gmail.com>, 2011-2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po | po | mit | 1,525 |
# 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-01-17 11:07+0100\n"
"PO-Revision-Date: 2014-10-05 20:12+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
"Languag... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po | po | mit | 983 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jafry Hisham, 2021
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO-Revision-Date: 2021-11-16 12:42+0000\n"
"Last-Translator: Jafry Hisham\n"
"Language... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po | po | mit | 1,225 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Yhal Htet Aung <jumoun@gmail.com>, 2013,2015
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator:... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po | po | mit | 1,732 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# jensadne <jensadne@pvv.ntnu.no>, 2014
# Jon <jon@kolonial.no>, 2020
# Jon <jon@kolonial.no>, 2012
# Sigurd Gartmann <sigurdga-transifex@sigurdga.no>, 2012
msgid ""
msgstr ""
"Project-Id... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po | po | mit | 1,403 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Sagar Chalise <chalisesagar@gmail.com>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator:... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po | po | mit | 1,519 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Harro van der Klauw <hvdklauw@gmail.com>, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# Sander Steffann <inactive+steffann@transifex.com>, 2015
# Tonnes <tonnes.mb@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: dja... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po | po | mit | 1,396 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# jensadne <jensadne@pvv.ntnu.no>, 2013
# Sivert Olstad, 2021
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
"PO... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po | po | mit | 1,317 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Soslan Khubulov <inactive+soslan@transifex.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Tr... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po | po | mit | 1,334 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
"Last-Translator: Jan... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po | po | mit | 1,145 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# sidewinder <adam.klosiu@gmail.com>, 2014
# angularcircle, 2012
# Jannis Leidel <jannis@leidel.info>, 2011
# m_aciek <maciej.olko@gmail.com>, 2019
# Tomasz Kajtoch <tomekkaj@tomekkaj.pl>, 2016
msgid ""
msgstr ""
"Project-Id-Versi... | castiel248/Convert | Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po | po | mit | 1,577 |