done
This commit is contained in:
38
lib/python3.11/site-packages/babel/__init__.py
Normal file
38
lib/python3.11/site-packages/babel/__init__.py
Normal file
@ -0,0 +1,38 @@
|
||||
"""
|
||||
babel
|
||||
~~~~~
|
||||
|
||||
Integrated collection of utilities that assist in internationalizing and
|
||||
localizing applications.
|
||||
|
||||
This package is basically composed of two major parts:
|
||||
|
||||
* tools to build and work with ``gettext`` message catalogs
|
||||
* a Python interface to the CLDR (Common Locale Data Repository), providing
|
||||
access to various locale display names, localized number and date
|
||||
formatting, etc.
|
||||
|
||||
:copyright: (c) 2013-2025 by the Babel Team.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
from babel.core import (
|
||||
Locale,
|
||||
UnknownLocaleError,
|
||||
default_locale,
|
||||
get_locale_identifier,
|
||||
negotiate_locale,
|
||||
parse_locale,
|
||||
)
|
||||
|
||||
__version__ = '2.17.0'
|
||||
|
||||
__all__ = [
|
||||
'Locale',
|
||||
'UnknownLocaleError',
|
||||
'__version__',
|
||||
'default_locale',
|
||||
'get_locale_identifier',
|
||||
'negotiate_locale',
|
||||
'parse_locale',
|
||||
]
|
1337
lib/python3.11/site-packages/babel/core.py
Normal file
1337
lib/python3.11/site-packages/babel/core.py
Normal file
File diff suppressed because it is too large
Load Diff
1999
lib/python3.11/site-packages/babel/dates.py
Normal file
1999
lib/python3.11/site-packages/babel/dates.py
Normal file
File diff suppressed because it is too large
Load Diff
BIN
lib/python3.11/site-packages/babel/global.dat
Normal file
BIN
lib/python3.11/site-packages/babel/global.dat
Normal file
Binary file not shown.
72
lib/python3.11/site-packages/babel/languages.py
Normal file
72
lib/python3.11/site-packages/babel/languages.py
Normal file
@ -0,0 +1,72 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from babel.core import get_global
|
||||
|
||||
|
||||
def get_official_languages(territory: str, regional: bool = False, de_facto: bool = False) -> tuple[str, ...]:
|
||||
"""
|
||||
Get the official language(s) for the given territory.
|
||||
|
||||
The language codes, if any are known, are returned in order of descending popularity.
|
||||
|
||||
If the `regional` flag is set, then languages which are regionally official are also returned.
|
||||
|
||||
If the `de_facto` flag is set, then languages which are "de facto" official are also returned.
|
||||
|
||||
.. warning:: Note that the data is as up to date as the current version of the CLDR used
|
||||
by Babel. If you need scientifically accurate information, use another source!
|
||||
|
||||
:param territory: Territory code
|
||||
:type territory: str
|
||||
:param regional: Whether to return regionally official languages too
|
||||
:type regional: bool
|
||||
:param de_facto: Whether to return de-facto official languages too
|
||||
:type de_facto: bool
|
||||
:return: Tuple of language codes
|
||||
:rtype: tuple[str]
|
||||
"""
|
||||
|
||||
territory = str(territory).upper()
|
||||
allowed_stati = {"official"}
|
||||
if regional:
|
||||
allowed_stati.add("official_regional")
|
||||
if de_facto:
|
||||
allowed_stati.add("de_facto_official")
|
||||
|
||||
languages = get_global("territory_languages").get(territory, {})
|
||||
pairs = [
|
||||
(info['population_percent'], language)
|
||||
for language, info in languages.items()
|
||||
if info.get('official_status') in allowed_stati
|
||||
]
|
||||
pairs.sort(reverse=True)
|
||||
return tuple(lang for _, lang in pairs)
|
||||
|
||||
|
||||
def get_territory_language_info(territory: str) -> dict[str, dict[str, float | str | None]]:
|
||||
"""
|
||||
Get a dictionary of language information for a territory.
|
||||
|
||||
The dictionary is keyed by language code; the values are dicts with more information.
|
||||
|
||||
The following keys are currently known for the values:
|
||||
|
||||
* `population_percent`: The percentage of the territory's population speaking the
|
||||
language.
|
||||
* `official_status`: An optional string describing the officiality status of the language.
|
||||
Known values are "official", "official_regional" and "de_facto_official".
|
||||
|
||||
.. warning:: Note that the data is as up to date as the current version of the CLDR used
|
||||
by Babel. If you need scientifically accurate information, use another source!
|
||||
|
||||
.. note:: Note that the format of the dict returned may change between Babel versions.
|
||||
|
||||
See https://www.unicode.org/cldr/charts/latest/supplemental/territory_language_information.html
|
||||
|
||||
:param territory: Territory code
|
||||
:type territory: str
|
||||
:return: Language information dictionary
|
||||
:rtype: dict[str, dict]
|
||||
"""
|
||||
territory = str(territory).upper()
|
||||
return get_global("territory_languages").get(territory, {}).copy()
|
132
lib/python3.11/site-packages/babel/lists.py
Normal file
132
lib/python3.11/site-packages/babel/lists.py
Normal file
@ -0,0 +1,132 @@
|
||||
"""
|
||||
babel.lists
|
||||
~~~~~~~~~~~
|
||||
|
||||
Locale dependent formatting of lists.
|
||||
|
||||
The default locale for the functions in this module is determined by the
|
||||
following environment variables, in that order:
|
||||
|
||||
* ``LC_ALL``, and
|
||||
* ``LANG``
|
||||
|
||||
:copyright: (c) 2015-2025 by the Babel Team.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import warnings
|
||||
from collections.abc import Sequence
|
||||
from typing import Literal
|
||||
|
||||
from babel.core import Locale, default_locale
|
||||
|
||||
_DEFAULT_LOCALE = default_locale() # TODO(3.0): Remove this.
|
||||
|
||||
|
||||
def __getattr__(name):
|
||||
if name == "DEFAULT_LOCALE":
|
||||
warnings.warn(
|
||||
"The babel.lists.DEFAULT_LOCALE constant is deprecated and will be removed.",
|
||||
DeprecationWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
return _DEFAULT_LOCALE
|
||||
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
||||
|
||||
|
||||
def format_list(
|
||||
lst: Sequence[str],
|
||||
style: Literal['standard', 'standard-short', 'or', 'or-short', 'unit', 'unit-short', 'unit-narrow'] = 'standard',
|
||||
locale: Locale | str | None = None,
|
||||
) -> str:
|
||||
"""
|
||||
Format the items in `lst` as a list.
|
||||
|
||||
>>> format_list(['apples', 'oranges', 'pears'], locale='en')
|
||||
u'apples, oranges, and pears'
|
||||
>>> format_list(['apples', 'oranges', 'pears'], locale='zh')
|
||||
u'apples\u3001oranges\u548cpears'
|
||||
>>> format_list(['omena', 'peruna', 'aplari'], style='or', locale='fi')
|
||||
u'omena, peruna tai aplari'
|
||||
|
||||
Not all styles are necessarily available in all locales.
|
||||
The function will attempt to fall back to replacement styles according to the rules
|
||||
set forth in the CLDR root XML file, and raise a ValueError if no suitable replacement
|
||||
can be found.
|
||||
|
||||
The following text is verbatim from the Unicode TR35-49 spec [1].
|
||||
|
||||
* standard:
|
||||
A typical 'and' list for arbitrary placeholders.
|
||||
eg. "January, February, and March"
|
||||
* standard-short:
|
||||
A short version of an 'and' list, suitable for use with short or abbreviated placeholder values.
|
||||
eg. "Jan., Feb., and Mar."
|
||||
* or:
|
||||
A typical 'or' list for arbitrary placeholders.
|
||||
eg. "January, February, or March"
|
||||
* or-short:
|
||||
A short version of an 'or' list.
|
||||
eg. "Jan., Feb., or Mar."
|
||||
* unit:
|
||||
A list suitable for wide units.
|
||||
eg. "3 feet, 7 inches"
|
||||
* unit-short:
|
||||
A list suitable for short units
|
||||
eg. "3 ft, 7 in"
|
||||
* unit-narrow:
|
||||
A list suitable for narrow units, where space on the screen is very limited.
|
||||
eg. "3′ 7″"
|
||||
|
||||
[1]: https://www.unicode.org/reports/tr35/tr35-49/tr35-general.html#ListPatterns
|
||||
|
||||
:param lst: a sequence of items to format in to a list
|
||||
:param style: the style to format the list with. See above for description.
|
||||
:param locale: the locale. Defaults to the system locale.
|
||||
"""
|
||||
locale = Locale.parse(locale or _DEFAULT_LOCALE)
|
||||
if not lst:
|
||||
return ''
|
||||
if len(lst) == 1:
|
||||
return lst[0]
|
||||
|
||||
patterns = _resolve_list_style(locale, style)
|
||||
|
||||
if len(lst) == 2 and '2' in patterns:
|
||||
return patterns['2'].format(*lst)
|
||||
|
||||
result = patterns['start'].format(lst[0], lst[1])
|
||||
for elem in lst[2:-1]:
|
||||
result = patterns['middle'].format(result, elem)
|
||||
result = patterns['end'].format(result, lst[-1])
|
||||
|
||||
return result
|
||||
|
||||
|
||||
# Based on CLDR 45's root.xml file's `<alias>`es.
|
||||
# The root file defines both `standard` and `or`,
|
||||
# so they're always available.
|
||||
# TODO: It would likely be better to use the
|
||||
# babel.localedata.Alias mechanism for this,
|
||||
# but I'm not quite sure how it's supposed to
|
||||
# work with inheritance and data in the root.
|
||||
_style_fallbacks = {
|
||||
"or-narrow": ["or-short", "or"],
|
||||
"or-short": ["or"],
|
||||
"standard-narrow": ["standard-short", "standard"],
|
||||
"standard-short": ["standard"],
|
||||
"unit": ["unit-short", "standard"],
|
||||
"unit-narrow": ["unit-short", "unit", "standard"],
|
||||
"unit-short": ["standard"],
|
||||
}
|
||||
|
||||
|
||||
def _resolve_list_style(locale: Locale, style: str):
|
||||
for style in (style, *(_style_fallbacks.get(style, []))): # noqa: B020
|
||||
if style in locale.list_patterns:
|
||||
return locale.list_patterns[style]
|
||||
raise ValueError(
|
||||
f"Locale {locale} does not support list formatting style {style!r} "
|
||||
f"(supported are {sorted(locale.list_patterns)})",
|
||||
)
|
@ -0,0 +1,41 @@
|
||||
UNICODE LICENSE V3
|
||||
|
||||
COPYRIGHT AND PERMISSION NOTICE
|
||||
|
||||
Copyright © 2004-2025 Unicode, Inc.
|
||||
|
||||
NOTICE TO USER: Carefully read the following legal agreement. BY
|
||||
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
|
||||
SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
|
||||
TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
|
||||
DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of data files and any associated documentation (the "Data Files") or
|
||||
software and any associated documentation (the "Software") to deal in the
|
||||
Data Files or Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, and/or sell
|
||||
copies of the Data Files or Software, and to permit persons to whom the
|
||||
Data Files or Software are furnished to do so, provided that either (a)
|
||||
this copyright and permission notice appear with all copies of the Data
|
||||
Files or Software, or (b) this copyright and permission notice appear in
|
||||
associated Documentation.
|
||||
|
||||
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
THIRD PARTY RIGHTS.
|
||||
|
||||
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
|
||||
BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
|
||||
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
|
||||
FILES OR SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of a copyright holder shall
|
||||
not be used in advertising or otherwise to promote the sale, use or other
|
||||
dealings in these Data Files or Software without prior written
|
||||
authorization of the copyright holder.
|
||||
|
||||
SPDX-License-Identifier: Unicode-3.0
|
BIN
lib/python3.11/site-packages/babel/locale-data/aa.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/aa.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/aa_DJ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/aa_DJ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/aa_ER.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/aa_ER.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/aa_ET.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/aa_ET.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ab.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ab.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ab_GE.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ab_GE.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/af.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/af.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/af_NA.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/af_NA.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/af_ZA.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/af_ZA.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/agq.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/agq.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/agq_CM.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/agq_CM.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ak.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ak.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ak_GH.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ak_GH.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/am.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/am.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/am_ET.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/am_ET.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/an.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/an.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/an_ES.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/an_ES.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ann.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ann.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ann_NG.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ann_NG.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/apc.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/apc.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/apc_SY.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/apc_SY.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_001.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_001.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_AE.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_AE.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_BH.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_BH.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_DJ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_DJ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_DZ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_DZ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_EG.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_EG.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_EH.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_EH.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_ER.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_ER.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_IL.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_IL.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_IQ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_IQ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_JO.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_JO.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_KM.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_KM.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_KW.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_KW.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_LB.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_LB.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_LY.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_LY.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_MA.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_MA.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_MR.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_MR.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_OM.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_OM.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_PS.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_PS.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_QA.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_QA.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SA.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SA.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SD.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SD.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SO.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SO.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SS.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SS.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SY.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_SY.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_TD.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_TD.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_TN.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_TN.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ar_YE.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ar_YE.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/arn.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/arn.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/arn_CL.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/arn_CL.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/as.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/as.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/as_IN.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/as_IN.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/asa.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/asa.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/asa_TZ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/asa_TZ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ast.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ast.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ast_ES.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ast_ES.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_IQ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_IQ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_IR.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_IR.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_TR.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Arab_TR.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Cyrl.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Cyrl.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Cyrl_AZ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Cyrl_AZ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Latn.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Latn.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/az_Latn_AZ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/az_Latn_AZ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ba.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ba.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/ba_RU.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/ba_RU.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bal.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bal.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Arab.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Arab.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Arab_PK.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Arab_PK.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Latn.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Latn.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Latn_PK.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bal_Latn_PK.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bas.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bas.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bas_CM.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bas_CM.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/be.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/be.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/be_BY.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/be_BY.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/be_TARASK.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/be_TARASK.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bem.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bem.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bem_ZM.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bem_ZM.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bew.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bew.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bew_ID.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bew_ID.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bez.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bez.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bez_TZ.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bez_TZ.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bg.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bg.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bg_BG.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bg_BG.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgc.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgc.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgc_IN.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgc_IN.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgn.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgn.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_AE.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_AE.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_AF.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_AF.dat
Normal file
Binary file not shown.
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_IR.dat
Normal file
BIN
lib/python3.11/site-packages/babel/locale-data/bgn_IR.dat
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user