Can’t translate child theme

Ok, found on a blog this solution, paste in functions.php of your child theme :

function child_theme_slug_setup() {
    load_child_theme_textdomain( 'parent-theme-domain', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'child_theme_slug_setup' );