Re: First pass at a fix for “deep” integration in trunk
In the german bbpress board (http://support.bbpress.de/topic/installation-der-sprachdatei) i found for the language problem the following code:
// Load the default text localization domain.
if ( !(defined('DB_NAME')) ) { // Include localization the bbPress-way when WP is not running.
load_default_textdomain();
}
else {
$locale = get_locale();
$mofile = BB_LANG_DIR . "$locale.mo";
load_textdomain(‘default’, $mofile);
};
But this seems not to work with the new version.
Markus