Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
babel /
messages /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
576
B
-rw-r--r--
2011-03-17 14:03
__init__.pyc
265
B
-rw-r--r--
2014-09-11 16:00
__init__.pyo
265
B
-rw-r--r--
2014-09-11 16:00
catalog.py
29.5
KB
-rw-r--r--
2011-03-17 14:03
catalog.pyc
26.58
KB
-rw-r--r--
2014-09-11 16:00
catalog.pyo
26.41
KB
-rw-r--r--
2014-09-11 16:00
checkers.py
6.1
KB
-rw-r--r--
2011-03-17 14:03
checkers.pyc
5.39
KB
-rw-r--r--
2014-09-11 16:00
checkers.pyo
5.39
KB
-rw-r--r--
2014-09-11 16:00
extract.py
21.98
KB
-rw-r--r--
2011-03-17 14:03
extract.pyc
16.46
KB
-rw-r--r--
2014-09-11 16:00
extract.pyo
16.46
KB
-rw-r--r--
2014-09-11 16:00
frontend.py
48.89
KB
-rw-r--r--
2014-09-11 16:00
frontend.pyc
39.08
KB
-rw-r--r--
2014-09-11 16:00
frontend.pyo
39.04
KB
-rw-r--r--
2014-09-11 16:00
jslexer.py
5.5
KB
-rw-r--r--
2011-03-17 14:03
jslexer.pyc
4.91
KB
-rw-r--r--
2014-09-11 16:00
jslexer.pyo
4.78
KB
-rw-r--r--
2014-09-11 16:00
mofile.py
4.16
KB
-rw-r--r--
2011-03-17 14:03
mofile.pyc
3.04
KB
-rw-r--r--
2014-09-11 16:00
mofile.pyo
3.04
KB
-rw-r--r--
2014-09-11 16:00
plurals.py
6.79
KB
-rw-r--r--
2011-03-17 14:03
plurals.pyc
6.34
KB
-rw-r--r--
2014-09-11 16:00
plurals.pyo
6.34
KB
-rw-r--r--
2014-09-11 16:00
pofile.py
15.67
KB
-rw-r--r--
2011-03-17 14:03
pofile.pyc
13.73
KB
-rw-r--r--
2014-09-11 16:00
pofile.pyo
13.73
KB
-rw-r--r--
2014-09-11 16:00
Save
Rename
� ��Mc @ s= d Z d d l Z d d l Z d g Z d Z e d � Z d S( s� Writing of files in the ``gettext`` MO (machine object) format. :since: version 0.9 :see: `The Format of MO Files <http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files>`_ i����Nt write_mos restructuredtext enc C s� t | � } | s? g | d D] } | j s | ^ q | d )n | j � d } } g } xp| D]h} | j r0d j g | j D] } | j | j � ^ q � } g } xV t | j � D]E \ } } | s� | j | j t t | � d � � q� | j | � q� Wd j g | D] } | j | j � ^ q� } nK | j j | j � } | j sf| j j | j � } n | j j | j � } | j t | � t | � t | � t | � f � | | d 7} | | d 7} q` Wd d t | � } | t | � } g } g } xB | D]: \ } } } } | | | | g 7} | | | | g 7} qW| | } | j t j d d d t | � d d t | � d d d � t j d | � j � | | � d S( s� Write a catalog to the specified file-like object using the GNU MO file format. >>> from babel.messages import Catalog >>> from gettext import GNUTranslations >>> from StringIO import StringIO >>> catalog = Catalog(locale='en_US') >>> catalog.add('foo', 'Voh') >>> catalog.add((u'bar', u'baz'), (u'Bahr', u'Batz')) >>> catalog.add('fuz', 'Futz', flags=['fuzzy']) >>> catalog.add('Fizz', '') >>> catalog.add(('Fuzz', 'Fuzzes'), ('', '')) >>> buf = StringIO() >>> write_mo(buf, catalog) >>> buf.seek(0) >>> translations = GNUTranslations(fp=buf) >>> translations.ugettext('foo') u'Voh' >>> translations.ungettext('bar', 'baz', 1) u'Bahr' >>> translations.ungettext('bar', 'baz', 2) u'Batz' >>> translations.ugettext('fuz') u'fuz' >>> translations.ugettext('Fizz') u'Fizz' >>> translations.ugettext('Fuzz') u'Fuzz' >>> translations.ugettext('Fuzzes') u'Fuzzes' :param fileobj: the file-like object to write to :param catalog: the `Catalog` instance :param use_fuzzy: whether translations marked as "fuzzy" should be included in the output i t t i i i t Iiiiiiil �* i i t iNi i i ( t listt fuzzyt sortt pluralizablet joint idt encodet charsett enumeratet stringt appendt mint intt lent writet structt packt arrayt tostring( t fileobjt catalogt use_fuzzyt messagest mt idst strst offsetst messaget msgidt msgstrst idxR t msgstrt keystartt valuestartt koffsetst voffsetst o1t l1t o2t l2( ( s9 /usr/lib/python2.7/site-packages/babel/messages/mofile.pyR sD '- +&+ 1 ( t __doc__R R t __all__t __docformat__t FalseR ( ( ( s9 /usr/lib/python2.7/site-packages/babel/messages/mofile.pyt <module> s