@ZP2021
No idea how this is related and why you picked this piece of code.
These can be sample rules:
"title[<?php echo osc_current_user_locale(); ?>]": {
required: true,
minlength: 5
},
"description[<?php echo osc_current_user_locale(); ?>]": {
required: true,
minlength: 10
},
And related messages:
"title[<?php echo osc_current_user_locale(); ?>]": {
required: '<?php echo osc_esc_js(__('Title: this field is required.', 'alpha')); ?>',
minlength: '<?php echo osc_esc_js(__('Title: enter at least 5 characters.', 'alpha')); ?>'
},
"description[<?php echo osc_current_user_locale(); ?>]": {
required: '<?php echo osc_esc_js(__('Description: this field is required.', 'alpha')); ?>',
minlength: '<?php echo osc_esc_js(__('Description: enter at least 10 characters.', 'alpha')); ?>'
},