I added this code to my functions.php file
add_filter('locale', 'wpse27056_setLocale');
function wpse27056_setLocale($locale) {
if ( is_admin() ) {
return 'en_US';
}
return $locale;
}
so the frontend is available in ro_RO
and wp-admin
is available in en_US
Well… that almost worked excepting Yoast’s WordPress SEO plugin which is translated in romanian.
What can i do with that plugin to be displayed in english?