forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Online Language Translators...

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Miscellaneous
View previous topic :: View next topic  
Author Message
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Wed Aug 28, 2002 6:03 pm    Post subject: Online Language Translators... Reply with quote

Here's a few links:

http://dir.yahoo.com/Social_Science/Linguistics_and_Human_Languages/Translation_and_Interpretation/Online_Translators/

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Thu Aug 29, 2002 9:43 pm    Post subject: Reply with quote

Wow! 8O

I didn't even know some of those translating things even existed (i.e. e-mail translators)

Those links are useful! Very Happy

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Sat Aug 31, 2002 9:44 pm    Post subject: Reply with quote

Here is a little script that picks the translation from Freetranslation.com:

Code:

  directory change,@path(%0)
  external vdsipp.dll
 
  DIALOG CREATE,FreeTranslation.com,-1,0,370,172
  DIALOG ADD,EDIT,TEXT,4,2,180,140,,MULTI,SCROLL,WRAP
  DIALOG ADD,EDIT,TRANSLATION,4,188,180,140,,MULTI,SCROLL,WRAP
  DIALOG ADD,COMBO,FROMTO,148,2,180,21,,LIST
  DIALOG ADD,BUTTON,TRANSLATE,148,188,180,20,TRANSLATE
  DIALOG SHOW
list loadtext,fromto
"English/Spanish
"English/French
"English/German
"English/Italian
"English/Norwegian
"English/Portuguese
"Spanish/English
"French/English
"German/English
"Italian/English
"Portuguese/English
"-------------------
"Spanish/French
"Spanish/German
"Spanish/Italian
"Spanish/Portuguese
"French/Spanish
"French/German
"French/Italian
"French/Portuguese
"German/Spanish
"German/French
"German/Italian
"German/Portuguese
"Italian/Spanish
"Italian/French
"Italian/German
"Italian/Portuguese
"Portuguese/Spanish
"Portuguese/French
"Portuguese/German
"Portuguese/Italian

list seek,fromto,0

:Evloop
wait event
%%event = @event()
goto %%event

:TranslateBUTTON
if @greater(11,@index(fromto))
  internet http,create,1
  internet http,threads,1,off
  internet http,protocol,1,1
  internet http,useragent,1,"Internet Explorer"
  internet http,post,1,"http://ets.freetranslation.com:5081/","Sequence=core&Mode=html&template=TextResults2.htm&Language="@item(fromto)"&SrcText="@dlgtext(text)
  %%translation = @internet(http,content,1)
  internet http,destroy,1
  %%searchstring1 = <textarea name=@chr(34)textfield@chr(34) cols=@chr(34)45@chr(34) rows=@chr(34)15@chr(34) wrap=@chr(34)virtual@chr(34)>
  %%searchstring2 = </textarea>
  %%translation = @strdel(%%translation,1,@pred(@fadd(@pos(%%searchstring1,%%translation),@len(%%searchstring1))))
  %%translation = @strdel(%%translation,@pos(%%searchstring2,%%translation),@len(%%translation))
  dialog set,translation,%%translation
  else
  internet http,create,1
  internet http,threads,1,off
  internet http,protocol,1,1
  internet http,useragent,1,"Internet Explorer"
  option fieldsep,/
  parse "%1;%2",@item(fromto)
  internet http,post,1,"http://ets.freetranslation.com:5081/","Sequence=core&Mode=html&template=TextResults2.htm&Language="%1"/English&SrcText="@dlgtext(text)
  %%translation = @internet(http,content,1)
  %%searchstring1 = <textarea name=@chr(34)textfield@chr(34) cols=@chr(34)45@chr(34) rows=@chr(34)15@chr(34) wrap=@chr(34)virtual@chr(34)>
  %%searchstring2 = </textarea>
  %%translation = @strdel(%%translation,1,@pred(@fadd(@pos(%%searchstring1,%%translation),@len(%%searchstring1))))
  %%translation = @strdel(%%translation,@pos(%%searchstring2,%%translation),@len(%%translation))
  internet http,post,1,"http://ets.freetranslation.com:5081/","Sequence=core&Mode=html&template=TextResults2.htm&Language=English/"%2"&SrcText="%%translation
  %%translation = @internet(http,content,1)
  internet http,destroy,1
  %%searchstring1 = <textarea name=@chr(34)textfield@chr(34) cols=@chr(34)45@chr(34) rows=@chr(34)15@chr(34) wrap=@chr(34)virtual@chr(34)>
  %%searchstring2 = </textarea>
  %%translation = @strdel(%%translation,1,@pred(@fadd(@pos(%%searchstring1,%%translation),@len(%%searchstring1))))
  %%translation = @strdel(%%translation,@pos(%%searchstring2,%%translation),@len(%%translation))
 
  dialog set,translation,%%translation
  end
goto evloop

:Close
exit


EDIT1: Edit something to translate, for example, German to French, via English, so you can translate a lot more...
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Miscellaneous All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group