GruppenDocs.Translation Cloud API - Englisch-Lettisch Übersetzung mit curl
GroupDocs.Translation Cloud API ist ein leistungsfähiges und einfach zu bedienendes Tool, das es Benutzern ermöglicht, Dokumente, Texte und andere Inhalte von einer Sprache in eine andere zu übersetzen. Durch die Integration von einfachen curl-Anfragen können Benutzer mühelos englische Texte in Lettische übersetzen und erhalten qualitativ hochwertige Übersetzungen. Die API bietet eine zuverlässige und schnelle Übersetzungslösung für verschiedene Anwendungsfälle und ermöglicht es Benutzern, den Übersetzungsprozess nahtlos in ihre Anwendungen und Workflows zu integrieren. Mit der GroupDocs.Translation Cloud API können Benutzer effizient und genau Texte zwischen Englisch und Lettisch übersetzen, um ihre globalen Kommunikationsbedürfnisse zu erfüllen.
// 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-lv";
string text = "GruppenDocs.Translation Cloud API - Englisch-Lettisch Übersetzung mit curl";
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-lv", "text":"GruppenDocs.Translation Cloud API - Englisch-Lettisch Übersetzung mit curl"}]'
# 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-lv";
text = "GruppenDocs.Translation Cloud API - Englisch-Lettisch Übersetzung mit curl";
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-lv"
text = "GruppenDocs.Translation Cloud API - Englisch-Lettisch Übersetzung mit curl"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Unterstützung von Englisch zu Lettisch Übersetzung
Mit GroupDocs.Translation Cloud können Sie problemlos Englisch zu Lettisch Übersetzung durchführen. Die Cloud-Plattform unterstützt die Übersetzung von Textdokumenten, Webseiten, Bildern und anderen Dateiformaten von Englisch in Lettisch.
Vielseitige Dateiformatunterstützung
GroupDocs.Translation Cloud bietet Unterstützung für eine Vielzahl von Dateiformaten, darunter DOC, DOCX, PDF, HTML, TXT und viele mehr. Dies ermöglicht die nahtlose Übersetzung von verschiedenen Arten von Dokumenten von Englisch nach Lettisch.
Einfache Integration mittels cURL
Die Integration von GroupDocs.Translation Cloud in Ihre Anwendung ist einfach mit cURL. Sie können die API-Aufrufe verwenden, um Englisch zu Lettisch Übersetzungen direkt in Ihrer Anwendung durchzuführen.
Qualitativ hochwertige Übersetzungen
Mit GroupDocs.Translation Cloud erhalten Sie qualitativ hochwertige Übersetzungen von Englisch nach Lettisch. Die Plattform nutzt fortschrittliche Übersetzungstechnologien, um präzise und verständliche Übersetzungen zu liefern.