| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/wtforms-stubs/ |
Upload File : |
from collections.abc import Callable, Iterable
from gettext import GNUTranslations
from typing import Protocol, TypeVar, overload
_T = TypeVar("_T")
class _SupportsUgettextAndUngettext(Protocol):
def ugettext(self, __string: str) -> str: ...
def ungettext(self, __singular: str, __plural: str, __n: int) -> str: ...
def messages_path() -> str: ...
def get_builtin_gnu_translations(languages: Iterable[str] | None = None) -> GNUTranslations: ...
@overload
def get_translations(
languages: Iterable[str] | None = None, getter: Callable[[Iterable[str]], GNUTranslations] = ...
) -> GNUTranslations: ...
@overload
def get_translations(languages: Iterable[str] | None = None, *, getter: Callable[[Iterable[str]], _T]) -> _T: ...
@overload
def get_translations(languages: Iterable[str] | None, getter: Callable[[Iterable[str]], _T]) -> _T: ...
class DefaultTranslations:
translations: _SupportsUgettextAndUngettext
def __init__(self, translations: _SupportsUgettextAndUngettext) -> None: ...
def gettext(self, string: str) -> str: ...
def ngettext(self, singular: str, plural: str, n: int) -> str: ...
class DummyTranslations:
def gettext(self, string: str) -> str: ...
def ngettext(self, singular: str, plural: str, n: int) -> str: ...