WPINC_l10n.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki
interface CoreTranslationInterface {
function get_locale();
function get_user_locale( $user_id = 0 );
function translate( $text, $domain = 'default' );
function before_last_bar( $string );
function translate_with_gettext_context( $text, $context, $domain = 'default' );
function __( $text, $domain = 'default' );
function esc_attr__( $text, $domain = 'default' );
function esc_html__( $text, $domain = 'default' );
function _e( $text, $domain = 'default' );
function esc_attr_e( $text, $domain = 'default' );
function esc_html_e( $text, $domain = 'default' );
function _x( $text, $context, $domain = 'default' );
function _ex( $text, $context, $domain = 'default' );
function esc_attr_x( $text, $context, $domain = 'default' );
function esc_html_x( $text, $context, $domain = 'default' );
function _n( $single, $plural, $number, $domain = 'default' );
function _nx($single, $plural, $number, $context, $domain = 'default');
function _n_noop( $singular, $plural, $domain = null );
function _nx_noop( $singular, $plural, $context, $domain = null );
function translate_nooped_plural( $nooped_plural, $count, $domain = 'default' );
function load_textdomain( $domain, $mofile );
function unload_textdomain( $domain );
function load_default_textdomain( $locale = null );
function load_plugin_textdomain( $domain, $deprecated = false, $plugin_rel_path = false );
function load_muplugin_textdomain( $domain, $mu_plugin_rel_path = '' );
function load_theme_textdomain( $domain, $path = false );
function load_child_theme_textdomain( $domain, $path = false );
function _load_textdomain_just_in_time( $domain );
function _get_path_to_translation( $domain, $reset = false );
function _get_path_to_translation_from_lang_dir( $domain );
function get_translations_for_domain( $domain );
function is_textdomain_loaded( $domain );
function translate_user_role( $name );
function get_available_languages( $dir = null );
function wp_get_installed_translations( $type );
function wp_get_pomo_file_data( $po_file );
function wp_dropdown_languages( $args = array() );
function is_rtl();
function switch_to_locale( $locale );
function restore_previous_locale();
function restore_current_locale();
function is_locale_switched();
}