Server IP : 85.214.239.14 / Your IP : 3.147.27.71 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/phpMyAdmin/vendor/phpmyadmin/motranslator/src/ |
Upload File : |
<?php /* Copyright (c) 2005 Steven Armstrong <sa at c-area dot ch> Copyright (c) 2009 Danilo Segan <danilo@kvota.net> Copyright (c) 2016 Michal Čihař <michal@cihar.com> This file is part of MoTranslator. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ use PhpMyAdmin\MoTranslator\Loader; /** * Sets a requested locale. * * @param int $category Locale category, ignored * @param string $locale Locale name * * @return string Set or current locale */ function _setlocale($category, $locale) { return Loader::getInstance()->setlocale($locale); } /** * Sets the path for a domain. * * @param string $domain Domain name * @param string $path Path where to find locales */ function _bindtextdomain($domain, $path) { Loader::getInstance()->bindtextdomain($domain, $path); } /** * Dummy compatibility function, MoTranslator assumes * everything is using same character set on input and * output. * * Generally it is wise to output in UTF-8 and have * mo files in UTF-8. * * @param mixed $domain Domain where to set character set * @param mixed $codeset Character set to set */ function _bind_textdomain_codeset($domain, $codeset) { } /** * Sets the default domain. * * @param string $domain Domain name */ function _textdomain($domain) { Loader::getInstance()->textdomain($domain); } /** * Translates a string. * * @param string $msgid String to be translated * * @return string translated string (or original, if not found) */ function _gettext($msgid) { return Loader::getInstance()->getTranslator()->gettext( $msgid ); } /** * Translates a string, alias for _gettext. * * @param string $msgid String to be translated * * @return string translated string (or original, if not found) */ function __($msgid) { return Loader::getInstance()->getTranslator()->gettext( $msgid ); } /** * Plural version of gettext. * * @param string $msgid Single form * @param string $msgidPlural Plural form * @param int $number Number of objects * * @return string translated plural form */ function _ngettext($msgid, $msgidPlural, $number) { return Loader::getInstance()->getTranslator()->ngettext( $msgid, $msgidPlural, $number ); } /** * Translate with context. * * @param string $msgctxt Context * @param string $msgid String to be translated * * @return string translated plural form */ function _pgettext($msgctxt, $msgid) { return Loader::getInstance()->getTranslator()->pgettext( $msgctxt, $msgid ); } /** * Plural version of pgettext. * * @param string $msgctxt Context * @param string $msgid Single form * @param string $msgidPlural Plural form * @param int $number Number of objects * * @return string translated plural form */ function _npgettext($msgctxt, $msgid, $msgidPlural, $number) { return Loader::getInstance()->getTranslator()->npgettext( $msgctxt, $msgid, $msgidPlural, $number ); } /** * Translates a string. * * @param string $domain Domain to use * @param string $msgid String to be translated * * @return string translated string (or original, if not found) */ function _dgettext($domain, $msgid) { return Loader::getInstance()->getTranslator($domain)->gettext( $msgid ); } /** * Plural version of gettext. * * @param string $domain Domain to use * @param string $msgid Single form * @param string $msgidPlural Plural form * @param int $number Number of objects * * @return string translated plural form */ function _dngettext($domain, $msgid, $msgidPlural, $number) { return Loader::getInstance()->getTranslator($domain)->ngettext( $msgid, $msgidPlural, $number ); } /** * Translate with context. * * @param string $domain Domain to use * @param string $msgctxt Context * @param string $msgid String to be translated * * @return string translated plural form */ function _dpgettext($domain, $msgctxt, $msgid) { return Loader::getInstance()->getTranslator($domain)->pgettext( $msgctxt, $msgid ); } /** * Plural version of pgettext. * * @param string $domain Domain to use * @param string $msgctxt Context * @param string $msgid Single form * @param string $msgidPlural Plural form * @param int $number Number of objects * * @return string translated plural form */ function _dnpgettext($domain, $msgctxt, $msgid, $msgidPlural, $number) { return Loader::getInstance()->getTranslator($domain)->npgettext( $msgctxt, $msgid, $msgidPlural, $number ); }