15.06.2012, 13:17
Quote:
Yes I currently use http://www.microsofttranslator.com/ but I just got an email telling me they will be moving the apis and I do not know what they mean by this.. But sadly I think they are also going to force devs to pay.
My website is still working but it's an new url udcs-tss.com but like I said it might stop working soon depending on what they meant with that email I got. |
pawn Code:
stock TranslateText(text[])
{
new str[256];
format(str, sizeof(str), "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=6635D742380CF583FEE16FF83E80BC8238F166E3&from=&to=en&text=%s", text);
HTTP(0, HTTP_GET, str, "", "");
return 1;
}