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 |
|---|---|---|---|---|---|
castiel248/Convert | Lib/site-packages/django/contrib/sessions/management/commands/__init__.py | Python | mit | 0 | |
from importlib import import_module
from django.conf import settings
from django.core.management.base import BaseCommand, CommandError
class Command(BaseCommand):
help = (
"Can be run as a cronjob or directly to clean out expired sessions "
"when the backend supports it."
)
def handle(se... | castiel248/Convert | Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py | Python | mit | 661 |
import time
from importlib import import_module
from django.conf import settings
from django.contrib.sessions.backends.base import UpdateError
from django.contrib.sessions.exceptions import SessionInterrupted
from django.utils.cache import patch_vary_headers
from django.utils.deprecation import MiddlewareMixin
from dj... | castiel248/Convert | Lib/site-packages/django/contrib/sessions/middleware.py | Python | mit | 3,483 |
import django.contrib.sessions.models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = []
operations = [
migrations.CreateModel(
name="Session",
fields=[
(
"session_key",
mode... | castiel248/Convert | Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py | Python | mit | 1,148 |
castiel248/Convert | Lib/site-packages/django/contrib/sessions/migrations/__init__.py | Python | mit | 0 | |
from django.contrib.sessions.base_session import AbstractBaseSession, BaseSessionManager
class SessionManager(BaseSessionManager):
use_in_migrations = True
class Session(AbstractBaseSession):
"""
Django provides full support for anonymous sessions. The session
framework lets you store and retrieve a... | castiel248/Convert | Lib/site-packages/django/contrib/sessions/models.py | Python | mit | 1,250 |
# RemovedInDjango50Warning.
from django.core.serializers.base import PickleSerializer as BasePickleSerializer
from django.core.signing import JSONSerializer as BaseJSONSerializer
JSONSerializer = BaseJSONSerializer
PickleSerializer = BasePickleSerializer
| castiel248/Convert | Lib/site-packages/django/contrib/sessions/serializers.py | Python | mit | 256 |
import warnings
from urllib.parse import urlencode
from urllib.request import urlopen
from django.apps import apps as django_apps
from django.conf import settings
from django.core import paginator
from django.core.exceptions import ImproperlyConfigured
from django.urls import NoReverseMatch, reverse
from django.utils ... | castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/__init__.py | Python | mit | 9,317 |
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class SiteMapsConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "django.contrib.sitemaps"
verbose_name = _("Site Maps")
| castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/apps.py | Python | mit | 249 |
castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/management/__init__.py | Python | mit | 0 | |
castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/management/commands/__init__.py | Python | mit | 0 | |
from django.contrib.sitemaps import ping_google
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Ping Google with an updated sitemap, pass optional url of sitemap"
def add_arguments(self, parser):
parser.add_argument("sitemap_url", nargs="?")
parser.add_... | castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/management/commands/ping_google.py | Python | mit | 558 |
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
{% spaceless %}
{% for url in urlset %}
<url>
<loc>{{ url.location }}</loc>
{% if url.lastmod %}<lastmod>{{ url.lastmod|date:"Y-m-d" }}</lastmod>{% endif %}
{% if ... | castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml | XML | mit | 683 |
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% spaceless %}
{% for site in sitemaps %}
<sitemap>
<loc>{{ site.location }}</loc>
{% if site.last_mod %}
<lastmod>{{ site.last_mod|date:"c" }}</lastmod>
{% endif %}
</sitemap>
{% endfo... | castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml | XML | mit | 360 |
import datetime
import warnings
from dataclasses import dataclass
from functools import wraps
from django.contrib.sites.shortcuts import get_current_site
from django.core.paginator import EmptyPage, PageNotAnInteger
from django.http import Http404
from django.template.response import TemplateResponse
from django.urls ... | castiel248/Convert | Lib/site-packages/django/contrib/sitemaps/views.py | Python | mit | 5,032 |
castiel248/Convert | Lib/site-packages/django/contrib/sites/__init__.py | Python | mit | 0 | |
from django.contrib import admin
from django.contrib.sites.models import Site
@admin.register(Site)
class SiteAdmin(admin.ModelAdmin):
list_display = ("domain", "name")
search_fields = ("domain", "name")
| castiel248/Convert | Lib/site-packages/django/contrib/sites/admin.py | Python | mit | 214 |
from django.apps import AppConfig
from django.contrib.sites.checks import check_site_id
from django.core import checks
from django.db.models.signals import post_migrate
from django.utils.translation import gettext_lazy as _
from .management import create_default_site
class SitesConfig(AppConfig):
default_auto_fi... | castiel248/Convert | Lib/site-packages/django/contrib/sites/apps.py | Python | mit | 562 |
from django.conf import settings
from django.core.checks import Error
def check_site_id(app_configs, **kwargs):
if hasattr(settings, "SITE_ID") and not isinstance(
settings.SITE_ID, (type(None), int)
):
return [
Error("The SITE_ID setting must be an integer", id="sites.E101"),
... | castiel248/Convert | Lib/site-packages/django/contrib/sites/checks.py | Python | mit | 340 |
# 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:46+0000\n"
"Last-Translator: F W... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po | po | mit | 907 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bashar Al-Abdulhadi, 2014
# Eyad Toma <d.eyad.t@gmail.com>, 2013
# 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... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po | po | mit | 1,135 |
# 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: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2019-12-14 22:52+0000\n"
"Last-Translator: Riterix... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po | po | mit | 1,079 |
# 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-23 19:51+0000\n"
"Last-Translator: Jannis Lei... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po | po | mit | 915 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ali Ismayilov <ali@ismailov.info>, 2011
# Emin Mastizada <emin@linux.com>, 2018
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-04... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po | po | mit | 933 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Viktar Palstsiuk <vipals@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: 2017-09-19 16:40+0000\n"
"Last-Translator: Vi... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po | po | mit | 1,152 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Lyuboslav Petrov <petrov.lyuboslav@gmail.com>, 2014
# vestimir <vestimir@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Dat... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po | po | mit | 1,118 |
# 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/sites/locale/bn/LC_MESSAGES/django.po | po | mit | 1,090 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Fulup <fulup.jakez@gmail.com>, 2012
# Irriep Nala Novram <allannkorh@yahoo.fr>, 2018
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/sites/locale/br/LC_MESSAGES/django.po | po | mit | 1,281 |
# 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/sites/locale/bs/LC_MESSAGES/django.po | po | mit | 923 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Antoni Aloy <aaloy@apsl.net>, 2013
# Carles Barrobés <carles@barrobes.com>, 2014
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po | po | mit | 996 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# kosar tofiq <kosar.belana@gmail.com>, 2020
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: 2023-04-24 18:05+0000\n"
"Last-Translator: k... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ckb/LC_MESSAGES/django.po | po | mit | 1,007 |
# 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>, 2013-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/sites/locale/cs/LC_MESSAGES/django.po | po | mit | 1,035 |
# 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>, 2013-2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revi... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po | po | mit | 1,013 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Erik Wognsen <r4mses@gmail.com>, 2013-2014
# 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: 2... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po | po | mit | 957 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011,2013-2014,2016
# Markus Holtermann <inyoka@markusholtermann.eu>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+010... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po | po | mit | 980 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Michael Wolf <milupo@sorbzilla.de>, 2016
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-23 00:02+0000\n"
"Last-Translator: Mic... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po | po | mit | 992 |
# 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
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Rep... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po | po | mit | 1,133 |
# 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-01-17 11:07+0100\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/sites/locale/en/LC_MESSAGES/django.po | po | mit | 817 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Tom Fifield <tom@tomfifield.net>, 2021
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: 2021-04-11 13:15+0000\n"
"Last-Translator: Tom F... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po | po | mit | 913 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ross Poulton <ross@rossp.org>, 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: Jannis L... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po | po | mit | 862 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Baptiste Darthenay <baptiste+transifex@darthenay.fr>, 2013
# Baptiste Darthenay <baptiste+transifex@darthenay.fr>, 2014
# kristjan <kristjan.schmidt@googlemail.com>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po | po | mit | 1,043 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# abraham.martin <abraham.martin@gmail.com>, 2014
# Antoni Aloy <aaloy@apsl.net>, 2013
# Ernesto Avilés Vázquez <whippiii@gmail.com>, 2014
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po | po | mit | 1,066 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Ramiro Morales, 2013-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-23 18:54+0... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po | po | mit | 969 |
# 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-19 21:51+0000\n"
"Last-Translator: C... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po | po | mit | 949 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Abraham Estrada, 2011
# Carlos Castro <carmoicast@gmail.com>, 2011
# zodman <zodman@gmail.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-... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po | po | mit | 991 |
# 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/sites/locale/es_VE/LC_MESSAGES/django.po | po | mit | 791 |
# 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
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po | po | mit | 992 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Ander Martínez <ander.basaundi@gmail.com>, 2013
# 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/sites/locale/eu/LC_MESSAGES/django.po | po | mit | 1,023 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Mohammad Hossein Mojtahedi <Mhm5000@gmail.com>, 2013
# Reza Mohammadi <reza@teeleh.ir>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-D... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po | po | mit | 1,094 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Aarni Koskela, 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: 2017-09-19 16:40+0000\n"... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po | po | mit | 929 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Claude Paroz <claude@2xlibre.net>, 2014
# Claude Paroz <claude@2xlibre.net>, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-0... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po | po | mit | 999 |
# 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/sites/locale/fy/LC_MESSAGES/django.po | po | mit | 781 |
# 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
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Dat... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po | po | mit | 962 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# GunChleoc, 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-22 17:29+0000\n"
"Last-Translator: GunChleoc\n"
"Language-Team:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po | po | mit | 957 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# 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-Bugs-To: \n"
"POT-Creation-Date: 2... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po | po | mit | 979 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Meir Kriheli <mkriheli@gmail.com>, 2013-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:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po | po | mit | 1,082 |
# 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/sites/locale/hi/LC_MESSAGES/django.po | po | mit | 890 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# 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-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revisio... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po | po | mit | 1,055 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Michael Wolf <milupo@sorbzilla.de>, 2016
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-23 00:02+0000\n"
"Last-Translator: Mic... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po | po | mit | 987 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# András Veres-Szentkirályi, 2016
# 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-23 1... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po | po | mit | 953 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Սմբատ Պետրոսյան <smbatpetrosyan@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: 2017-09-19 21:51+0000\n"
"Last-Transla... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po | po | mit | 1,049 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Martijn Dekker <mcdutchie@hotmail.com>, 2016
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 21:51+0000\n"
"Last-Translator:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po | po | mit | 934 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# M Asep Indrayana <me@drayanaindra.com>, 2015
# rodin <romihardiyanto@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po | po | mit | 1,000 |
# 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/sites/locale/io/LC_MESSAGES/django.po | po | mit | 914 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Thordur Sigurdsson <thordur@ja.is>, 2016
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: 201... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po | po | mit | 976 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Marco Bonetti, 2014
# Nicola Larosa <transifex@teknico.net>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po | po | mit | 984 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Shinya Okano <tokibito@gmail.com>, 2013-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:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po | po | mit | 982 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# André Bouatchidzé <a@anbz.net>, 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: 2017-09... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po | po | mit | 1,160 |
# 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: 2017-10-06 11:44+0000\n"
"Last-Translator: Muḥend Belqasem <belkacem77@gmail.com>\n"
"Lan... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po | po | mit | 886 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Leo Trubach <leotrubach@gmail.com>, 2017
# yun_man_ger <germanilyin@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: 20... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po | po | mit | 1,062 |
# 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/sites/locale/km/LC_MESSAGES/django.po | po | mit | 926 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Rohith PR, 2021
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: 2021-08-03 10:54+0000\n"
"La... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po | po | mit | 921 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jiyoon, Ha <cryptography@konkuk.ac.kr>, 2016
# Jannis Leidel <jannis@leidel.info>, 2011
# Le Tartuffe <magno79@gmail.com>, 2014
# Chr0m3 <chr0m3.kr@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po | po | mit | 1,049 |
# 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: 2020-05-23 06:09+0000\n"
"Last-Translator: Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.co... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po | po | mit | 927 |
# 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/sites/locale/lb/LC_MESSAGES/django.po | po | mit | 779 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Kostas <tamosiunas@gmail.com>, 2011
# Matas Dailyda <matas@dailyda.com>, 2015
# Simonas Kazlauskas <simonas@kazlauskas.me>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Repor... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po | po | mit | 1,195 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# edgars <edgars.jekabsons@gmail.com>, 2011
# Jannis Leidel <jannis@leidel.info>, 2011
# peterisb <pb@sungis.lv>, 2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po | po | mit | 1,023 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Vasil Vangelovski <vvangelovski@gmail.com>, 2013-2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revis... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po | po | mit | 1,062 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Hrishikesh <hrishi.kb@gmail.com>, 2019
# 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: 2019-... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po | po | mit | 1,169 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bayarbat.U <bayarbat@gmail.com>, 2015
# Jannis Leidel <jannis@leidel.info>, 2011
# Zorig <zorig_ezd@yahoo.com>, 2014
# Анхбаяр Анхаа <l.ankhbayar@gmail.com>, 2011,2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Ms... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po | po | mit | 1,127 |
# 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/sites/locale/mr/LC_MESSAGES/django.po | po | mit | 773 |
# 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: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2021-11-16 12:40+0000\n"
"Last-Translator: Jafry Hisham\n"
"Language... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po | po | mit | 864 |
# 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:50+0000\n"
"Last-Translator:... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po | po | mit | 1,086 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Alexander Hansen <alexander.l.hansen@gmail.com>, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
# Jon <jon@kolonial.no>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po | po | mit | 1,000 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Sagar Chalise <chalisesagar@gmail.com>, 2011
# Santosh Purbey <purbey.santosh@hotmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revis... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po | po | mit | 1,078 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bouke Haarsma <bouke@haarsma.eu>, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
# Sander Steffann <inactive+steffann@transifex.com>, 2015
# Tonnes <tonnes.mb@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po | po | mit | 1,030 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Sivert Olstad, 2021
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: 2021-11-11 00:23+0000\n"... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po | po | mit | 915 |
# 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:58+0000\n"
"Last-Tr... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po | po | mit | 963 |
# 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/sites/locale/pa/LC_MESSAGES/django.po | po | mit | 912 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# angularcircle, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
# Mattia Procopio <promat85@gmail.com>, 2014
# Tomasz Kajtoch <tomekkaj@tomekkaj.pl>, 2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po | po | mit | 1,181 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Nuno Mariz <nmariz@gmail.com>, 2013
# Raúl Pedro Fernandes Santos, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po | po | mit | 993 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Allisson Azevedo <allisson@gmail.com>, 2014
# Eduardo Cereto Carvalho, 2013
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 1... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po | po | mit | 1,023 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Daniel Ursache-Dogariu, 2011
# Denis Darii <denis.darii@gmail.com>, 2014
# Jannis Leidel <jannis@leidel.info>, 2011
# Razvan Stefanescu <razvan.stefanescu@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Repor... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po | po | mit | 1,112 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Eugene MechanisM <eugene@mechanism.pro>, 2013
# Eugene MechanisM <eugene@mechanism.pro>, 2016
# Jannis Leidel <jannis@leidel.info>, 2011
# Алексей Борискин <sun.void@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: djang... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po | po | mit | 1,300 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Marian Andre <marian@andre.sk>, 2013
# Martin Tóth <ezimir@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 1... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po | po | mit | 1,070 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# Primož Verdnik <primoz.verdnik@gmail.com>, 2017
# zejn <zejn@kiberpipa.org>, 2013,2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po | po | mit | 1,059 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Besnik <besnik@programeshqip.org>, 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-11-29 23:00+0000\n"
"Last-Translator: Besn... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po | po | mit | 930 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Branko Kokanovic <branko@kokanovic.org>, 2018
# 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... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po | po | mit | 1,107 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Igor Jerosimić, 2019
# 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: 2019-06-27 12:41+0000\n... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po | po | mit | 1,004 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Anders Hovmöller <boxed@killingar.net>, 2023
# Jannis Leidel <jannis@leidel.info>, 2011
# Jonathan Lindén, 2014
# Thomas Lundqvist, 2013
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-... | castiel248/Convert | Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po | po | mit | 1,028 |