Reputation: 1
I have created a custom module and when I see the list view of that module I see "Records List" in the left hand side sidebar (please see the screenshot for the same) so I want to change this text to "Module Name List"
Please help
Upvotes: 0
Views: 98
Reputation: 1
You should see it in the language file, however, if it's not there just add the line yourself (just make sure you put the comma at the end). If you want to change it for all modules, edit the label in the languages/en_us/Vtiger.php (should be line 414 or close to it)
Upvotes: 0
Reputation: 1508
You have to change the label in language file
Open YOUR_MODULE_NAME.php file. \languages\en_us\YOUR_MODULE_NAME.php.php
Change 'LBL_RECORDS_LIST' => 'YOUR_MODULE_NAME List'
Reload cache. Done!!
Upvotes: 0