Hesk customfield translation

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
AKNL
Posts: 15
Joined: Mon Aug 08, 2011 9:48 am

Hesk customfield translation

Post by AKNL »

Is there a way to to have custom fields translated...?
Klemen
Site Admin
Posts: 10147
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hesk customfield translation

Post 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).
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
AKNL
Posts: 15
Joined: Mon Aug 08, 2011 9:48 am

Re: Hesk customfield translation

Post 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?
Klemen
Site Admin
Posts: 10147
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hesk customfield translation

Post 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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
gregstory
Posts: 1
Joined: Thu Feb 07, 2013 8:45 pm

Re: Hesk customfield translation

Post 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
Klemen
Site Admin
Posts: 10147
Joined: Fri Feb 11, 2005 4:04 pm

Re: Hesk customfield translation

Post by Klemen »

I'm afraid it's not available yet, but planned.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
pppplus
Posts: 1
Joined: Wed Mar 13, 2013 1:45 pm

Re: Hesk customfield translation

Post 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.
Post Reply