Hello,
Someone know if I can translate a form of Chrono Forms? with Joomfish?
It is possible?
If not is possible, what can I do to show a diferent form in differents languages?
Thanks, excuse my English, I am spanish.
Someone know if I can translate a form of Chrono Forms? with Joomfish?
It is possible?
If not is possible, what can I do to show a diferent form in differents languages?
Thanks, excuse my English, I am spanish.
Hi Serie3,
I imagine that you could do this with JoomFish though I've never tried. I think that there is a post in the forums here is you search for it.
Otherwise you could set up the form to check the users language preference; or have several similar forms with different languages.
Bob
I imagine that you could do this with JoomFish though I've never tried. I think that there is a post in the forums here is you search for it.
Otherwise you could set up the form to check the users language preference; or have several similar forms with different languages.
Bob
Hi,
You can use the variable $mosConfig_lang to check for the current running language and change form based on that, thats really too easy!
Cheers
Max
You can use the variable $mosConfig_lang to check for the current running language and change form based on that, thats really too easy!
Cheers
Max
Came across the same "problem". I solved it with checking the variable as described by admin and reloading a translated duplicate of the chronoforum.
<?
if (strcmp($GLOBALS["mosConfig_lang"],'english')==0)
header("Location: ?option=com_chronocontact&chronoformname=engform2"«»);
?>
<br><br>Post edited by: admin, at: 2007/10/28 08:33
Thanks Mbsnake for sharing this!
Cheers
Max
Cheers
Max
thanks, looks like you solved my problem too. sorry i'm not a programmer, where do i have to put/change this code???
tanak you!
tanak you!
Hi pino,
I'm not sure, I think probably you put it at the beginning of the form code so that it will switch to the other version of the form automatically.
Bob
I'm not sure, I think probably you put it at the beginning of the form code so that it will switch to the other version of the form automatically.
Bob
Hi Pino,
Something like this :
Cheers
Max
Something like this :
<?
if (strcmp($GLOBALS["mosConfig_lang"],'english')==0){
?>
This is my English form code!!
<?php } ?>
<?
if (strcmp($GLOBALS["mosConfig_lang"],'italian')==0){
?>
This is my Italian form code!!
<?php } ?>
Cheers
Max
This topic is locked and no more replies can be posted.