GroupDocs.Translation Cloud API: Effiziente Englisch-Kroatisch-Übersetzung für das Internet
GroupDocs.Translation Cloud API ist eine leistungsstarke Plattform, die es Benutzern ermöglicht, Dokumente und Texte nahtlos von Englisch nach Kroatisch zu übersetzen. Die API ermöglicht es Entwicklern, mithilfe von webbasierten Tools qualitativ hochwertige Übersetzungen auf einfache Weise zu integrieren. Durch die Verwendung von maschinellem Lernen und künstlicher Intelligenz garantiert die API präzise und zuverlässige Übersetzungen. Mit einer benutzerfreundlichen Benutzeroberfläche und einer Vielzahl von Anpassungsoptionen ist die GroupDocs.Translation Cloud API die ideale Lösung für die professionelle Übersetzung von Englisch nach Kroatisch im Internet.
// 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-hr";
string text = "GroupDocs.Translation Cloud API: Effiziente Englisch-Kroatisch-Übersetzung für das Internet";
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-hr", "text":"GroupDocs.Translation Cloud API: Effiziente Englisch-Kroatisch-Übersetzung für das Internet"}]'
# 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-hr";
text = "GroupDocs.Translation Cloud API: Effiziente Englisch-Kroatisch-Übersetzung für das Internet";
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-hr"
text = "GroupDocs.Translation Cloud API: Effiziente Englisch-Kroatisch-Übersetzung für das Internet"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Einfache Integration
Die GroupDocs.Translation Cloud-API lässt sich nahtlos in Ihre Anwendung integrieren, um die Übersetzungsfunktionen zu nutzen.
Unterstützte Sprachen
Die Cloud unterstützt die Übersetzung von Englisch nach Kroatisch und bietet auch Unterstützung für eine Vielzahl anderer Sprachen.
Hohe Genauigkeit
Dank moderner Übersetzungsalgorithmen und künstlicher Intelligenz liefert GroupDocs.Translation Cloud präzise und qualitativ hochwertige Übersetzungen.
Echtzeit-Übersetzung
Die Plattform ermöglicht die sofortige Übersetzung von Texten und Dokumenten, was eine schnelle und effiziente Kommunikation in Echtzeit ermöglicht.
Dokumentübersetzung
Übersetzen Sie problemlos verschiedene Arten von Dokumenten, wie z.B. Textdateien, Präsentationen, Arbeitsblätter und vieles mehr von Englisch in Kroatisch.