Index: .
===================================================================
--- .	(revision 1363)
+++ .	(working copy)
@@ -18,12 +18,22 @@
 	require_once(BB_PATH . BB_INC . 'wp-functions.php');
 	require_once(BB_PATH . BB_INC . 'functions.php');
 	
+	// Example, launch french translation
+	define('BB_LANG', 'fr_FR');
+	
 	// Only load these if we need a translation
 	if (defined('BB_LANG') && BB_LANG) {
 		require_once(BB_PATH . BB_INC . 'streams.php');
 		require_once(BB_PATH . BB_INC . 'gettext.php');
 	}
 	
+	// Define the language file directory
+	if ( !defined('BB_LANG_DIR') )
+		if ( defined('BBLANGDIR') ) // User has set old constant
+			define('BB_LANG_DIR', BBLANGDIR);
+		else
+			define('BB_LANG_DIR', BB_PATH . BB_INC . 'languages/'); // absolute path with trailing slash
+	
 	// All strings pass through gettext, but not all will get translated, BB_LANG usually isn't defined early on
 	require_once(BB_PATH . BB_INC . 'l10n.php');
 	

