StockSharp.Localization 5.0.213

Prefix Reserved
dotnet add package StockSharp.Localization --version 5.0.213
                    
NuGet\Install-Package StockSharp.Localization -Version 5.0.213
                    
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="StockSharp.Localization" Version="5.0.213" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.Localization" Version="5.0.213" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.Localization" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StockSharp.Localization --version 5.0.213
                    
#r "nuget: StockSharp.Localization, 5.0.213"
                    
#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.
#:package StockSharp.Localization@5.0.213
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StockSharp.Localization&version=5.0.213
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.Localization&version=5.0.213
                    
Install as a Cake Tool

StockSharp.Localization

Overview

StockSharp.Localization provides a flexible and extensible localization system for the entire StockSharp framework. The package contains the default English resources and utilities for switching languages at runtime. It works together with language specific packages located in Localization.Langs.

Features

  • JSON based resources – human readable strings.json holds the default English text for all UI elements and messages.
  • Source generator – during build Localization.Generator converts the JSON file into strongly typed properties of the LocalizedStrings class.
  • Runtime language switching – any number of language packs can be added and activated through LocalizedStrings.AddLanguage and LocalizedStrings.ActiveLanguage.
  • Missing translation tracking – the Missing event notifies when a resource key or text does not have a translation.
  • Automatic culture update – setting ActiveLanguage updates Thread.CurrentCulture and Thread.CurrentUICulture.

Installation

Add StockSharp.Localization as a NuGet package to your project. To include additional languages, reference the corresponding package such as StockSharp.Localization.ru or the meta package StockSharp.Localization.All.

The source generator is included automatically and requires no manual configuration.

Usage

Retrieve a localized string via the generated properties:

// get text for the current language
string text = LocalizedStrings.About;

// explicitly translate from one language to another
string russian = "About".Translate(from: LocalizedStrings.EnCode, to: LocalizedStrings.RuCode);

Switch the active language at runtime:

// change UI culture to Russian
LocalizedStrings.ActiveLanguage = LocalizedStrings.RuCode;

Extending Language Support

To add your own language:

  1. Create a strings.json file with translations where keys match those in the base project.
  2. Include the JSON in a new .csproj referencing common_lang.props (see examples in Localization.Langs).
  3. Reference the resulting assembly in your application. LocalizedStrings will automatically pick it up when available.

Languages can also be loaded dynamically using AddLanguage(string langCode, Stream stream) at runtime.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 (4)

Showing the top 4 NuGet packages that depend on StockSharp.Localization:

Package Downloads
StockSharp.Messages

Trading messages (register order, cancel order, subscribe market data etc.). More info on web site https://stocksharp.com/store/

StockSharp.Logging

Logging components. More info on web site https://stocksharp.com/store/

StockSharp.Licensing.Core

Licensing core components. More info on web site https://stocksharp.com/store/

