ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
2026-09-12 22:02:04
Editing: l10n.php
Cancel
Save Changes
<?php function get_locale() { global $locale; if (isset($locale)) return apply_filters( 'locale', $locale ); // WPLANG is defined in wp-config. if (defined('WPLANG')) $locale = WPLANG; if (empty($locale)) $locale = ''; $locale = apply_filters('locale', $locale); return $locale; } function translate($text, $domain) { global $l10n; if (isset($l10n[$domain])) return apply_filters('gettext', $l10n[$domain]->translate($text), $text); else return $text; } // Return a translated string. function __($text, $domain = 'default') { return translate($text, $domain); } // Echo a translated string. function _e($text, $domain = 'default') { echo translate($text, $domain); } function _c($text, $domain = 'default') { $whole = translate($text, $domain); $last_bar = strrpos($whole, '|'); if ( false == $last_bar ) { return $whole; } else { return substr($whole, 0, $last_bar); } } // Return the plural form. function __ngettext($single, $plural, $number, $domain = 'default') { global $l10n; if (isset($l10n[$domain])) { return apply_filters('ngettext', $l10n[$domain]->ngettext($single, $plural, $number), $single, $plural, $number); } else { if ($number != 1) return $plural; else return $single; } } function load_textdomain($domain, $mofile) { global $l10n; if (isset($l10n[$domain])) return; if ( is_readable($mofile)) $input = new CachedFileReader($mofile); else return; $l10n[$domain] = new gettext_reader($input); } function load_default_textdomain() { global $l10n; $locale = get_locale(); if ( empty($locale) ) $locale = 'en_US'; $mofile = ABSPATH . LANGDIR . "/$locale.mo"; load_textdomain('default', $mofile); } function load_plugin_textdomain($domain, $path = false) { $locale = get_locale(); if ( empty($locale) ) $locale = 'en_US'; if ( false === $path ) $path = PLUGINDIR; $mofile = ABSPATH . "$path/$domain-$locale.mo"; load_textdomain($domain, $mofile); } function load_theme_textdomain($domain) { $locale = get_locale(); if ( empty($locale) ) $locale = 'en_US'; $mofile = get_template_directory() . "/$locale.mo"; load_textdomain($domain, $mofile); }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete