Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Translating BuddyPress


John James Jacoby
Keymaster

@johnjamesjacoby

This will be fixed in 1.0.1. There is a patch for this in the trunk.

In the meantime, try adding this to your functions.php file for your theme(s).

// Load the buddypress translation file for current language
function bp_load_buddypress_textdomain() {
$locale = get_locale();
$locale = apply_filters('buddypress_locale', $locale);
$mofile = BP_PLUGIN_DIR . "/bp-languages/buddypress-$locale.mo";
load_textdomain( 'buddypress', $mofile );
}
add_action ( 'plugins_loaded', 'bp_load_buddypress_textdomain', 9);

Skip to toolbar