Korean to English Übersetzung auf Android mit GroupDocs.Translation Cloud API
GroupDocs.Translation Cloud API ist eine leistungsstarke Plattform für die Übersetzung von Dokumenten und Texten in verschiedene Sprachen. Es bietet eine einfache Möglichkeit, koreanische Texte in englische Texte zu übersetzen, insbesondere auf Android-Geräten, indem es eine benutzerfreundliche API bereitstellt, die nahtlos in Android-Anwendungen integriert werden kann. Mit dieser API können Entwickler hochwertige Übersetzungen in Echtzeit für koreanische Texte auf ihren mobilen Anwendungen implementieren, um die Kommunikation und den Informationsaustausch zu erleichtern.
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public TextResponse TranslateText(Configuration conf)
{
string pair = "ko-en";
string text = "Korean to English Übersetzung auf Android mit GroupDocs.Translation Cloud API";
TranslationApi api = new TranslationApi(conf);
TranslateTextRequest request = api.CreateTextRequest(pair, text);
TextResponse response = api.RunTranslationTextTask(request);
return response;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
curl -X POST "https://api.groupdocs.cloud/v1.0/translation/text" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d '[{"pair":"ko-en", "text":"Korean to English Übersetzung auf Android mit GroupDocs.Translation Cloud API"}]'
# and response
{ "status":"ok", "message":"Text translated successfully", "translation":"....." }
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
import com.GroupDocs.translate.api.*;
import com.GroupDocs.translate.Configuration;
private static void setUpConfig() throws Exception {
Configuration.setAPP_SID("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
Configuration.setAPI_KEY("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
}
static String TranslateText() {
pair = "ko-en";
text = "Korean to English Übersetzung auf Android mit GroupDocs.Translation Cloud API";
TextInfo textInfo = new TextInfo(pair, text);
TranslationTextRequest translationTextRequest = new TranslationTextRequest(TextInfo.toString());
TranslationTextResponse translateTextResponse = TranslationApi.TranslateText(translationTextRequest);
return translateTextResponse.translation;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
from groupdocstranslationcloud.configuration import Configuration
from groupdocstranslationcloud.api.translation_api import TranslationApi
from groupdocstranslationcloud.models.translate_text import TranslateText
from groupdocstranslationcloud.models.translate_document import TranslateDocument
# enter valid apiKey and appSid
configuration = Configuration(apiKey="", appSid="")
api = TranslationApi(configuration)
pair = "ko-en"
text = "Korean to English Übersetzung auf Android mit GroupDocs.Translation Cloud API"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Maschinelle Übersetzung
Die GroupDocs.Translation Cloud bietet eine maschinelle Übersetzung von Koreanisch nach Englisch mit hoher Genauigkeit und Qualität.
Anpassbare Konfiguration
Benutzer können die Übersetzungsparameter anpassen, um spezifische Anforderungen zu erfüllen, z. B. den Stil, die Terminologie oder die Zielgruppe der Übersetzung.
Unterstützung für Android
Die GroupDocs.Translation Cloud bietet eine benutzerfreundliche Integration für die Android-Plattform, so dass Benutzer bequem von ihren Mobilgeräten aus auf die Übersetzungsfunktionen zugreifen können.
API-Integration
Entwickler können die GroupDocs.Translation Cloud-API in ihre Android-Anwendungen integrieren, um automatisierte Übersetzungsfunktionen zu implementieren und anpassbare Workflows zu erstellen.