Loading Canvas & WooCommerce translation file in child theme

There was a syntax error in loading the WooCommerce translations and I managed to get the parent theme translations working by following the same method I used for the WooCommerce translations.

function weg_localisation() {
    unload_textdomain( 'woothemes' );
    load_textdomain('woothemes', get_stylesheet_directory() . '/lang/af_AF.mo');
    unload_textdomain('woocommerce');
    load_textdomain('woocommerce', get_stylesheet_directory() . '/woocommerce/i18n/languages/woocommerce-af_AF.mo');
}
add_action('init', 'weg_localisation');