.NET SDK for Translating Cloud Documents


Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
GroupDocs.Translation Cloud is Cloud API to translate Word, Excel, and PowerPoint files as well as plain text.
For the convenience of our .NET customers, we introduce a simple SDK used to add the translation of Microsoft Word documents, Microsoft Excel workbooks, Microsoft PowerPoint presentations, and plain text to your app with merely a few lines of code.
In detail, it's a set of SDKs for document and plain text translation in our Cloud. It supports translation of .doc, .docx, .docm, .xls, .xlsx, .xlsm, .ppt, .pptx, .pptm files. Just pass a specific file or text to the GroupDocs.Translation Cloud API, and will translate and save the translated file in our Cloud or will return translated text.
It is easy to get started with GroupDocs.Translation Cloud and there is nothing to install. Create an account at GroupDocs Cloud and get your application information, then you are ready to use SDKs
Cloud Document Translation Features
- Translation of Microsoft Word, Microsoft Excel, and Microsoft PowerPoint documents
- 10 languages and 22 languages pairs support
- Translation of tables, headers, footers, footnotes/endnotes, image captions in Word documents
- Translation of cells, charts, tables, pivot tables in Excel documents
- Translation of text frames, tables, headers, footers, charts, comments in PowerPoint presentations
- Translation of plain text
- API that allows you to manage your files and folders in our Cloud
Microsoft Word: DOC, DOCX, DOCM
Microsoft Excel: XLS, XLSX, XLSM
Microsoft PowerPoint: PPT, PPTX, PPTM
- Convert DOC to DOCX, RTF, HTML, ODT, TXT, MD, PDF, TIFF, SVG, XPS\
- Convert DOCX to RTF, HTML, ODT, TXT, MD, PDF, TIFF, SVG, XPS\
- Convert DOCM to DOCM\
- Convert XLS to XLSX, XLSB, HTML, PDF, XPS, ODS, MD, DOCX, PPTX, TIFF\
- Convert XLSX to XLSB, HTML, PDF, XPS, ODS, MD, DOCX, PPTX, TIFF\
- Convert XLSM to XLSM\
- Convert PPT to PPTX, PDF, TIFF, HTML, XPS, ODP\
- Convert PPTX to PDF, TIFF, HTML, XPS, ODP\
- Convert PPTM to PPTM
Supported Translation Languages
en-fr / fr-en — to translate from English to French or from French to English
en-de / de-en — to translate from English to German or from German to English
en-es / es-en — to translate from English to Spanish or from Spanish to English
en-it / it-en — to translate from English to Italian or from Italian to English
en-zh / zh-en — to translate from English to Chinese or from Chinese to English
en-ru / ru-en — to translate from English to Russian or from Russian to English
en-ar / ar-en — to translate from English to Arabic or from Arabic to English
en-pt / pt-en — to translate from English to Portuguese or from Portuguese to English
en-pl / pl-en — to translate from English to Polish or from Polish to English
fr-de / de-fr — to translate from French to German or from German to French
fr-it / it-fr — to translate from French to Italian or from Italian to French
Get Started
Our API is completely independent of your operating system, database system, or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone, and time-consuming. Therefore, we have provided and support SDKs in many development languages to make it easier to integrate with us.
Please check the GitHub Repository for common usage scenarios.
Translate Plain Text using C# Code
//TODO: Get your ClientId and ClientSecret at https://dashboard.groupdocs.cloud (free registration is required).
using System;
using Newtonsoft.Json;
using GroupDocs.Translation.Cloud.SDK.NET;
using GroupDocs.Translation.Cloud.SDK.NET.Model;
using GroupDocs.Translation.Cloud.SDK.NET.Model.Requests;
namespace Examples.TranslationExamples {
public class Translation_CSharp_Translate_Text {
public static void Run() {
Configuration conf = new Configuration();
// add your ClientId here
conf.ClientId = "";
// add your ClientSecret here
conf.ClientSecret = "";
// add language pair here, see https://docs.groupdocs.cloud/translation/supported-languages/
string pair = "";
// add text to translate here
string text = "";
TranslationApi api = new TranslationApi(conf);
TranslateTextRequest request = api.CreateTextRequest(pair, text);
TextResponse response = api.RunTranslationTextTask(request);
Console.WriteLine(response);
}
}
}
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
| |