* 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:----KlTXyPVHJJWdwBASosPo/I77YNAVeoDOv2dQcbEP0pOu86SuHbGWjK+nrCrjjZgyfbX9KHWTyjewSgFjJBgF2lLJBmaSA40OtGNLQi/6PNYoecYNhf4f0JWE3PYBkLjSw4Gdii+Wmk1XlShBOazX7Xn5SPF9qINl/t7CHySel5FkSLDmGbIt+M+GmDaFQdX1leSVNzuCxmKMqCTaZv8FZc2qPV/jwnaH4nUjDEW9K2+9mSVCAQ7lUJOnfHqV102NQrA3jvekm+3m4piA3FNvsqpAUpbLw67XfzNsR/om4SaTFkecVyWbcQH2xVwQruGC1B+rjUN+h3jOEXHl/Of7jhi2OTfvR7thpeqlwm9bAO9EE7DlWEIDSIFgikxECgBAygeWKBsW9pSakgkMnxVrstuQmHYvLnAu8eqxrmvhxHsfPMsoKBhr7dZojXn5+o+EJl3i0FG95JLY/1nRxQ1FQlXlV+4dfy/ZYJMrb74min1SzyoFzdsYbqcOAE7LdVbhMRrFtQIQULgr/UVD57GNrGAZM/HmHb9C+B+EY6gADsbgfm159DfJg8cCl8NKrLjdvZmMEFn84ZqzJ1IJgAVLL32CGq8hckVgwsG1XeqxPX5pcC2acBLwRbKZj1PSspao8DuQq73Fr7iM1Jx7SD+S00xSczJZ/nhoo7Rqzx/+FBw=----ATTACHMENT:----NTgxMzI3NTE0ODk3ODg2MyAzOTgyNTc1MjYyNzUwMjM2IDIzMzYxNTY4OTM4MDgyNTI=