Page 1 of 1
translation of tickets_on_pages and go doesn't work
Posted: Thu Jul 26, 2007 10:26 am
by eproust
I use Hesk 0.94 and I am going to finish a french translation...
I have noticed that
$hesklang['tickets_on_pages']
$hesklang['go']
are not translated...
Why ?
Could you help me so that I finish a complete french translation ?
Posted: Thu Jul 26, 2007 11:45 am
by Klemen
Hi,
You MUSTN'T translate anything inside $heslabng[''], that must stay the SAME!
For example:
$hesklang['xxxx']='yyyy';
Translate 'yyyy', but do NOT change 'xxxx'
Sorry but I know that...
Posted: Thu Jul 26, 2007 12:32 pm
by eproust
I just copy/paste the name of the variable to make you understand that the translation does not work with these 2 vars.
See below what is really written in my french.inc.php
$hesklang['tickets_on_pages']='%d tickets affichés sur %d page(s). Aller à la page'; // First %d is replaced with number of tickets, second %d with number of pages
$hesklang['go']='Action';
Klemen Stirn wrote:Hi,
You MUSTN'T translate anything inside $heslabng[''], that must stay the SAME!
For example:
$hesklang['xxxx']='yyyy';
Translate 'yyyy', but do NOT change 'xxxx'
Posted: Thu Jul 26, 2007 11:30 pm
by Klemen
Ah, I understand now what you mean. That was a problem with one of the older versions inside "print_tickets.inc.php" (text hard-coded inside instead of a variable). Download 0.94 again and upload file "inc/print_tickets.inc.php" over your current one and it should work. Looks like I forgot to mention that in the readme file

OK Thanks !
Posted: Fri Jul 27, 2007 12:11 am
by eproust
OK I will do this, thanks your reply.