| | 56 | crud_strings[tablename] = Storage( |
| | 57 | title_create = T("Add Vehicle Type"), |
| | 58 | title_display = T("Vehicle Type Details"), |
| | 59 | title_list = T("List Vehicle Types"), |
| | 60 | title_update = T("Edit Vehicle Type"), |
| | 61 | title_search = T("Search Vehicle Types"), |
| | 62 | subtitle_create = T("Add New Vehicle Type"), |
| | 63 | subtitle_list = T("Vehicle Types"), |
| | 64 | label_list_button = T("List Vehicle Types"), |
| | 65 | label_create_button = T("Add Vehicle Type"), |
| | 66 | label_delete_button = T("Delete Vehicle Type"), |
| | 67 | msg_record_created = T("Vehicle Type added"), |
| | 68 | msg_record_modified = T("Vehicle Type updated"), |
| | 69 | msg_record_deleted = T("Vehicle Type deleted"), |
| | 70 | msg_list_empty = T("No Vehicle Types currently defined")) |
| | 71 | |
| | 84 | |
| | 85 | crud_strings[tablename] = Storage( |
| | 86 | title_create = T("Add Vehicle"), |
| | 87 | title_display = T("Vehicle Details"), |
| | 88 | title_list = T("List Vehicles"), |
| | 89 | title_update = T("Edit Vehicle"), |
| | 90 | title_search = T("Search Vehicles"), |
| | 91 | subtitle_create = T("Add New Vehicle"), |
| | 92 | subtitle_list = T("Vehicles"), |
| | 93 | label_list_button = T("List Vehicles"), |
| | 94 | label_create_button = T("Add Vehicle"), |
| | 95 | label_delete_button = T("Delete Vehicle"), |
| | 96 | msg_record_created = T("Vehicle added"), |
| | 97 | msg_record_modified = T("Vehicle updated"), |
| | 98 | msg_record_deleted = T("Vehicle deleted"), |
| | 99 | msg_list_empty = T("No Vehicles currently registered")) |