mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
* Add empty stubs for gettext Translations subclasses GNUTranslations and NullTranslations do not add any methods to the base Translations class, so remove the TODO comment and just declare the classes. * Add missing types for py3 gettext.
45 lines
1.9 KiB
Python
45 lines
1.9 KiB
Python
# Stubs for gettext (Python 3.4)
|
|
|
|
from typing import Any, IO, List, Optional, Union, Callable
|
|
|
|
class NullTranslations:
|
|
def __init__(self, fp: IO[str] = ...) -> None: ...
|
|
def add_fallback(self, fallback: NullTranslations) -> None: ...
|
|
def gettext(self, message: str) -> str: ...
|
|
def lgettext(self, message: str) -> str: ...
|
|
def ngettext(self, singular: str, plural: str, n: int) -> str: ...
|
|
def lngettext(self, singular: str, plural: str, n: int) -> str: ...
|
|
def info(self) -> Any: ...
|
|
def charset(self) -> Any: ...
|
|
def output_charset(self) -> Any: ...
|
|
def set_output_charset(self, charset: Any) -> None: ...
|
|
def install(self, names: List[str] = ...) -> None: ...
|
|
|
|
class GNUTranslations(NullTranslations):
|
|
LE_MAGIC = ... # type: int
|
|
BE_MAGIC = ... # type: int
|
|
|
|
def find(domain: str, localedir: str = ..., languages: List[str] = ...,
|
|
all: bool = ...): ...
|
|
|
|
def translation(domain: str, localedir: str = ..., languages: List[str] = ...,
|
|
class_: Callable[[IO[str]], NullTranslations] = ...,
|
|
fallback: bool =... , codeset: Any = ...) -> NullTranslations: ...
|
|
|
|
def install(domain: str, localedir: str = ..., codeset: Any = ...,
|
|
names: List[str] = ...): ...
|
|
|
|
def textdomain(domain: str = ...) -> str: ...
|
|
def bindtextdomain(domain: str, localedir: str = ...) -> str: ...
|
|
def bind_textdomain_codeset(domain: str, codeset: str = ...) -> str: ...
|
|
def dgettext(domain: str, message: str) -> str: ...
|
|
def ldgettext(domain: str, message: str) -> str: ...
|
|
def dngettext(domain: str, singular: str, plural: str, n: int) -> str: ...
|
|
def ldngettext(domain: str, singular: str, plural: str, n: int) -> str: ...
|
|
def gettext(message: str) -> str: ...
|
|
def lgettext(message: str) -> str: ...
|
|
def ngettext(singular: str, plural: str, n: int) -> str: ...
|
|
def lngettext(singular: str, plural: str, n: int) -> str: ...
|
|
|
|
Catalog = translation
|