Hi pastore80,
You can filter titles in All in One SEO Pack by using the aioseop_title filter. Example:
add_filter( 'aioseop_title', 'pastore80_home_title' );
function pastore80_home_title( $title ) {
if (is_home()) $title = pll__(bloginfo('name'));
return $title;
}
Alternatively, you may enable the Use Original Title option in the General Settings if you do not want All in One SEO Pack to handle your titles here.