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 |
|---|---|---|---|---|---|
django
| castiel248/Convert | Lib/site-packages/Django-4.2.2.dist-info/top_level.txt | Text | mit | 7 |
# don't import any costly modules
import sys
import os
is_pypy = '__pypy__' in sys.builtin_module_names
def warn_distutils_present():
if 'distutils' not in sys.modules:
return
if is_pypy and sys.version_info < (3, 7):
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
... | castiel248/Convert | Lib/site-packages/_distutils_hack/__init__.py | Python | mit | 6,128 |
__import__('_distutils_hack').do_override()
| castiel248/Convert | Lib/site-packages/_distutils_hack/override.py | Python | mit | 44 |
pip
| castiel248/Convert | Lib/site-packages/asgiref-3.7.2.dist-info/INSTALLER | none | mit | 4 |
Metadata-Version: 2.1
Name: asgiref
Version: 3.7.2
Summary: ASGI specs, helper code, and adapters
Home-page: https://github.com/django/asgiref/
Author: Django Software Foundation
Author-email: foundation@djangoproject.com
License: BSD-3-Clause
Project-URL: Documentation, https://asgi.readthedocs.io/
Project-URL: Furthe... | castiel248/Convert | Lib/site-packages/asgiref-3.7.2.dist-info/METADATA | none | mit | 9,210 |
asgiref-3.7.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
asgiref-3.7.2.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552
asgiref-3.7.2.dist-info/METADATA,sha256=vMxxYC76PlmOumc-o6BcGHukarKP7PciLr3rHUCvdHc,9210
asgiref-3.7.2.dist-info/RECORD,,
asgiref-3.7.2.dist-info... | castiel248/Convert | Lib/site-packages/asgiref-3.7.2.dist-info/RECORD | none | mit | 1,777 |
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any
| castiel248/Convert | Lib/site-packages/asgiref-3.7.2.dist-info/WHEEL | none | mit | 92 |
asgiref
| castiel248/Convert | Lib/site-packages/asgiref-3.7.2.dist-info/top_level.txt | Text | mit | 8 |
__version__ = "3.7.2"
| castiel248/Convert | Lib/site-packages/asgiref/__init__.py | Python | mit | 22 |
import inspect
from .sync import iscoroutinefunction
def is_double_callable(application):
"""
Tests to see if an application is a legacy-style (double-callable) application.
"""
# Look for a hint on the object first
if getattr(application, "_asgi_single_callable", False):
return False
... | castiel248/Convert | Lib/site-packages/asgiref/compatibility.py | Python | mit | 1,606 |
import queue
import sys
import threading
from concurrent.futures import Executor, Future
from typing import TYPE_CHECKING, Any, Callable, TypeVar, Union
if sys.version_info >= (3, 10):
from typing import ParamSpec
else:
from typing_extensions import ParamSpec
_T = TypeVar("_T")
_P = ParamSpec("_P")
_R = TypeV... | castiel248/Convert | Lib/site-packages/asgiref/current_thread_executor.py | Python | mit | 3,985 |
import random
import string
import sys
import threading
import weakref
class Local:
"""
A drop-in replacement for threading.locals that also works with asyncio
Tasks (via the current_task asyncio method), and passes locals through
sync_to_async and async_to_sync.
Specifically:
- Locals work ... | castiel248/Convert | Lib/site-packages/asgiref/local.py | Python | mit | 4,854 |
castiel248/Convert | Lib/site-packages/asgiref/py.typed | typed | mit | 0 | |
import asyncio
import logging
import time
import traceback
from .compatibility import guarantee_single_callable
logger = logging.getLogger(__name__)
class StatelessServer:
"""
Base server class that handles basic concepts like application instance
creation/pooling, exception handling, and similar, for s... | castiel248/Convert | Lib/site-packages/asgiref/server.py | Python | mit | 6,005 |
import asyncio
import asyncio.coroutines
import contextvars
import functools
import inspect
import os
import sys
import threading
import warnings
import weakref
from concurrent.futures import Future, ThreadPoolExecutor
from typing import (
TYPE_CHECKING,
Any,
Awaitable,
Callable,
Coroutine,
Dict... | castiel248/Convert | Lib/site-packages/asgiref/sync.py | Python | mit | 22,941 |
import asyncio
import time
from .compatibility import guarantee_single_callable
from .timeout import timeout as async_timeout
class ApplicationCommunicator:
"""
Runs an ASGI application in a test mode, allowing sending of
messages to it and retrieval of messages it sends.
"""
def __init__(self, ... | castiel248/Convert | Lib/site-packages/asgiref/testing.py | Python | mit | 3,119 |
# This code is originally sourced from the aio-libs project "async_timeout",
# under the Apache 2.0 license. You may see the original project at
# https://github.com/aio-libs/async-timeout
# It is vendored here to reduce chain-dependencies on this library, and
# modified slightly to remove some features we don't use.
... | castiel248/Convert | Lib/site-packages/asgiref/timeout.py | Python | mit | 3,627 |
import sys
from typing import (
Any,
Awaitable,
Callable,
Dict,
Iterable,
Optional,
Tuple,
Type,
Union,
)
if sys.version_info >= (3, 8):
from typing import Literal, Protocol, TypedDict
else:
from typing_extensions import Literal, Protocol, TypedDict
if sys.version_info >= (... | castiel248/Convert | Lib/site-packages/asgiref/typing.py | Python | mit | 6,238 |
from io import BytesIO
from tempfile import SpooledTemporaryFile
from asgiref.sync import AsyncToSync, sync_to_async
class WsgiToAsgi:
"""
Wraps a WSGI application to make it into an ASGI application.
"""
def __init__(self, wsgi_application):
self.wsgi_application = wsgi_application
asy... | castiel248/Convert | Lib/site-packages/asgiref/wsgi.py | Python | mit | 6,575 |
import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim();
| castiel248/Convert | Lib/site-packages/distutils-precedence.pth | pth | mit | 151 |
from django.utils.version import get_version
VERSION = (4, 2, 2, "final", 0)
__version__ = get_version(VERSION)
def setup(set_prefix=True):
"""
Configure the settings (this happens as a side effect of accessing the
first setting), configure logging and populate the app registry.
Set the thread-local... | castiel248/Convert | Lib/site-packages/django/__init__.py | Python | mit | 799 |
"""
Invokes django-admin when the django module is run as a script.
Example: python -m django check
"""
from django.core import management
if __name__ == "__main__":
management.execute_from_command_line()
| castiel248/Convert | Lib/site-packages/django/__main__.py | Python | mit | 211 |
from .config import AppConfig
from .registry import apps
__all__ = ["AppConfig", "apps"]
| castiel248/Convert | Lib/site-packages/django/apps/__init__.py | Python | mit | 90 |
import inspect
import os
from importlib import import_module
from django.core.exceptions import ImproperlyConfigured
from django.utils.functional import cached_property
from django.utils.module_loading import import_string, module_has_submodule
APPS_MODULE_NAME = "apps"
MODELS_MODULE_NAME = "models"
class AppConfig... | castiel248/Convert | Lib/site-packages/django/apps/config.py | Python | mit | 11,482 |
import functools
import sys
import threading
import warnings
from collections import Counter, defaultdict
from functools import partial
from django.core.exceptions import AppRegistryNotReady, ImproperlyConfigured
from .config import AppConfig
class Apps:
"""
A registry that stores the configuration of insta... | castiel248/Convert | Lib/site-packages/django/apps/registry.py | Python | mit | 17,661 |
"""
Settings and configuration for Django.
Read values from the module specified by the DJANGO_SETTINGS_MODULE environment
variable, and then from django.conf.global_settings; see the global_settings.py
for a list of all possible variables.
"""
import importlib
import os
import time
import traceback
import warnings
f... | castiel248/Convert | Lib/site-packages/django/conf/__init__.py | Python | mit | 13,899 |
castiel248/Convert | Lib/site-packages/django/conf/app_template/__init__.py-tpl | py-tpl | mit | 0 | |
from django.contrib import admin
# Register your models here.
| castiel248/Convert | Lib/site-packages/django/conf/app_template/admin.py-tpl | py-tpl | mit | 63 |
from django.apps import AppConfig
class {{ camel_case_app_name }}Config(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = '{{ app_name }}'
| castiel248/Convert | Lib/site-packages/django/conf/app_template/apps.py-tpl | py-tpl | mit | 171 |
castiel248/Convert | Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl | py-tpl | mit | 0 | |
from django.db import models
# Create your models here.
| castiel248/Convert | Lib/site-packages/django/conf/app_template/models.py-tpl | py-tpl | mit | 57 |
from django.test import TestCase
# Create your tests here.
| castiel248/Convert | Lib/site-packages/django/conf/app_template/tests.py-tpl | py-tpl | mit | 60 |
from django.shortcuts import render
# Create your views here.
| castiel248/Convert | Lib/site-packages/django/conf/app_template/views.py-tpl | py-tpl | mit | 63 |
"""
Default Django settings. Override these with settings in the module pointed to
by the DJANGO_SETTINGS_MODULE environment variable.
"""
# This is defined here as a do-nothing function because we can't import
# django.utils.translation -- that module depends on the settings.
def gettext_noop(s):
return s
####... | castiel248/Convert | Lib/site-packages/django/conf/global_settings.py | Python | mit | 23,379 |
"""
LANG_INFO is a dictionary structure to provide meta information about languages.
About name_local: capitalize it as if your language name was appearing
inside a sentence in your language.
The 'fallback' key can be used to specify a special fallback logic which doesn't
follow the traditional 'fr-ca' -> 'fr' fallbac... | castiel248/Convert | Lib/site-packages/django/conf/locale/__init__.py | Python | mit | 13,733 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# F Wolff <friedel@translate.org.za>, 2019-2020,2022
# Stephen Cox <stephencoxmail@gmail.com>, 2011-2012
# unklphil <villiers.strauss@gmail.com>, 2014,2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \... | castiel248/Convert | Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po | po | mit | 28,110 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bashar Al-Abdulhadi, 2015-2016,2020-2021
# Bashar Al-Abdulhadi, 2014
# Eyad Toma <d.eyad.t@gmail.com>, 2013-2014
# Jannis Leidel <jannis@leidel.info>, 2011
# Mariusz Felisiak <felisiak.mariusz@gmail.com>, 2021
# Muaaz Alsaied, 2... | castiel248/Convert | Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po | po | mit | 38,892 |
castiel248/Convert | Lib/site-packages/django/conf/locale/ar/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j F، Y"
TIME_FORMAT = "g:i A"
# DATETIME_FORMAT =
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORMAT = "j F... | castiel248/Convert | Lib/site-packages/django/conf/locale/ar/formats.py | Python | mit | 696 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jihad Bahmaid Al-Halki, 2022
# Riterix <infosrabah@gmail.com>, 2019-2020
# Riterix <infosrabah@gmail.com>, 2019
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-17 05:23-05... | castiel248/Convert | Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po | po | mit | 37,626 |
castiel248/Convert | Lib/site-packages/django/conf/locale/ar_DZ/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j F Y"
TIME_FORMAT = "H:i"
DATETIME_FORMAT = "j F Y H:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORMAT... | castiel248/Convert | Lib/site-packages/django/conf/locale/ar_DZ/formats.py | Python | mit | 901 |
# 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: 2019-09-27 22:40+0200\n"
"PO-Revision-Date: 2019-11-05 00:38+0000\n"
"Last-Translator: Ramiro Mor... | castiel248/Convert | Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po | po | mit | 23,675 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Emin Mastizada <emin@linux.com>, 2018,2020
# Emin Mastizada <emin@linux.com>, 2015-2016
# Metin Amiroff <amiroff@gmail.com>, 2011
# Nicat Məmmədov <n1c4t97@gmail.com>, 2022
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Repo... | castiel248/Convert | Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po | po | mit | 29,723 |
castiel248/Convert | Lib/site-packages/django/conf/locale/az/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j E Y"
TIME_FORMAT = "G:i"
DATETIME_FORMAT = "j E Y, G:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORMA... | castiel248/Convert | Lib/site-packages/django/conf/locale/az/formats.py | Python | mit | 1,087 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Viktar Palstsiuk <vipals@gmail.com>, 2014-2015
# znotdead <zhirafchik@gmail.com>, 2016-2017,2019-2021,2023
# Bobsans <mr.bobsans@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-... | castiel248/Convert | Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po | po | mit | 39,618 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# arneatec <arneatec@gmail.com>, 2022
# Boris Chervenkov <office@sentido.bg>, 2012
# Claude Paroz <claude@2xlibre.net>, 2020
# Jannis Leidel <jannis@leidel.info>, 2011
# Lyuboslav Petrov <petrov.lyuboslav@gmail.com>, 2014
# Todor... | castiel248/Convert | Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po | po | mit | 36,579 |
castiel248/Convert | Lib/site-packages/django/conf/locale/bg/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "d F Y"
TIME_FORMAT = "H:i"
# DATETIME_FORMAT =
# YEAR_MONTH_FORMAT =
MONTH_DAY_FORMAT = "j F"
SHORT... | castiel248/Convert | Lib/site-packages/django/conf/locale/bg/formats.py | Python | mit | 705 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# M Nasimul Haque <nasim.haque@gmail.com>, 2013
# Tahmid Rafi <rafi.tahmid@gmail.com>, 2012-2013
# Tahmid Rafi <rafi.tahmid@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: django... | castiel248/Convert | Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po | po | mit | 26,877 |
castiel248/Convert | Lib/site-packages/django/conf/locale/bn/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j F, Y"
TIME_FORMAT = "g:i A"
# DATETIME_FORMAT =
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORMAT = "j F... | castiel248/Convert | Lib/site-packages/django/conf/locale/bn/formats.py | Python | mit | 964 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Claude Paroz <claude@2xlibre.net>, 2020
# Ewen <ewenak@gmx.com>, 2021
# Fulup <fulup.jakez@gmail.com>, 2012,2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-21 10:22+0... | castiel248/Convert | Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po | po | mit | 24,293 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Filip Dupanović <filip.dupanovic@gmail.com>, 2011
# Jannis Leidel <jannis@leidel.info>, 2011
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-27 22:40+0200\n"
"PO-Revision-... | castiel248/Convert | Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po | po | mit | 22,070 |
castiel248/Convert | Lib/site-packages/django/conf/locale/bs/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j. N Y."
TIME_FORMAT = "G:i"
DATETIME_FORMAT = "j. N. Y. G:i T"
YEAR_MONTH_FORMAT = "F Y."
MONTH_DA... | castiel248/Convert | Lib/site-packages/django/conf/locale/bs/formats.py | Python | mit | 705 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Antoni Aloy <aaloy@apsl.net>, 2012,2015-2017,2021-2022
# Carles Barrobés <carles@barrobes.com>, 2011-2012,2014,2020
# duub qnnp, 2015
# Emilio Carrion, 2022
# Gil Obradors Via <gil.obradors@gmail.com>, 2019
# Gil Obradors Via <g... | castiel248/Convert | Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po | po | mit | 30,320 |
castiel248/Convert | Lib/site-packages/django/conf/locale/ca/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r"j E \d\e Y"
TIME_FORMAT = "G:i"
DATETIME_FORMAT = r"j E \d\e Y \a \l\e\s G:i"
YEAR_MONTH_FORMAT = ... | castiel248/Convert | Lib/site-packages/django/conf/locale/ca/formats.py | Python | mit | 940 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Bawar Jalal, 2021
# Bawar Jalal, 2020-2021
# Bawar Jalal, 2020
# kosar tofiq <kosar.belana@gmail.com>, 2020-2021
# Swara <swara09@gmail.com>, 2022-2023
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"... | castiel248/Convert | Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.po | po | mit | 35,708 |
castiel248/Convert | Lib/site-packages/django/conf/locale/ckb/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j F Y"
TIME_FORMAT = "G:i"
DATETIME_FORMAT = "j F Y، کاتژمێر G:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_D... | castiel248/Convert | Lib/site-packages/django/conf/locale/ckb/formats.py | Python | mit | 728 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Claude Paroz <claude@2xlibre.net>, 2020
# Jannis Leidel <jannis@leidel.info>, 2011
# Jan Papež <honyczek@centrum.cz>, 2012
# trendspotter <jirka.p@volny.cz>, 2022
# Jirka Vejrazka <Jirka.Vejrazka@gmail.com>, 2011
# trendspotter ... | castiel248/Convert | Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po | po | mit | 32,110 |
castiel248/Convert | Lib/site-packages/django/conf/locale/cs/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j. E Y"
TIME_FORMAT = "G:i"
DATETIME_FORMAT = "j. E Y G:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORM... | castiel248/Convert | Lib/site-packages/django/conf/locale/cs/formats.py | Python | mit | 1,539 |
# 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>, 2012,2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-09-27 22:40+0200\n"
"PO-Revi... | castiel248/Convert | Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po | po | mit | 25,758 |
castiel248/Convert | Lib/site-packages/django/conf/locale/cy/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j F Y" # '25 Hydref 2006'
TIME_FORMAT = "P" # '2:30 y.b.'
DATETIME_FORMAT = "j F Y, P" # '25 Hyd... | castiel248/Convert | Lib/site-packages/django/conf/locale/cy/formats.py | Python | mit | 1,355 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Christian Joergensen <christian@gmta.info>, 2012
# Danni Randeris <danniranderis+djangocore@gmail.com>, 2014
# Erik Ramsgaard Wognsen <r4mses@gmail.com>, 2020-2023
# Erik Ramsgaard Wognsen <r4mses@gmail.com>, 2013-2019
# Finn Gr... | castiel248/Convert | Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po | po | mit | 29,809 |
castiel248/Convert | Lib/site-packages/django/conf/locale/da/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j. F Y"
TIME_FORMAT = "H:i"
DATETIME_FORMAT = "j. F Y H:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORM... | castiel248/Convert | Lib/site-packages/django/conf/locale/da/formats.py | Python | mit | 876 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# André Hagenbruch, 2011-2012
# Florian Apolloner <florian@apolloner.eu>, 2011
# Daniel Roschka <dunedan@phoenitydawn.de>, 2016
# Florian Apolloner <florian@apolloner.eu>, 2018,2020-2023
# jnns, 2011,2013
# Jannis Leidel <jannis@l... | castiel248/Convert | Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po | po | mit | 31,245 |
castiel248/Convert | Lib/site-packages/django/conf/locale/de/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j. F Y"
TIME_FORMAT = "H:i"
DATETIME_FORMAT = "j. F Y H:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORM... | castiel248/Convert | Lib/site-packages/django/conf/locale/de/formats.py | Python | mit | 996 |
castiel248/Convert | Lib/site-packages/django/conf/locale/de_CH/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j. F Y"
TIME_FORMAT = "H:i"
DATETIME_FORMAT = "j. F Y H:i"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORM... | castiel248/Convert | Lib/site-packages/django/conf/locale/de_CH/formats.py | Python | mit | 1,377 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Michael Wolf <milupo@sorbzilla.de>, 2016-2023
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-17 02:13-0600\n"
"PO-Revision-Date: 2023-04-25 06:49+0000\n"
"Last-Translator... | castiel248/Convert | Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po | po | mit | 32,789 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Apostolis Bessas <mpessas+txc@transifex.com>, 2013
# Dimitris Glezos <glezos@transifex.com>, 2011,2013,2017
# Fotis Athineos <fotis@transifex.com>, 2021
# Giannis Meletakis <meletakis@gmail.com>, 2015
# Jannis Leidel <jannis@lei... | castiel248/Convert | Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po | po | mit | 37,123 |
castiel248/Convert | Lib/site-packages/django/conf/locale/el/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "d/m/Y"
TIME_FORMAT = "P"
DATETIME_FORMAT = "d/m/Y P"
YEAR_MONTH_FORMAT = "F Y"
MONTH_DAY_FORMAT = "... | castiel248/Convert | Lib/site-packages/django/conf/locale/el/formats.py | Python | mit | 1,241 |
# 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: 2023-01-17 02:13-0600\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/conf/locale/en/LC_MESSAGES/django.po | po | mit | 29,966 |
castiel248/Convert | Lib/site-packages/django/conf/locale/en/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
# Formatting for date objects.
DATE_FORMAT = "N j, Y"
# Formatting for time objects.
TIME_FORMAT = "P"
# Formatti... | castiel248/Convert | Lib/site-packages/django/conf/locale/en/formats.py | Python | mit | 2,438 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Tom Fifield <tom@tomfifield.net>, 2014
# Tom Fifield <tom@tomfifield.net>, 2021
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-21 10:22+0200\n"
"PO-Revision-Date: 2021-11... | castiel248/Convert | Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po | po | mit | 28,270 |
castiel248/Convert | Lib/site-packages/django/conf/locale/en_AU/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j M Y" # '25 Oct 2006'
TIME_FORMAT = "P" # '2:30 p.m.'
DATETIME_FORMAT = "j M Y, P" # '25 Oct 20... | castiel248/Convert | Lib/site-packages/django/conf/locale/en_AU/formats.py | Python | mit | 1,650 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# jon_atkinson <jon@jonatkinson.co.uk>, 2011-2012
# Ross Poulton <ross@rossp.org>, 2011-2012
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Dat... | castiel248/Convert | Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po | po | mit | 22,140 |
castiel248/Convert | Lib/site-packages/django/conf/locale/en_GB/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = "j M Y" # '25 Oct 2006'
TIME_FORMAT = "P" # '2:30 p.m.'
DATETIME_FORMAT = "j M Y, P" # '25 Oct 20... | castiel248/Convert | Lib/site-packages/django/conf/locale/en_GB/formats.py | Python | mit | 1,650 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Batist D 🐍 <baptiste+transifex@darthenay.fr>, 2012-2013
# Batist D 🐍 <baptiste+transifex@darthenay.fr>, 2013-2019
# batisteo <bapdarth@yahoo·fr>, 2011
# Dinu Gherman <gherman@darwin.in-berlin.de>, 2011
# kristjan <kristjan.sch... | castiel248/Convert | Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po | po | mit | 30,235 |
castiel248/Convert | Lib/site-packages/django/conf/locale/eo/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r"j\-\a \d\e F Y" # '26-a de julio 1887'
TIME_FORMAT = "H:i" # '18:59'
DATETIME_FORMAT = r"j\-\a \... | castiel248/Convert | Lib/site-packages/django/conf/locale/eo/formats.py | Python | mit | 1,715 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# 8cb2d5a716c3c9a99b6d20472609a4d5_6d03802 <ce931cb71bc28f3f828fb2dad368a4f7_5255>, 2011
# Abe Estrada, 2013
# Abe Estrada, 2013
# albertoalcolea <albertoalcolea@gmail.com>, 2014
# albertoalcolea <albertoalcolea@gmail.com>, 2014
#... | castiel248/Convert | Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po | po | mit | 32,844 |
castiel248/Convert | Lib/site-packages/django/conf/locale/es/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r"j \d\e F \d\e Y"
TIME_FORMAT = "H:i"
DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i"
YEAR_MONTH... | castiel248/Convert | Lib/site-packages/django/conf/locale/es/formats.py | Python | mit | 978 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Jannis Leidel <jannis@leidel.info>, 2011
# lardissone <lardissone@gmail.com>, 2014
# poli <poli@devartis.com>, 2014
# Ramiro Morales, 2013-2022
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Cr... | castiel248/Convert | Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po | po | mit | 31,561 |
castiel248/Convert | Lib/site-packages/django/conf/locale/es_AR/__init__.py | Python | mit | 0 | |
# This file is distributed under the same license as the Django package.
#
# The *_FORMAT strings use the Django date format syntax,
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r"j N Y"
TIME_FORMAT = r"H:i"
DATETIME_FORMAT = r"j N Y H:i"
YEAR_MONTH_FORMAT = r"F Y"
MONTH_DAY_FO... | castiel248/Convert | Lib/site-packages/django/conf/locale/es_AR/formats.py | Python | mit | 935 |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Carlos Muñoz <cmuozdiaz@outlook.com>, 2015
# Claude Paroz <claude@2xlibre.net>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-19 20:23+0200\n"
"PO-Revision-Date: 20... | castiel248/Convert | Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po | po | mit | 25,107 |