Hi,
It seems that Suits, although possessing a translate page, is not i18n ready.
Any piece of information about that?
Put this in the functions.php of Suits child theme.
//* define parent and child theme text domain
define( 'PARENT_THEME_TEXTDOMAIN', 'suits' );
define( 'CHILD_THEME_TEXTDOMAIN', 'suits-child' );
add_action( 'after_setup_theme','mychildtheme_load_textdomain');
//* load parent and child theme translation file.
function mychildtheme_load_textdomain() {
// load the custom parent theme translation file
load_theme_textdomain( PARENT_THEME_TEXTDOMAIN, get_stylesheet_directory() . '/languages/suits' );
// load the child theme translation file
load_child_theme_textdomain( CHILD_THEME_TEXTDOMAIN, get_stylesheet_directory() . '/languages' );
}
Then put suits-fr_FR.[mo|po] in /wp-content/languages/themes