Translate your WordPress/Django po/pot files, strings.xml android apps files automatically for 2$ per file for the first language then 1$ for each language added/checked, check your language(s), upload your file then the payment form will show up with moneyback garanteed
Click to choose a file to upload :)
Please select your languages
From
To
Please type some text to run a request
For short text(s): sentences to paragraphes per request
Perform simple GET request to https://translate.hirak.site/?lang=FROM-TO&txt=YOUR-TEXT-URL-ENCODED&token=YOUR-TOKEN, FROM,TO are two character ISO 639-1 language code, you recieve result as shown on the top.
For long/big text(s): to many paragraphs to big text per request
Perform simple POST request with url: https://translate.hirak.site/ & params: lang=FROM-TO&txt=YOUR-TEXT-URL-ENCODED&token=YOUR-TOKEN, FROM,TO are two character ISO 639-1 language code, you recieve result as shown on the top.
Usage & statistics: from your browser go to https://translate.hirak.site/stat/?token=YOUR-TOKEN
Please note requests without token stop on 10 requestsWe've awesome various plans with instant access, no sign up required, choose the sweetable plan that satisfy your needs, moneyback garanteed
100
char/month
FREE
225K
char/month
1$
500K
char/month
2$
1M
char/month
5$
How send POST request using php?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://translate.hirak.site/');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'lang=en-pt&txt='.urlencode('hello world!').'&token=YOUR-TOKEN');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$server_output = curl_exec($ch);
curl_close($ch);
How send GET request using php?
$result = file_get_contents('https://translate.hirak.site/?lang=en-pt&txt='.urlencode('hello world!').'&token=YOUR-TOKEN'
How send GET request using jQuery?
(function($){
result = $.get('https://translate.hirak.site/?lang=en-pt&txt='+encodeURIComponent('hello world!')+'&token=YOUR-TOKEN');
})(jQuery)
Did you do your first call? Or still looking for help or already did but have problems email us on: contact@hirak.site