* 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:----oF70gVzZQU2E8rRvx49ElyimoVcf2ybI5mpyIW9KJ5oge7nERaC+oRAPWlNAbSKfu8RnaZ0q7d79oUnqy9uczOSw7y8mctyd91wT6g2Jn+K8qzgZ5UamrYCNtyzUNx492P3MuLNsGB1MxcctAhYqyuvhxSsWQqRwsppEPqBSOUAWDnzweh51oTcDh0XWKV2cDWgSNrzmZ3dP+U9kMHMpF2L0rxWMBBzQ20Ck3A44sXqOFs9iY+OYBhyrvFOsGnbQ1yTAd/GQk1w8rxMvc4YL/tyf4pKJPuiPpBufevdmuQN44JKesImLg34xODmelEAbXiYTm0quPu9DFFX8FrKhsuoV6e8f5TgIDX6xp3jZ9Eleju8QeSlUcI0q5n8l7uAzLBVMs3E2/8jHv1/wGAnT3FPAMEJwCL70btXVvjfe349WMmA2xkyQ5CqQwsLmVNGWI62UEdyHm1/KTSdkkx0o0VM3QkdadB0gzRbVThDDkb0xiQAcfSIubQQNqje6fRRGTlUMQvkKWlj7Y47TPN+QdXUvXWSnX9EysuXatF76sGaRQDkA0Hs1rhZauOOtHptC/lcXYs9bi5Lhr6pPTGo6DpTuTzp4CLLa56davygbi0VjnytYy7bWvqnxbh4eC2OGJq5BTIvpLreapE5qpJB3OOyazwe8YgimyIiwcrhpnmw=----ATTACHMENT:----NDE4NjAzNDcwNTkwMjQ5MSAyMTMxNDUxMTU3NTAyNDkzIDYyNTkyMjI1NjA2MjU4OTU=