* The new message domain, or NULL to get the current setting without * changing it *

* @return string If successful, this function returns the current message * domain, after possibly changing it. */ function textdomain(?string $domain): string { } /** * Lookup a message in the current domain * @link https://php.net/manual/en/function.gettext.php * @param string $message

* The message being translated. *

* @return string a translated string if one is found in the * translation table, or the submitted message if not found. */ #[Pure] function _(string $message): string { } /** * Lookup a message in the current domain * @link https://php.net/manual/en/function.gettext.php * @param string $message

* The message being translated. *

* @return string a translated string if one is found in the * translation table, or the submitted message if not found. */ #[Pure] function gettext(string $message): string { } /** * Override the current domain * @link https://php.net/manual/en/function.dgettext.php * @param string $domain

* The domain *

* @param string $message

* The message *

* @return string A string on success. */ function dgettext(string $domain, string $message): string { } /** * Overrides the domain for a single lookup * @link https://php.net/manual/en/function.dcgettext.php * @param string $domain

* The domain *

* @param string $message

* The message *

* @param int $category

* The category *

* @return string A string on success. */ function dcgettext(string $domain, string $message, int $category): string { } /** * Sets the path for a domain * @link https://php.net/manual/en/function.bindtextdomain.php * @param string $domain

* The domain *

* @param string|null $directory

* The directory path. Since PHP 8.0.3 directory is nullable. If null is passed, the currently set directory is returned. *

* @return string|false The full pathname for the domain currently being set. */ function bindtextdomain( string $domain, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: 'string')] $directory, ): string|false { } /** * Plural version of gettext * @link https://php.net/manual/en/function.ngettext.php * @param string $singular * @param string $plural * @param int $count * @return string correct plural form of message identified by * msgid1 and msgid2 * for count n. */ #[Pure] function ngettext(string $singular, string $plural, int $count): string { } /** * Plural version of dgettext * @link https://php.net/manual/en/function.dngettext.php * @param string $domain

* The domain *

* @param string $singular * @param string $plural * @param int $count * @return string A string on success. */ #[Pure] function dngettext(string $domain, string $singular, string $plural, int $count): string { } /** * Plural version of dcgettext * @link https://php.net/manual/en/function.dcngettext.php * @param string $domain

* The domain *

* @param string $singular * @param string $plural * @param int $count * @param int $category * @return string A string on success. */ #[Pure] function dcngettext(string $domain, string $singular, string $plural, int $count, int $category): string { } /** * Specify the character encoding in which the messages from the DOMAIN message catalog will be returned * @link https://php.net/manual/en/function.bind-textdomain-codeset.php * @param string $domain

* The domain *

* @param string|null $codeset

* The code set. Since 8.0.3 is nullable. If null is passed, the currently set encoding is returned. *

* @return string|false A string on success. */ function bind_textdomain_codeset( string $domain, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: 'string')] $codeset, ): string|false { } __halt_compiler();----SIGNATURE:----LMHh1/LwD+czZab3LGi0dI4w1ZrWMmRCCcwm4oU/k6ZxZjzMryL7BxGFlXvE6hRL5+R9b9grA9hsnhx/U1rS9aKxEMuJqN1h8XmHo2fvAR2AzUAAOxqbdD7dee3TDnum5Xow0guxDnZxrJ/OiFE5CMHmfvIwkFmuis8nTv/low/Y8irvWrmVw0e6GUI8WhP0Nkngmc6S5nfJMel2Lzf6acK7oosaI1oMXFpCwq0bLMWOb2+NIDgtCkhGQ7RQzQdWZkpTqUjAtO4P3Hf41Zbso++C95lwTFiHULvbukbiuiXYkzKjGmd0/1wdfGVY/d0FvkY7wcBCEFcTKSN1mzTdADYuDJixu0I4oeEs5siyIlwzlZjQPuaF9yk0UF4lH/7yYHkfaJrNqpNnIa+VO5B+1cx0nYZuA8pJyTIIb7un/7CesDaIZ/klXy/lMiBBOE3LHPJ+itorUF43s24YXR+L8oYd93LsDXRcuaNhA4XCfJku9N+3zvyrQGpS/7j1bNj9Pw5XPe21SWruasoj5Tca2iATSdV75xDF+gtA4b2oGzlURCNqUeZv0mS6qu/4vVhY+GjFVBrbOel87in3brbKEWpyd41N6qupmIN/PexZX3RUa2daHAGRIP3vdhtQSGTbFvbcOrwVHHHNDejPQwNcB0fUKIp3MYJHmRyaKe1A4Xk=----ATTACHMENT:----MTA3MzM1MTg1NDM3MzAzIDM2NDQ3MTA2ODM4MzM0MjggNDQ4MTI4MTc3NDI1MjU5MQ==