Page 1 of 1
Hesk customfield translation
Posted: Mon Aug 15, 2011 8:45 am
by AKNL
Is there a way to to have custom fields translated...?
Re: Hesk customfield translation
Posted: Mon Aug 15, 2011 3:40 pm
by Klemen
If you mean to show a different custom filed name depending on the selected language then I'm afraid not at the moment (at least not without manually messing with the code).
Re: Hesk customfield translation
Posted: Tue Aug 16, 2011 7:44 am
by AKNL
I dont mind messing around...-)
What i mean is:
When the customer switches to his desired language everything changes in the form except the customfields...this makes the translation thing kind of useless imo?
Re: Hesk customfield translation
Posted: Tue Aug 16, 2011 1:15 pm
by Klemen
I understand what you mean and yes, it is definitely something I need to fix for help desks that use more than one language.
Re: Hesk customfield translation
Posted: Thu Feb 07, 2013 8:50 pm
by gregstory
Does anyone has a solution for this yet?
Translation work great for all the other moduls, but not for custom fields and categories?
Please post a fix for this issue!
Thanks,
Greg
Re: Hesk customfield translation
Posted: Sun Feb 17, 2013 9:13 am
by Klemen
I'm afraid it's not available yet, but planned.
Re: Hesk customfield translation
Posted: Wed Mar 13, 2013 2:40 pm
by pppplus
Maybe you can put something like :
line 280 of index.php
<td style="text-align:right" width="150" valign="top">'.$v['name'].': '.$v['req'].'</td>
could be replace by :
<td style="text-align:right" width="150" valign="top">'.$hesklang[$v['name']].': '.$v['req'].'</td>
AND :
- name of customfield are have to be in translations files.
$hesklang['field_one']
$hesklang['field_two']
You have to do the same, for each data of each customfield, so a lot to translate.