Questions about product_block and request for full name notation.
-
I was wondering why the same numbers are output in the following two places in product_block. Sorry if my understanding is incorrect.
class-cartflows-ca-tabs.php line 464 and 465
class-cartflows-ca-email-schedule.php line 313 and 314
If “Price” means “unit price”, then these lines should be $cart_item[‘data’]->get_price(), not $cart_item[‘line_total’].
——I am in the process of creating a pot-file for the Japanese translation, and in it I noticed that the following full name description is unnatural.
In some languages, such as Japanese, the order of full name is not first name + last name, but last name + first name, and WooCommerce has a procedure for normalizing full names using translation files. I hope you will be able to handle this someday.Example description in WooCommerce:
sprintf( _x( ‘%1$s %2$s’, ‘full name’, ‘woocommerce’ ), $first_name, $last_name );
- The topic ‘Questions about product_block and request for full name notation.’ is closed to new replies.