I have languages file form_validation_lang.php with a standard errors messages in array.
I added some own messages here:
$lang['my'] = "Enter vacancy name";
I have form validation:
$this->form_validation->set_rules('vacancy', 'here load text from field my', 'required');
I want to display only text from $lang['my'] when my field is not filled.
form_validation_lang.phpin the application directory.