GroupDocs.Translation Cloud API: Englisch-Hebräische Übersetzung im Netz
Die GroupDocs.Translation Cloud API ist eine Entwicklerplattform, die Entwicklern ermöglicht, Übersetzungen von Englisch nach Hebräisch im Internet durchzuführen. Mit dieser API können Entwickler Texte oder Dokumente in Englisch bereitstellen und erhalten schnell eine hochwertige Übersetzung in Hebräisch. Die API ist benutzerfreundlich und erfordert keine umfangreichen Kenntnisse in maschineller Übersetzung oder Sprachverarbeitung. Sie bietet eine einfache Integration in bestehende Anwendungen und ermöglicht Entwicklern, Übersetzungsfunktionen nahtlos in ihre Arbeitsabläufe einzubinden.
// 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-he";
string text = "GroupDocs.Translation Cloud API: Englisch-Hebräische Übersetzung im Netz";
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-he", "text":"GroupDocs.Translation Cloud API: Englisch-Hebräische Übersetzung im Netz"}]'
# 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-he";
text = "GroupDocs.Translation Cloud API: Englisch-Hebräische Übersetzung im Netz";
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-he"
text = "GroupDocs.Translation Cloud API: Englisch-Hebräische Übersetzung im Netz"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Übersetzung von Text
Mit GroupDocs.Translation Cloud können Sie Texte von Englisch nach Hebräisch übersetzen. Die Anwendung verwendet fortschrittliche maschinelle Übersetzungsmodelle, um genaue und schnelle Übersetzungen zu liefern.
Übersetzung großer Mengen von Text
Die GroupDocs.Translation Cloud ermöglicht die Übersetzung großer Mengen von Text in einem einzigen Durchgang. Sie können ein ganzes Dokument, eine Website oder eine große Menge an Textdateien hochladen und übersetzen lassen.
Dateiformatformate
Die GroupDocs.Translation Cloud unterstützt eine Vielzahl von Dateiformatformaten. Sie können Dokumente in Formaten wie DOCX, XLSX, PPTX, PDF und vielen anderen hochladen und übersetzen lassen.
Qualitätsübersetzungen
Die Übersetzungen von GroupDocs.Translation Cloud bieten hohe Qualität und Genauigkeit. Die Anwendung nutzt modernste maschinelle Übersetzungsmodelle, um die bestmöglichen Ergebnisse zu erzielen.
Sicherheit und Vertraulichkeit
GroupDocs.Translation Cloud legt großen Wert auf die Sicherheit und Vertraulichkeit Ihrer Daten. Alle hochgeladenen Dokumente und Texte werden sicher gespeichert und vertraulich behandelt.
Einfache Integration
Die GroupDocs.Translation Cloud bietet eine einfache Integration mit Ihren vorhandenen Anwendungen und Systemen. Sie können die API verwenden, um die Übersetzungsfunktionen nahtlos in Ihre Arbeitsabläufe zu integrieren.