TradeSystemsCommon.Tools

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.213 428 11/20/2025
5.0.212 3,180 9/11/2025
5.0.211 1,987 8/30/2025
5.0.210 2,202 8/10/2025
5.0.209 2,744 7/20/2025
5.0.208 995 7/14/2025
5.0.207 1,484 7/8/2025
5.0.206 865 7/4/2025
5.0.205 892 6/30/2025
5.0.204 4,481 6/18/2025
5.0.203 1,364 6/2/2025
5.0.202 1,544 5/14/2025
5.0.201 5,969 2/26/2025
5.0.200 2,469 2/14/2025
5.0.199 3,134 2/5/2025
5.0.198 474 2/4/2025
5.0.197 3,553 12/30/2024
5.0.196 2,490 11/18/2024
5.0.195 1,318 11/18/2024
5.0.194 1,557 11/16/2024
5.0.193 1,989 10/14/2024
5.0.192 3,275 10/7/2024
5.0.191 1,493 10/3/2024
5.0.190 1,233 9/23/2024
5.0.189 1,530 9/18/2024
5.0.188 2,856 9/16/2024
5.0.187 1,884 9/8/2024
5.0.186 2,184 8/24/2024
5.0.185 1,921 8/9/2024
5.0.184 1,931 8/1/2024
5.0.183 2,836 7/28/2024
5.0.182 2,762 7/4/2024
5.0.181 2,991 6/13/2024
5.0.180 3,100 5/30/2024
5.0.179 2,237 5/13/2024
5.0.178 1,743 5/5/2024
5.0.177 1,210 4/26/2024
5.0.176 1,527 4/25/2024
5.0.175 3,278 4/12/2024
5.0.174 2,378 4/4/2024
5.0.173 858 3/29/2024
5.0.172 2,449 3/11/2024
5.0.171 3,546 2/21/2024
5.0.170 2,226 2/14/2024
5.0.169 2,114 2/12/2024
5.0.168 2,485 2/6/2024
5.0.167 2,579 1/31/2024
5.0.166 4,851 1/10/2024
5.0.165 4,910 12/15/2023
5.0.164 3,616 12/8/2023
5.0.163 3,796 11/28/2023
5.0.162 3,404 11/28/2023
5.0.161 9,930 10/8/2023
5.0.160 7,335 9/29/2023
5.0.159 7,410 9/19/2023
5.0.158 2,952 9/18/2023
5.0.157 12,116 7/30/2023
5.0.156 10,401 7/10/2023
5.0.155 9,899 7/8/2023
5.0.154 10,227 7/5/2023
5.0.153 4,817 6/22/2023
5.0.152 10,328 6/19/2023
5.0.151 16,145 5/14/2023
5.0.150 11,441 5/8/2023
5.0.149 15,763 4/21/2023
5.0.148 12,196 4/17/2023
5.0.147 13,206 4/7/2023
5.0.146 12,779 4/3/2023
5.0.145 18,352 3/6/2023
5.0.144 15,940 2/23/2023
5.0.143 16,930 2/13/2023
5.0.142 16,255 2/9/2023
5.0.141 16,001 2/8/2023
5.0.140 18,888 2/2/2023
5.0.139 17,395 1/30/2023
5.0.138 24,246 1/3/2023
5.0.137 19,861 12/30/2022
5.0.136 20,288 12/12/2022
5.0.135 20,444 12/8/2022
5.0.134 28,475 11/11/2022
5.0.133 23,855 11/1/2022
5.0.132 24,817 10/16/2022
5.0.131 51,899 9/8/2022
5.0.130 46,531 8/29/2022
5.0.129 47,173 8/24/2022
5.0.128 53,715 7/26/2022
5.0.127 46,602 7/19/2022
5.0.126 53,766 5/13/2022
5.0.125 46,533 4/30/2022
5.0.124 12,112 3/29/2022
5.0.123 53,339 3/25/2022
5.0.122 47,426 3/17/2022
5.0.121 56,801 2/15/2022
5.0.120 49,368 2/11/2022
5.0.119 18,018 2/2/2022
5.0.118 14,367 1/28/2022
5.0.117 45,729 1/26/2022
5.0.116 46,144 1/21/2022
5.0.115 45,803 1/21/2022
5.0.114 50,532 1/13/2022
5.0.113 28,972 12/29/2021
5.0.112 28,995 12/20/2021
5.0.111 28,855 12/11/2021
5.0.110 29,035 12/6/2021
5.0.109 30,603 11/29/2021
5.0.108 28,815 11/22/2021
5.0.107 29,771 11/13/2021
5.0.106 31,308 11/8/2021
5.0.105 33,113 11/5/2021
5.0.104 32,383 10/21/2021
5.0.103 32,068 10/14/2021
5.0.102 32,078 10/14/2021
5.0.101 4,831 10/13/2021
5.0.100 7,861 10/13/2021
5.0.99 32,937 10/11/2021
5.0.98 33,746 10/8/2021
5.0.97 7,261 10/7/2021
5.0.96 32,569 10/7/2021
5.0.95 1,983 9/24/2021
5.0.94 34,082 9/23/2021
5.0.93 31,795 9/7/2021
5.0.92 32,919 7/31/2021
5.0.91 31,447 7/30/2021
5.0.90 31,016 7/30/2021
5.0.89 30,487 7/19/2021
5.0.88 31,539 7/13/2021
5.0.87 31,574 7/5/2021
5.0.86 32,696 6/16/2021
5.0.85 32,499 6/4/2021
5.0.84 31,831 5/15/2021
5.0.83 31,774 4/30/2021
5.0.82 31,835 4/26/2021
5.0.81 31,856 4/19/2021
5.0.80 31,310 4/16/2021
5.0.79 31,210 4/13/2021
5.0.78 31,246 4/12/2021
5.0.77 31,649 4/8/2021
5.0.76 31,290 4/7/2021
5.0.75 31,059 4/6/2021
5.0.74 31,581 3/29/2021
5.0.73 31,506 3/28/2021
5.0.72 31,622 3/26/2021
5.0.71 31,075 3/26/2021
5.0.70 31,070 3/24/2021
5.0.69 29,979 3/23/2021
5.0.68 29,902 3/18/2021
5.0.67 29,574 3/17/2021
5.0.66 29,967 3/12/2021
5.0.65 29,880 3/4/2021
5.0.64 6,247 3/4/2021
5.0.63 29,676 2/26/2021
5.0.62 30,124 2/17/2021
5.0.61 29,601 2/15/2021
5.0.60 29,179 2/13/2021
5.0.59 29,701 2/12/2021
5.0.58 30,180 2/7/2021
5.0.57 29,717 2/2/2021
5.0.56 29,633 2/2/2021
5.0.55 30,047 1/26/2021
5.0.54 29,880 1/25/2021
5.0.53 29,785 1/25/2021
5.0.52 30,585 1/21/2021
5.0.51 30,021 1/20/2021
5.0.50 29,113 1/19/2021
5.0.49 27,877 1/16/2021
5.0.48 29,466 1/14/2021
5.0.47 29,878 12/29/2020
5.0.46 30,567 12/23/2020
5.0.45 29,680 12/18/2020
5.0.44 55,415 12/14/2020
5.0.43 32,388 12/10/2020
5.0.43-a3 4,025 11/30/2020
5.0.43-a2 3,940 11/30/2020
5.0.42 62,432 11/29/2020
5.0.41 29,194 11/22/2020
5.0.40 29,037 11/22/2020
5.0.40-a7 22,152 11/22/2020
5.0.39 52,830 11/13/2020
5.0.38 30,170 10/11/2020
5.0.37 30,293 9/20/2020
5.0.36 28,686 9/18/2020
5.0.35 29,732 9/15/2020
5.0.34 28,702 9/9/2020
5.0.33 28,821 9/3/2020
5.0.32 29,388 8/21/2020
5.0.31 29,340 8/11/2020
5.0.30 28,980 8/10/2020
5.0.29 29,701 8/10/2020
5.0.28 2,268 8/2/2020
5.0.27 28,818 7/28/2020
5.0.26 28,644 7/19/2020
5.0.25 28,585 7/9/2020
5.0.24 28,754 7/7/2020
5.0.23 29,601 6/10/2020
5.0.22 29,170 6/9/2020
5.0.21 29,130 6/9/2020
5.0.20 29,724 6/4/2020
5.0.19 29,423 6/2/2020
5.0.18 29,258 5/29/2020
5.0.17 29,402 5/25/2020
5.0.16 29,204 5/21/2020
5.0.15 28,535 5/14/2020
5.0.14 28,707 5/12/2020
5.0.13 28,872 5/11/2020
5.0.12 28,855 5/9/2020
5.0.11 28,792 5/5/2020
5.0.10 28,893 5/4/2020
5.0.9 2,166 4/24/2020
5.0.8 8,263 4/22/2020
5.0.7 30,294 4/18/2020
5.0.6 28,277 4/16/2020
5.0.5 24,295 4/15/2020
5.0.4 2,199 4/14/2020
5.0.3 25,962 4/12/2020
5.0.2 25,566 4/4/2020
5.0.1 11,526 3/27/2020
5.0.0 11,573 3/26/2020