All Projects → iammannan → TranslateAPI

iammannan / TranslateAPI

Licence: other
Simple Java library to translate your text using Google Translate without using of API KEY

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to TranslateAPI

bing-translate-api
A simple and free API for Bing Translator for Node.js
Stars: ✭ 37 (-27.45%)
Mutual labels:  free, translate
Google Translate Api
A free and unlimited API for Google Translate 💵🚫
Stars: ✭ 1,996 (+3813.73%)
Mutual labels:  free, translate
node-google-translate-skidz
Simple Node.js library for talking to Google's Translate API for free.
Stars: ✭ 70 (+37.25%)
Mutual labels:  free, translate
is-biz-mail-php
isBizMail tells you whether a given email address belongs to a free email account provider (gmail.com, yahoo.es, yandex.ru etc) or not.
Stars: ✭ 19 (-62.75%)
Mutual labels:  free
nertivia-client-ts
Recreating Nertivia client more efficiently using typescript. Nertivia is a web chat app.
Stars: ✭ 12 (-76.47%)
Mutual labels:  free
react-translator-component
React language translation module for developing a multilingual project.
Stars: ✭ 13 (-74.51%)
Mutual labels:  translate
meta2d
Meta2D is open source WebGL 2D game engine for making cross platform games.
Stars: ✭ 33 (-35.29%)
Mutual labels:  free
OpenGNT
Open Greek New Testament Project; NA28 / NA27 Equivalent Text & Resources
Stars: ✭ 55 (+7.84%)
Mutual labels:  free
SilentXMRMiner
A Silent (Hidden) Monero (XMR) Miner Builder
Stars: ✭ 417 (+717.65%)
Mutual labels:  free
computeiro
Computer science courses, books and exams in your pocket. Built with Flutter and Free! ❤️
Stars: ✭ 27 (-47.06%)
Mutual labels:  free
larapos
Laravel Point of sale with invoice full source code free download pos apps.
Stars: ✭ 38 (-25.49%)
Mutual labels:  free
MrTranslator
📘MrTranslator-A Translation Android APP
Stars: ✭ 16 (-68.63%)
Mutual labels:  translate
MrPlayer
This is Mp3 Player made on python
Stars: ✭ 23 (-54.9%)
Mutual labels:  free
sakai-react
Free React Admin Template
Stars: ✭ 239 (+368.63%)
Mutual labels:  free
RightStatsMonitor
A useful tool for displaying FPS with high precision. Very lightweight and fast. GC-free
Stars: ✭ 14 (-72.55%)
Mutual labels:  free
ultrastar-worldparty
UltraStar WorldParty. A karaoke game inspired by SingStar™
Stars: ✭ 88 (+72.55%)
Mutual labels:  free
quran-api
Free Quran API Service with 90+ different languages and 400+ translations
Stars: ✭ 210 (+311.76%)
Mutual labels:  free
vaadin-icons
Vaadin Icons is a collection of 600+ unique icons designed for web applications
Stars: ✭ 59 (+15.69%)
Mutual labels:  free
free-category
Free categories, free arrows and free categories with monadic actions
Stars: ✭ 21 (-58.82%)
Mutual labels:  free
PHP-Broadcast-radio
🌈 Autonomous streaming audio ,serveronline internet radio is free streaming music for your listening pleasure, as well as news and announcements.
Stars: ✭ 38 (-25.49%)
Mutual labels:  free

TranslateAPI

Simple Java library to translate your text using Google Translate without using of API KEY

Screenshot

alt text

Download

  • Step 1. Add it in your root build.gradle at the end of repositories:
    allprojects {
        repositories {
          ...
          maven { url 'https://jitpack.io' }
        }
    }
  • Step 2. Add the dependency
   dependencies {
	        implementation 'com.github.iammannan:TranslateAPI:1.1'
	}
  • Full Code - Example
  	TranslateAPI translateAPI = new TranslateAPI(
                      Language.AUTO_DETECT,   //Source Language
                      Language.TAMIL,         //Target Language
                      "Your Text");           //Query Text

              translateAPI.setTranslateListener(new TranslateAPI.TranslateListener() {
                  @Override
                  public void onSuccess(String translatedText) {
                      Log.d(TAG, "onSuccess: "+translatedText);
                      textView.setText(translatedText);
                  }

                  @Override
                  public void onFailure(String ErrorText) {
                      Log.d(TAG, "onFailure: "+ErrorText);
                  }
              });

alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].