![]() |
VOOZH | about |
dotnet add package LocalizationProvider.Translator.Azure --version 9.0.0
NuGet\Install-Package LocalizationProvider.Translator.Azure -Version 9.0.0
<PackageReference Include="LocalizationProvider.Translator.Azure" Version="9.0.0" />
<PackageVersion Include="LocalizationProvider.Translator.Azure" Version="9.0.0" />Directory.Packages.props
<PackageReference Include="LocalizationProvider.Translator.Azure" />Project file
paket add LocalizationProvider.Translator.Azure --version 9.0.0
#r "nuget: LocalizationProvider.Translator.Azure, 9.0.0"
#:package LocalizationProvider.Translator.Azure@9.0.0
#addin nuget:?package=LocalizationProvider.Translator.Azure&version=9.0.0Install as a Cake Addin
#tool nuget:?package=LocalizationProvider.Translator.Azure&version=9.0.0Install as a Cake Tool
If you find this library useful, cup of coffee would be awesome! You can support further development of the library via Paypal.
Version 9.0 modernizes the platform to .NET 10 and focuses on Admin UI productivity - most notably automatic machine translations (including translating many resources in one batch), per-resource notes for translators, and a round of performance work across resource synchronization and caching.
Tracking issue: https://github.com/valdisiljuconoks/LocalizationProvider/issues/345
What's new?
Platform
Translations & Admin UI
[Notes] attribute or edit them inline in the Admin UI (shown in the resource list and in the
translation edit dialog), and they round-trip through CSV import/export.Performance
CachedTranslations, targeted cache invalidation (no full flush when filling the
cache), and removal of hot-path allocations and ToLower() callsFixes
I'm pleased to announce that Localization Provider v8.0 is finally out. Again - took a bit longer than expected 😃
What's new?
ConfigurationContext now supports config configuration as well (you can change some settings after you have added and configured default settings for localization provider). This is very useful in unit test scenarios when you need to adjust some settings for specific test.More info in this blog post.
LocalizationProvider project is ASP.NET Mvc web application localization provider on steroids.
Giving you the main following features:
Below are code fragments that are essential to get started with a localization provider.
Install required packages:
> dotnet add package LocalizationProvider.AspNetCore
> dotnet add package LocalizationProvider.AdminUI.AspNetCore
> dotnet add package LocalizationProvider.Storage.SqlServer
Following service configuration (usually in Startup.cs) is required to get the localization provider working:
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// add your authorization provider (asp.net identity, identity server, whichever..)
services
.AddControllersWithViews()
.AddMvcLocalization();
services.AddRazorPages();
services.AddRouting();
services.AddDbLocalizationProvider(_ =>
{
_.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"));
...
});
services.AddDbLocalizationProviderAdminUI(_ =>
{
...
});
}
...
}
And following setup of the application is required as a minimum (also usually located in Startup.cs):
public class Startup
{
...
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseDbLocalizationProvider();
app.UseDbLocalizationProviderAdminUI();
app.UseDbLocalizationClientsideProvider(); //assuming that you like also Javascript
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.MapRazorPages();
endpoints.MapDbLocalizationAdminUI();
endpoints.MapDbLocalizationClientsideProvider();
});
}
}
Also, you can refer to sample app in GitHub for some more hints if needed.
Please read more in this blog post!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.0 | 103 | 6/3/2026 |
| 8.2.6 | 691 | 8/1/2025 |
| 8.2.5 | 213 | 7/4/2025 |
| 8.2.4 | 586 | 12/28/2024 |
| 8.2.3 | 263 | 11/27/2024 |
| 8.2.2 | 299 | 11/15/2024 |
| 8.2.1 | 214 | 11/3/2024 |
| 8.2.0 | 326 | 9/23/2024 |
| 8.1.6 | 205 | 9/2/2024 |
| 8.1.5 | 208 | 8/27/2024 |
| 8.1.4 | 212 | 8/15/2024 |
| 8.1.3 | 211 | 8/13/2024 |
| 8.1.2 | 200 | 8/7/2024 |
| 8.1.1 | 170 | 8/4/2024 |
| 8.1.0 | 398 | 6/5/2024 |
| 8.0.3 | 160 | 5/5/2024 |
| 8.0.2 | 299 | 3/28/2024 |
| 8.0.1 | 168 | 3/5/2024 |
| 8.0.0 | 164 | 2/17/2024 |