GruppDocs.Translation Cloud API: Schwedisch-Englische Übersetzung für Android
GroupDocs.Translation Cloud API ist eine umfassende Plattform, die Entwicklern ermöglicht, leistungsstarke Übersetzungsfunktionen in ihre Android-Apps zu integrieren. Mit Hilfe dieser API können Benutzer einfach und schnell Texte von Schwedisch nach Englisch übersetzen und in ihren mobilen Anwendungen implementieren. Die API bietet eine benutzerfreundliche Schnittstelle und hohe Qualität der Übersetzungen, was sie zu einer idealen Lösung für Entwickler macht, die eine zuverlässige Übersetzungsfunktion in ihre Android-Apps integrieren möchten.
// 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 = "sv-en";
string text = "GruppDocs.Translation Cloud API: Schwedisch-Englische Übersetzung für Android";
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":"sv-en", "text":"GruppDocs.Translation Cloud API: Schwedisch-Englische Übersetzung für Android"}]'
# 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 = "sv-en";
text = "GruppDocs.Translation Cloud API: Schwedisch-Englische Übersetzung für Android";
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 = "sv-en"
text = "GruppDocs.Translation Cloud API: Schwedisch-Englische Übersetzung für Android"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Sprachübersetzung
Mit GroupDocs.Translation Cloud können Benutzer Texte, Dokumente, Websites und mehr von Schwedisch in Englisch übersetzen.
Android-Unterstützung
Die Plattform bietet eine spezielle Android-Unterstützung, sodass Benutzer die Übersetzungsleistungen bequem auf ihren Android-Geräten nutzen können.
Dokumentübersetzung
Benutzer können ihre Dokumente in verschiedenen Formaten, darunter PDF, DOCX und mehr, in Echtzeit von Schwedisch in Englisch übersetzen.
Qualitätssicherung
GroupDocs.Translation Cloud verwendet fortschrittliche Algorithmen und qualitätssichernde Maßnahmen, um genaue und verlässliche Übersetzungen von Schwedisch nach Englisch zu gewährleisten.