How can I set up multi language admin ui?
There are a couple of methods that this can be done without the overhead of plugins. Method 1 The first method involves hooking to the load_textdomain_mofile filter. (This must go into a separate plugin) function wpse31785_change_mofile( $mofile, $domain ) { if ( $domain == ‘default’ and get_current_user() == ‘riccardo’ ) return substr($mofile, 0, -8).’it_IT.mo’; return … Read more