GroupDocs.Translation Cloud API: Englisch-Polnische Übersetzung auf Android
GroupDocs.Translation Cloud API ist eine cloud-basierte Plattform, die es Benutzern ermöglicht, Dokumente und Texte in Echtzeit von Englisch ins Polnische zu übersetzen. Die API bietet eine nahtlose Integration für Android-Apps, um die Übersetzung von Inhalten zu automatisieren und die Produktivität zu steigern. Durch die Verwendung der GroupDocs.Translation Cloud API können Entwickler benutzerdefinierte Übersetzungsfunktionen in ihre Android-Apps integrieren und so eine breite Palette von Anwendungsfällen abdecken, von einfachen Textübersetzungen bis hin zu komplexen Dokumentenübersetzungen.
// 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 = "en-pl";
string text = "GroupDocs.Translation Cloud API: Englisch-Polnische Übersetzung auf Android";
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":"en-pl", "text":"GroupDocs.Translation Cloud API: Englisch-Polnische Übersetzung auf Android"}]'
# 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 = "en-pl";
text = "GroupDocs.Translation Cloud API: Englisch-Polnische Übersetzung auf Android";
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 = "en-pl"
text = "GroupDocs.Translation Cloud API: Englisch-Polnische Übersetzung auf Android"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Textübersetzung
Die GroupDocs.Translation Cloud-API bietet die Möglichkeit zur Übersetzung von Texten von Englisch nach Polnisch. Diese Funktion ermöglicht es Benutzern, Texte einfach und effizient in Echtzeit zu übersetzen.
Dokumentübersetzung
Mit GroupDocs.Translation Cloud können Benutzer auch vollständige Dokumente von Englisch nach Polnisch übersetzen. Diese Funktion unterstützt verschiedene Dateiformate und erleichtert die Übersetzung von Dokumenten auf Android-Geräten.
Einstellungen für Zielgruppen
Die API bietet Einstellungen zur Anpassung der Übersetzung für bestimmte Zielgruppen. Benutzer können die Übersetzung anpassen, um sicherzustellen, dass der Zieltext die gewünschte Form und den gewünschten Ton erhält.
Echtzeit-Übersetzung
GroupDocs.Translation Cloud ermöglicht Benutzern, Texte in Echtzeit zu übersetzen, ohne dass zusätzliche Zeit für den Übersetzungsprozess benötigt wird. Dies ist besonders nützlich auf Android-Geräten, da Benutzer sofortigen Zugriff auf übersetzte Inhalte haben.
Qualitätssicherung
Die API bietet Qualitätssicherungsmechanismen, um sicherzustellen, dass die Übersetzung präzise und korrekt ist. Dies ist besonders wichtig, um sicherzustellen, dass die Übersetzung auf Android-Geräten für Benutzer verständlich und genau ist.