Gruppenspezifische Lithuanisch-Englisch-Übersetzung mit Curl-API-Schlüssel
GroupDocs.Translation Cloud API ist ein leistungsfähiges Tool, das es Entwicklern ermöglicht, Texte und Dokumente in verschiedene Sprachen zu übersetzen. Mit der Unterstützung von Lithuanian to English Translation können Benutzer diese Funktion einfach per curl-Befehl aufrufen, um Lithuanische Texte und Dokumente in die englische Sprache zu übersetzen. Dies ermöglicht es Entwicklern, ihre Anwendungen mit Übersetzungsfunktionen zu erweitern und Benutzern eine nahtlose Möglichkeit zu bieten, Texte und Dokumente in verschiedenen Sprachen zu übersetzen.
// 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 = "lt-en";
string text = "Gruppenspezifische Lithuanisch-Englisch-Übersetzung mit Curl-API-Schlüssel";
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":"lt-en", "text":"Gruppenspezifische Lithuanisch-Englisch-Übersetzung mit Curl-API-Schlüssel"}]'
# 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 = "lt-en";
text = "Gruppenspezifische Lithuanisch-Englisch-Übersetzung mit Curl-API-Schlüssel";
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 = "lt-en"
text = "Gruppenspezifische Lithuanisch-Englisch-Übersetzung mit Curl-API-Schlüssel"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Verfügbare Sprachen
GroupDocs.Translation Cloud unterstützt eine Vielzahl von Sprachen, darunter auch Litauisch und Englisch. Es können sowohl Quelltexte in Litauisch als auch Zielsprachen in Englisch verarbeitet werden.
Lithuanian to English Translation
Durch die Verwendung von GroupDocs.Translation Cloud können Lithuanian-Texte ganz einfach in Englisch übersetzt werden. Dieser Vorgang kann mithilfe von Curl-Befehlen und der API von GroupDocs.Translation Cloud durchgeführt werden.
Dokumentenformate
GroupDocs.Translation Cloud unterstützt eine Vielzahl von Dokumentenformaten, darunter Textdateien, PDFs, Präsentationen und mehr. Dies ermöglicht die Übersetzung verschiedener Dateitypen von Litauisch nach Englisch.
Qualität und Genauigkeit
Die Übersetzungsergebnisse von GroupDocs.Translation Cloud zeichnen sich durch hohe Qualität und Genauigkeit aus. Die Cloud-Plattform verwendet modernste Technologie, um eine präzise und zuverlässige Übersetzung von Litauisch nach Englisch sicherzustellen.
Frequently Asked Questions
Wie verwende ich curl, um eine Übersetzung von Litauisch nach Englisch mit GroupDocs.Translation Cloud zu erhalten?
Sie können curl verwenden, um eine Anfrage an die GroupDocs.Translation Cloud-API zu senden, die eine Übersetzung von Litauisch nach Englisch anfordert. Hier ist ein Beispiel, wie Sie dies tun können.
Welche Parameter müssen in der curl-Anfrage enthalten sein, um eine Übersetzung von Litauisch nach Englisch zu erhalten?
Um eine Übersetzung von Litauisch nach Englisch mit GroupDocs.Translation Cloud über curl zu erhalten, müssen Sie die erforderlichen Parameter wie die Quellsprache, die Zielsprache und den zu übersetzenden Text in der curl-Anfrage angeben.
Kann ich mit curl auch Dateien für die Übersetzung von Litauisch nach Englisch an GroupDocs.Translation Cloud senden?
Ja, Sie können mit curl auch Dateien für die Übersetzung von Litauisch nach Englisch an die GroupDocs.Translation Cloud-API senden. Sie müssen die Anfrage so konfigurieren, dass die Datei als Eingabe für die Übersetzung verwendet wird.