GruppDocs.Translation Cloud API: Arabisch nach Türkisch Übersetzung mit curl - Beispiel und Anleitung
GroupDocs.Translation Cloud API ist eine cloudbasierte Plattform, die Entwicklern und Unternehmen ermöglicht, Texte und Dokumente in verschiedene Sprachen zu übersetzen. Sie bietet leistungsstarke Funktionen zur nahtlosen Integration in Anwendungen und Workflows, um die Übersetzungsanforderungen zu erfüllen. Mithilfe von API-Aufrufen, wie etwa über cURL, können Benutzer Texte von Arabisch nach Türkisch übersetzen und dabei auf hochwertige maschinelle Übersetzungen zurückgreifen, die natürlichen und präzisen Sprachstil bieten. Die API bietet umfassende Unterstützung für viele Sprachen und ermöglicht eine einfache Implementierung von Übersetzungsfunktionen in verschiedene Softwarelösungen.
// 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 = "ar-tr";
string text = "GruppDocs.Translation Cloud API: Arabisch nach Türkisch Übersetzung mit curl - Beispiel und Anleitung";
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":"ar-tr", "text":"GruppDocs.Translation Cloud API: Arabisch nach Türkisch Übersetzung mit curl - Beispiel und Anleitung"}]'
# 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 = "ar-tr";
text = "GruppDocs.Translation Cloud API: Arabisch nach Türkisch Übersetzung mit curl - Beispiel und Anleitung";
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 = "ar-tr"
text = "GruppDocs.Translation Cloud API: Arabisch nach Türkisch Übersetzung mit curl - Beispiel und Anleitung"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Übersicht
GroupDocs.Translation Cloud ist ein cloudbasiertes Übersetzungstool, das eine Vielzahl von Funktionen für die Übersetzung von Texten in verschiedene Sprachen bietet. Es unterstützt verschiedene Dateiformate und bietet eine benutzerfreundliche API zur Integration in Anwendungen.
Unterstützte Sprachen
GroupDocs.Translation Cloud unterstützt eine Vielzahl von Sprachen, darunter Arabisch und Türkisch. Die Plattform bietet hochwertige Übersetzungen zwischen diesen Sprachen und ermöglicht es den Benutzern, ihre Dokumente oder Texte nahtlos zu übersetzen.
Curl-Unterstützung
Die GroupDocs.Translation Cloud-API bietet Unterstützung für Curl, was es Benutzern ermöglicht, Anfragen an die API zu senden und die Übersetzungsprozesse zu initiieren. Durch die Verwendung von Curl können Benutzer Texte von Arabisch nach Türkisch übersetzen, indem sie entsprechende Anfragen an die API senden.
Dokumentenformate
GroupDocs.Translation Cloud unterstützt verschiedene Dokumentenformate wie Word, PDF, Excel, PowerPoint und mehr. Benutzer können Dokumente in diesen Formaten hochladen und in die gewünschte Sprache übersetzen lassen, einschließlich der Übersetzung von Arabisch nach Türkisch.