function change_theme() {
if(get_locale() == 'ru_RU')
$theme = 'twentytwelve';
else
$theme = 'twentyteleven';
return $theme;
}
add_filter('template', 'fxn_change_theme');
add_filter('option_template', 'fxn_change_theme');
add_filter('option_stylesheet', 'fxn_change_theme');