Hello,
Just a comment to let it clear, it works in your functions.php. Here is a little working example:
add_filter(‘bogo_localizable_post_types’, ‘my_localizable_post_types’, 10, 1);
function my_localizable_post_types($localizable) {
$localizable[] = ‘event’;
return $localizable;
}