To replace the word shipping which is more American to delivery the code below will work for you.
add_filter( 'woocommerce_shipping_package_name', 'custom_shipping_package_name' );
function custom_shipping_package_name( $name ) {
return 'Delivery';
}
function fix_woocommerce_strings( $translated, $text) {
// STRING 1
$translated = str_ireplace( 'Shipping', 'Delivery charge', $translated );
return $translated;
}
add_filter( 'gettext', 'fix_woocommerce_strings', 999, 3 );











