/*
 Theme Name:   Bonbon Child Theme
 Theme URI:    https://bonbon.themerex.net
 Description:  Bonbon Child Theme
 Author:       ThemeREX
 Author URI:   https://themerex.net/
 Template:     bonbon
 Version:      1.0.0    
 Tags:         confectionery, cake bakery, artisanal shop, chocolatier, pastry shop, chocolate boutique, gift shop, sweets, desserts, bakery, confections, chocolate, recipe blog, celebration, handmade
 Text Domain:  bonbon
*/


/* =Theme customization starts here
------------------------------------------------------------ */
add_filter( 'gettext', 'bonbon_force_translate_update_cart', 20, 3 );
function bonbon_force_translate_update_cart( $translated_text, $text, $domain ) {

    if ( strtolower( trim( $text ) ) === 'update cart' ) {
        return 'Actualizar carrito';
    }

    return $translated_text;
}

