| Server IP : 85.214.239.14 / Your IP : 216.73.216.122 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/lib/python3.11/__pycache__/ |
Upload File : |
�
��h6S � � � d Z ddlZddlZddlZg d�Zej � ej dd� � Z ej dej
ej z � � Zd� Z
d� Zd Zd
� eed� � D � � Zdd
dd�Zd)d�Zd� Zd� Zd� Z G d� d� � Z G d� de� � Zd*d�Zi Z d+d�Zd,dd�d�Zi adad,d�Zd,d �Zd!� Z d"� Z!d#� Z"d$� Z#d%� Z$d&� Z%d'� Z&d(� Z'eZ(dS )-a� 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�bindtextdomain�find�translation�install�
textdomain�dgettext� dngettext�gettext�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 # �� K � t j t | � � D ]A}|j }|dk r�|� |� � }|dk rt d|z � � �|V � �BdV � d S )N�WHITESPACES�INVALIDz invalid token in plural form: %s� )�re�finditer�_token_pattern� lastgroup�group�
ValueError)�plural�mo�kind�values �/usr/lib/python3.11/gettext.py� _tokenizer$ V s| � � � ��k�.�&�1�1� � ���|���=� � ����������9����?�%�G�H�H�H������
�H�H�H�H�H� c �H � | rt d| z � � S t d� � S )Nz#unexpected token in plural form: %szunexpected end of plural form)r )r"