AzureCognitiveTranslator 1.0.7

dotnet add package AzureCognitiveTranslator --version 1.0.7
NuGet\Install-Package AzureCognitiveTranslator -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AzureCognitiveTranslator" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AzureCognitiveTranslator --version 1.0.7
#r "nuget: AzureCognitiveTranslator, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AzureCognitiveTranslator as a Cake Addin
#addin nuget:?package=AzureCognitiveTranslator&version=1.0.7

// Install AzureCognitiveTranslator as a Cake Tool
#tool nuget:?package=AzureCognitiveTranslator&version=1.0.7

AzureCognitiveTranslator

Use this NuGet package for batch translation on CognitiveServices Translator API 3.0

  • This package can help you on Batch-Translation, easily and quickly.
  1. How it work: It'll transform your contents to some perfect packages for translating.
  2. Speed: On my PC, about 300~500 items(not characters) per second.

Here are steps:

  1. Create an instance of Translator with your BaseUrl and Key:

     Translator translator = new Translator(BaseUrl, Key);
    
  2. Add content to the Translator:

     translator.AddContent("哈啰");
     //Here you can add many times, more than 100, 1000 or 10000.
     //You can also set the property "Contents" instead.
    
  3. Get results aysnc:

     List<string> translation = await translator.TranslateAsync("en");
    
  • More Examples
  1. A simple example, add content to translator one by one

     //Get a instance of Translator:
     Translator translator = new Translator(resources.MyAzureCognitiveBaseUrl, Secret.MyAzureCogitiveKey);
    
     translator.AddContent("哈啰,");//Add a string object to the translator
     translator.AddContent("世界!");//Add another
    
     Console.WriteLine("Now translating, please wait for a moment...");
    
     //Create a List<string> to receive result, and don't forgeive to give "TranslateAsync" a languge code
     List<string> translation = await translator.TranslateAsync("en");//You can get language codes by Translator Property "TranlatableLanguages"
     Console.WriteLine("Translation:");
     for (int i = 0; i < translation.Count; i++)
     {
         Console.WriteLine(translation[i]);
     }
    
  2. Batch adding

     //Prepare a List<string>, in which there are many items to translate
     //Here is an Exmp List<string> with two items
     List<string> contents = new List<string>() { "哈啰,","世界!" };
    
     //Set the List<string> to the property "Contents"
     translator.Contents = contents;
    
     //Get results
     Console.WriteLine("Now translating, please wait for a moment...");
     List<string> translation = await translator.TranslateAsync("en");
     Console.WriteLine("Translation:");
     for (int i = 0; i < translation.Count; i++)
     {
         Console.WriteLine(translation[i]);
     }
    
  3. Get translatable languages

     //Prepare a Dictionary<string code,Language>, you can also use "var" instead
     //Language is a Struct, consist of three string field: name, nativeName, dir
     Dictionary<string, Translator.Language> translatableLanguages = translator.TranslatableLanguages;
    
     foreach (string code in translatableLanguages.Keys)
     {
         Console.WriteLine();
         Console.WriteLine("code: {0}", code);
         Console.WriteLine("name: {0}  nativeName: {1}  dir: {2} ", translatableLanguages[code].name, translatableLanguages[code].nativeName, translatableLanguages[code].dir);
     }
    
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 6,145 6/20/2019
1.0.6 903 6/10/2019
1.0.5 925 6/2/2019
1.0.4 932 6/2/2019
1.0.3 917 6/2/2019
1.0.2 908 5/31/2019
1.0.1 882 5/31/2019
1.0.0 935 5/30/2019

Method "TranslateAsync" optionally receive a cancellationToken.