| Previous topic :: Next topic |
| Author |
Message |
gringoLoco007
Joined: 01 Feb 2008
Posts: 8
|
| Posted: Thu Jul 31, 2008 3:01 pm Post subject: Issue with language packs on dropdown list in Import pages |
|
|
Hi
The import page drop downs for mapping the fields does not pick up the language packs, please can someone help.
Kind regards |
|
| Back to top |
|
pratim
Joined: 11 Apr 2008
Posts: 77
|
| Posted: Fri Aug 01, 2008 11:55 am Post subject: Issue with language packs on dropdown list in Import pages |
|
|
| Hi, Can you please tell me you are trying with which language pack? |
|
| Back to top |
|
pavani
Joined: 03 Sep 2007
Posts: 49
|
| Posted: Fri Aug 01, 2008 12:29 pm Post subject: Issue with language packs on dropdown list in Import pages |
|
|
Hi,
In present version of CRM the mapping fields displayed are not converted to language strings.
If you want them to convert plaese make the following changes.
In modules/Import/Forms.php
Replace the following:
else
{
$req_mark = "";
}
$output .= $name . $req_mark."</option>\n";
$count ++;
}
With:
else
{
$req_mark = "";
}
$output .= $mod_strings[$name] . $req_mark."</option>\n";
$count ++;
}
And make sure that your module language files have labels for all fields of that particular module.
Get back to me if you want any more clarifications. |
|
| Back to top |
|
gringoLoco007
Joined: 01 Feb 2008
Posts: 8
|
| Posted: Fri Aug 01, 2008 4:45 pm Post subject: Re: Issue with language packs on dropdown list in Import pag |
|
|
Hi, thanks for the reply.
Yes, I've changed all language pack to a personalized es_es.lang.php on all modules. So, the problem is that I'm receiving after load the CSV in the dropdown mapping, english items and some spanish items, the spanish items has been translated from english, but the english items has been all deleted, so from where is reading the dropdown mapping these english items?
thanks again for any help.
I'm using crm5.0.3 |
|
| Back to top |
|
gringoLoco007
Joined: 01 Feb 2008
Posts: 8
|
| Posted: Fri Aug 01, 2008 4:50 pm Post subject: Re: Issue with language packs on dropdown list in Import pag |
|
|
BTW
pavani, thanks for help, but that change made that no item was show on the dropdown. |
|
| Back to top |
|
pavani
Joined: 03 Sep 2007
Posts: 49
|
| Posted: Mon Aug 04, 2008 6:12 am Post subject: Re: Issue with language packs on dropdown list in Import pag |
|
|
Hi,
Please check the language file of that particular module. It should contain labels for all columns of that module. You can get the columns names from the table vtiger_field and tabid of the module from tabdata.php |
|
| Back to top |
|
| |