Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Multi Lingual Forums
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Multi Lingual Forums

 Post Reply Post Reply Page  <12345>
Author
Lingua View Drop Down
Newbie
Newbie
Avatar

Joined: 22 March 2005
Location: Russian Federation
Status: Offline
Points: 6
Post Options Post Options   Thanks (0) Thanks(0)   Quote Lingua Quote  Post ReplyReply Direct Link To This Post Posted: 04 April 2005 at 5:54pm
Hi, sorry for the delay
I promised the updates for the weekend, but I couldnt make it earlier.
I have a demo Multilanguage Forum set up at http://www.3cgi.de/forum
 
You can download the files and stuff I have made until now from there.
 
There still is a small java bug in the RTE of the editor, which I havent found yet, please feel free to help me and to give me feedback.
 
I will integrate coding suggestions into the multilanguage forum, so maybe we bring this project together to an end.
 
Regards Lingua


Edited by Lingua - 05 November 2005 at 6:20pm
Back to Top
weipper2 View Drop Down
Newbie
Newbie


Joined: 18 March 2005
Location: Canada
Status: Offline
Points: 18
Post Options Post Options   Thanks (0) Thanks(0)   Quote weipper2 Quote  Post ReplyReply Direct Link To This Post Posted: 05 April 2005 at 10:59am
I will try to help you for your error. I hope this project will be complete soon!

edit: I just wanna know if it is possible to change button images (change language) with your multi-language forum?


Edited by weipper2 - 05 April 2005 at 11:04am
Back to Top
TurkeLLi View Drop Down
Newbie
Newbie


Joined: 18 February 2005
Status: Offline
Points: 37
Post Options Post Options   Thanks (0) Thanks(0)   Quote TurkeLLi Quote  Post ReplyReply Direct Link To This Post Posted: 08 April 2005 at 6:17am
where can I download this mod?
Back to Top
weipper2 View Drop Down
Newbie
Newbie


Joined: 18 March 2005
Location: Canada
Status: Offline
Points: 18
Post Options Post Options   Thanks (0) Thanks(0)   Quote weipper2 Quote  Post ReplyReply Direct Link To This Post Posted: 08 April 2005 at 9:25am
here

or

go on this forum, register you and download files if the first link dosent work. but its still have java bug, you cant click on button in RTE post message :(
Back to Top
Acke View Drop Down
Newbie
Newbie


Joined: 25 December 2004
Location: Sweden
Status: Offline
Points: 37
Post Options Post Options   Thanks (0) Thanks(0)   Quote Acke Quote  Post ReplyReply Direct Link To This Post Posted: 08 April 2005 at 3:46pm
Isn't mutch easyer to use something like this
 

<%
If Request.QueryString("language") <> "" Then
If Request.QueryString("language") = "SWE" Then
Session("language")="SWE"
ElseIf Request.QueryString("language") = "ENG" Then
Session("language") = "ENG"
End IF
Else
If Session("language") = "" Then
Session("language") = "SWE"
Else
Session("language") = Session("language")
End If
End If
If Session("language") = "SWE" Then
'########################################### -[ Swedish here ]- ###########################################'
strTxtThisPageWasGeneratedIn = "And your text here"
strTxtSeconds = "And your text here."
End If
If Session("language")="ENG" Then
'########################################### -[ English here ] ###########################################'
strTxtThisPageWasGeneratedIn = "And your text here"
strTxtSeconds = "And your text here"
End If
%>
 
In this way can you use differens language in 1 page and use the default language in this forum then add your own language...
 
and include it to your forum pages!!!
 
Sorry for my bad english
 
 


Edited by Acke - 08 April 2005 at 3:55pm
Back to Top
Lingua View Drop Down
Newbie
Newbie
Avatar

Joined: 22 March 2005
Location: Russian Federation
Status: Offline
Points: 6
Post Options Post Options   Thanks (0) Thanks(0)   Quote Lingua Quote  Post ReplyReply Direct Link To This Post Posted: 08 April 2005 at 3:54pm
Thats a nice way too, but you will get a very very long language Page if you support a few languages. This will slow down your server as he has to read it always, for every Page.
 
Normal this forum should read the complete translation stuff only one time into an global array, when it starts its webservice and thats it, you do not have to read the language any more while the forum is running.
 
But thats again a lot more coding and I do not know if its worth doing it when there will be a major release change in a few weeks or month (Version 8 will be totaly redesigned).
Back to Top
TurkeLLi View Drop Down
Newbie
Newbie


Joined: 18 February 2005
Status: Offline
Points: 37
Post Options Post Options   Thanks (0) Thanks(0)   Quote TurkeLLi Quote  Post ReplyReply Direct Link To This Post Posted: 09 April 2005 at 6:33am
Originally posted by Acke Acke wrote:

Isn't mutch easyer to use something like this
 

<%
If Request.QueryString("language") <> "" Then
If Request.QueryString("language") = "SWE" Then
Session("language")="SWE"
ElseIf Request.QueryString("language") = "ENG" Then
Session("language") = "ENG"
End IF
Else
If Session("language") = "" Then
Session("language") = "SWE"
Else
Session("language") = Session("language")
End If
End If
If Session("language") = "SWE" Then
'########################################### -[ Swedish here ]- ###########################################'
strTxtThisPageWasGeneratedIn = "And your text here"
strTxtSeconds = "And your text here."
End If
If Session("language")="ENG" Then
'########################################### -[ English here ] ###########################################'
strTxtThisPageWasGeneratedIn = "And your text here"
strTxtSeconds = "And your text here"
End If
%>
 
In this way can you use differens language in 1 page and use the default language in this forum then add your own language...
 
and include it to your forum pages!!!
 
Sorry for my bad english
 
 
 
Funkar din???
Jag bor också i sverige :D
Back to Top
_red_zion_ View Drop Down
Groupie
Groupie


Joined: 26 October 2004
Status: Offline
Points: 116
Post Options Post Options   Thanks (0) Thanks(0)   Quote _red_zion_ Quote  Post ReplyReply Direct Link To This Post Posted: 18 April 2005 at 1:05am
I have similar problems... I translated and modified translations of english, deutch, slovenian and croatian but there is one problem...
 
If you want to write something there is JAVA SCRIPT error on RTE_*.asp Does anybody know what is the solution for this?
 
Is maybe in RTE missing some code etc?
 
I know that <%L_Session%> don't work, so maybe this is problem? I know also that in RTE_*.asp you don't call "language session" as in other files and if you ask me, there is character set problem, becouse you use different character set in language files as in RTE files...
Back to Top
 Post Reply Post Reply Page  <12345>

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.