Edit labels on record merge view

Hello Developers,
I have created one custom module.
Now I want to edit some labels like “Assigned to User”.
I have tried with studio but it is not working for merge operations. In which core file I need to edit?

Thanks,

Have you read the docs?

https://docs.suitecrm.com/developer/language-strings/

You should find your strings in

custom/modules/yourModule/language

Since it is a custom module, there’s probably no reason to use custom/Extension to customize via the Extension Framework, just do it directly.

Hello pgr,
Yes I already checked. but it is not working for merge record view.
Can you please guide me where can I edit merge record view?

What are those merge views you’re talking about? :huh:

Hey pgr,
you are right. I was looking into wrong files.
as you say now I have change in “custom\modules\cstm_Modules\language” : ‘LBL_ASSIGNED_TO_USER’ => ‘Primary Contact’,
and it’s work like charm. :slight_smile:
Thanks.