Hi,
On my side (for French translation), what is strange is that I can see the translated sentences in the .po file, which is same as the one called in #: includes/wc-template-functions.php:756
but it is still in english on checkout page (using Avada, but no string like that is overwritten by avada)
Any idea?
Thx
#. translators: %s privacy policy page name and link
#: includes/admin/settings/class-wc-settings-accounts.php:150
#: includes/customizer/class-wc-shop-customizer.php:736
#: includes/wc-template-functions.php:756
msgid “Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our %s.”
msgstr “Vos données personnelles seront utilisées pour le traitement de votre commande, vous accompagner au cours de votre visite du site web, et pour d’autres raisons décrites dans notre %s.”
#. translators: %s privacy policy page name and link
#: includes/admin/settings/class-wc-settings-accounts.php:140
#: includes/wc-template-functions.php:760
msgid "Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our %s."
msgstr "Vos données personnelles seront utilisées pour vous accompagner au cours de votre visite du site web, gérer l’accès à votre compte, et pour d’autres raisons décrites dans notre %s."
switch ( $type ) {
case 'checkout':
/* translators: %s privacy policy page name and link */
$text = get_option( 'woocommerce_checkout_privacy_policy_text', sprintf( __( 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our %s.', 'woocommerce' ), '[privacy_policy]' ) );
break;
case 'registration':
/* translators: %s privacy policy page name and link */
$text = get_option( 'woocommerce_registration_privacy_policy_text', sprintf( __( 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our %s.', 'woocommerce' ), '[privacy_policy]' ) );
break;
}