WordPress Multilingual Theme using Multisite

Have you added the Function load_theme_textdomain to the theme? so if you have them themes .mo files in theme/mytheme/languages

Loads the theme’s translated strings:

add_action('after_setup_theme', 'my_theme_setup');
function my_theme_setup(){
    load_theme_textdomain('my_theme', get_template_directory() . '/languages');
}

Put this in your functions.php