Change 'Add Record' to 'Report new arrival'
- Single Page
Posted 17 June 2012 - 07:27 AM
Posted 17 June 2012 - 13:19 PM
'list_add' (Add)
'list_record' (Record)
for example:
$crud->set_subject("Arrival");
$crud->set_lang_string('list_add','Report New');
or you can just do:
$crud->set_lang_string('list_add','Report New')
->set_lang_string('list_record','Arrival');
to change only the name for the list.
In general you can use the set_subject method to have automatically the : "Add Arrival", "Edit Arrival", "Delete Arrival"... e.t.c.
Posted 20 June 2012 - 18:22 PM