onekadoplant
onekadoplant

Reputation: 1

Change Records List text vtiger 6.4

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

enter image description here

Upvotes: 0

Views: 98

Answers (2)

Dave
Dave

Reputation: 1

Changing language file

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

Sachin I
Sachin I

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

Related Questions