GroupDocs.Translation-Cloud
20.12.1
See the version list below for details.
dotnet add package GroupDocs.Translation-Cloud --version 20.12.1
NuGet\Install-Package GroupDocs.Translation-Cloud -Version 20.12.1
<PackageReference Include="GroupDocs.Translation-Cloud" Version="20.12.1" />
paket add GroupDocs.Translation-Cloud --version 20.12.1
#r "nuget: GroupDocs.Translation-Cloud, 20.12.1"
// Install GroupDocs.Translation-Cloud as a Cake Addin #addin nuget:?package=GroupDocs.Translation-Cloud&version=20.12.1 // Install GroupDocs.Translation-Cloud as a Cake Tool #tool nuget:?package=GroupDocs.Translation-Cloud&version=20.12.1
.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
Supported Document Formats
Microsoft Word: DOC, DOCX, DOCM Microsoft Excel: XLS, XLSX, XLSM Microsoft PowerPoint: PPT, PPTX, PPTM
Supported Formats for Conversion
- 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
How to use the SDK?
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on GroupDocs.Translation-Cloud:
Repository | Stars |
---|---|
aspose-pdf/Aspose.PDF-for-.NET
Aspose.PDF for .NET examples, plugins and showcase projects
|
Version | Downloads | Last updated |
---|---|---|
24.11.1 | 42 | 11/26/2024 |
24.11.0 | 50 | 11/25/2024 |
24.6.0 | 126 | 6/3/2024 |
24.5.0 | 121 | 5/26/2024 |
24.3.0 | 134 | 3/22/2024 |
23.12.0 | 881 | 12/22/2023 |
23.10.5 | 336 | 10/26/2023 |
23.10.1 | 205 | 10/18/2023 |
23.10.0 | 149 | 10/18/2023 |
23.9.4 | 381 | 9/27/2023 |
23.9.3-pre | 123 | 9/11/2023 |
23.9.0-pre | 107 | 9/6/2023 |
23.8.3-pre | 116 | 9/1/2023 |
23.8.2-pre | 149 | 8/25/2023 |
23.8.0-pre | 131 | 8/9/2023 |
23.6.1-pre | 412 | 6/30/2023 |
23.6.0-pre | 146 | 6/30/2023 |
22.12.0 | 3,452 | 12/12/2022 |
22.11.0 | 331 | 11/28/2022 |
22.8.1 | 1,711 | 8/30/2022 |
22.8.0 | 541 | 8/5/2022 |
22.5.2 | 509 | 6/28/2022 |
22.5.1 | 424 | 6/15/2022 |
22.5.0 | 466 | 5/18/2022 |
22.4.0 | 459 | 4/25/2022 |
22.2.0 | 459 | 2/21/2022 |
21.6.0 | 6,030 | 6/25/2021 |
20.12.1 | 563 | 1/14/2021 |
20.12.0 | 476 | 12/21/2020 |
20.10.0 | 464 | 11/3/2020 |
20.9.0 | 442 | 9/23/2020 |
20.8.0 | 453 | 8/31/2020 |
20.7.0 | 501 | 7/17/2020 |
20.6.0 | 508 | 6/23/2020 |