Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Cannot translate notification "XY is a required field" of collapse fields › Reply To: Cannot translate notification "XY is a required field" of collapse fields
October 30, 2018 at 6:19 am
#9819
Keymaster
Hi Roan,
we have added translation code for error message like this:
$error_message = ($field['error_message'] != '') ? $title.": ".$field['error_message'] : "{$title} is a required field";
$error_message = sprintf ( __ ( '%s', 'ppom' ), $error_message );
So it should be translated correctly.