Results 1 to 5 of 5

Thread: Sub panel title

  1. #1
    aprameya is offline Member
    Join Date
    Jun 2009
    Posts
    8

    Default Sub panel title

    Hi,

    I added one-many relationship between contacts and a custom module. I mentioned the Sunpanel title on contacts module properly when i created the relationship... Yet i am getting the NAME of the subpanel
    "LBL_CONTACTS_ISHAD_MOREDONATIONS_FROM_ISHAD_MORED ONATIONS_TITLE'....

    Pls let me know how to fix this...

    Thanks
    Attached Images Attached Images   

  2. #2
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Sub panel title

    1. Look for a script into custom/Extension/modules/Contacts/Ext/Language/ containing this string, this file will set the translation of such label;
    2. If there is no file containing this string so add this one into some file;
    3. Delete the file cache/modules/Contacts/language/<language>.lang.php
    4. Go to Admin -> Repair -> Rebuild Extensions

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  3. #3
    aprameya is offline Member
    Join Date
    Jun 2009
    Posts
    8

    Default Re: Sub panel title

    Hi André,

    I did all this... i infact re created the whole package/module... its just not changing at all
    What to do?

  4. #4
    swhitlow's Avatar
    swhitlow is offline Sugar Community Member
    Join Date
    Jun 2005
    Location
    Indianapolis, IN.
    Posts
    204

    Default Re: Sub panel title

    I am having this exact problem right now with a SubPanel. Were you able to find a solution on this?
    Scott Whitlow
    Lead Software Engineer/SugarCRM Developer
    swhitlow at gmail.com
    Indianapolis, IN. USA

  5. #5
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Sub panel title

    Language customization performed by Studio generally redefine the entire $mod_strings instead of update just a single entry.
    This way any customization implemented by extension, like new relationship, are missed.
    So you should need to look at the custom/modules/<ModuleName>/language/en_us.lang.php.
    Check if this script is redefining the entire $mod_strings. If yes, so you need to replace that by individual language entries.
    For example:

    old:
    PHP Code:
    $mod_strings = array(
      
    'LBL_1' => 'Label 1',
      
    'LBL_2' => 'Label 2',
      
    'LBL_3' => 'Label 3',
    ); 
    new:
    PHP Code:
    $mod_strings['LBL_1'] = 'Label 1';
    $mod_strings['LBL_2'] = 'Label 2';
    $mod_strings['LBL_3'] = 'Label 3'
    Then go to Admin -> Repair -> Rebuild Extensions

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. change title from localhost to some other title
    By sidh211 in forum Developer Help
    Replies: 3
    Last Post: 2009-09-16, 04:02 PM
  2. Replies: 1
    Last Post: 2008-11-05, 02:18 PM
  3. HELP title bar
    By kinhami in forum Help
    Replies: 1
    Last Post: 2008-06-27, 12:57 PM
  4. change title then i cant use it - help me
    By aguerrave in forum Help
    Replies: 7
    Last Post: 2006-06-11, 08:08 AM
  5. Descriptive Title Tag
    By tvancura in forum Feature Requests
    Replies: 0
    Last Post: 2004-10-19, 08:01 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •