Geaux.Localization 2.0.0

dotnet add package Geaux.Localization --version 2.0.0
                    
NuGet\Install-Package Geaux.Localization -Version 2.0.0
                    
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="Geaux.Localization" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Geaux.Localization" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Geaux.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 Geaux.Localization --version 2.0.0
                    
#r "nuget: Geaux.Localization, 2.0.0"
                    
#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 Geaux.Localization@2.0.0
                    
#: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=Geaux.Localization&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Geaux.Localization&version=2.0.0
                    
Install as a Cake Tool

Geaux.Localization

Tenant-aware, culture-aware, database-backed localization for .NET 8+ and .NET 9.

Geaux.Localization provides a complete end-to-end localization system for multi-tenant and multi-culture applications. It integrates with Entity Framework Core and ASP.NET Core to deliver database-backed translations that respect the current tenant and culture for every request.

Features

  • Database-backed IStringLocalizer with tenant + culture scoping
  • Attribute-based localization via [Localized]
  • EF Core SaveChanges interceptor for automatic translation upserts
  • Culture fallback + tenant/global precedence
  • Seeder utilities for keys, values, and cultures
  • Multi-provider support (SQL Server, PostgreSQL, MySQL/MariaDB, Sqlite)
  • Export/import tooling (CSV/JSON/ZIP)

Installation

dotnet add package Geaux.Localization

Quick Start

builder.Services.AddGeauxLocalization(builder.Configuration);

Add to appsettings.json:

{
  "Localization": {
    "DefaultCulture": "en-US",
    "SupportedCultures": [ "en-US", "fr-FR" ],
    "EnableCultureFallback": true,
    "ConnectionStringName": "LocalizationDb",
    "Provider": "SqlServer"
  }
}

License

MIT © Brent Lee Rigsby / GeauxCajunIT

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Geaux.Localization:

Package Downloads
Geaux.Localization.Admin

Geaux.Localization.Admin provides a plug‑and‑play Razor Class Library admin dashboard for managing localization keys, cultures, translations, and language packs. Includes CSV/JSON/ZIP export and import tooling, missing‑value repair, and multi‑tenant support.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 141 1/5/2026
1.4.0 198 12/25/2025

- Added culture fallback improvements
- Improved admin UI export/import
- Fixed missing key seeding for new cultures
- Normalized storage: LocalizationKeys + LocalizationValues
- Tenant/global precedence and culture fallback improvements
- Updated tests and sample