You appear to be a bot. Output may be restricted
Description
Load the language specific stuff for the selected domain/pluginThe plugin domain and plugin name are expected to match e.g. "oik", "oik-clone" The language files are expected to be in the languages folder for the plugin
Usage
$bool = bw_load_plugin_textdomain( $domain );
Parameters
- $domain
- ( string ) optional default: oik – the plugin name
Returns
boolSource
File name: oik/libs/bobbfunc.phpLines:
1 to 6 of 6
function bw_load_plugin_textdomain( $domain="oik" ) { $languages_dir = "$domain/languages"; bw_trace2( $languages_dir, "languages dir" ); $loaded = load_plugin_textdomain( $domain, false, $languages_dir ); return $loaded; }View on GitHub View on Trac