TypealizR 0.14.2

Prefix Reserved
dotnet add package TypealizR --version 0.14.2
                    
NuGet\Install-Package TypealizR -Version 0.14.2
                    
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="TypealizR" Version="0.14.2">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TypealizR" Version="0.14.2" />
                    
Directory.Packages.props
<PackageReference Include="TypealizR">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
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 TypealizR --version 0.14.2
                    
#r "nuget: TypealizR, 0.14.2"
                    
#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 TypealizR@0.14.2
                    
#: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=TypealizR&version=0.14.2
                    
Install as a Cake Addin
#tool nuget:?package=TypealizR&version=0.14.2
                    
Install as a Cake Tool

build Coverage Status CodeQL Publish

Quality Gate Status Lines of Code Duplicated Lines (%) Code Smells Maintainability Rating Security Rating Bugs Vulnerabilities Reliability Rating Technical Debt

Samples STS Samples LTS

NuGet Nuget NuGet (preview)

TypealizR

The typed internationalizeR

Statically typed i18n support for the .NET - ecosystem

resource-first

✔️ DO this:


@inject IStringLocalizer<HomePage> localize;
@inject AppUser user;

<h1>@localize.Title()<h1>
<h2>@localize.Welcome_back__userName(user.GivenName)<h2>

demo_typealize_translation_initial

DON´T do that:


@inject IStringLocalizer<HomePage> localize;
@inject AppUser user;

<h1>@localize["Title"]<h1>
<h2>@localize["Welcome back, {0}", user.GivenName]<h2>

See resource-first for more details

code-first

✔️ DO this:

void Demo(ILocalizables i18n)
{
    Console.WriteLine(i18n.Hello("Earth")); // Hello Earth
    Console.WriteLine(i18n.Farewell("Arthur")); // So long, 'Arthur'. And thx for all the fish!
    Console.WriteLine(i18n.WhatIsTheMeaningOfLifeTheUniverseAndEverything); // 42
    Console.WriteLine(i18n.Greet(right: "Zaphod", left: "Arthur")); // Arthur greets Zaphod, and Zaphod replies: "Hi!".
}

DON´T do that:

void Demo(IStringLocalizer i18n)
{
    Console.WriteLine(i18n["Hello", "Earth"]); // Hello Earth
    Console.WriteLine(i18n["Farewell", "Arthur"]); // So long, 'Arthur'. And thx for all the fish!
    Console.WriteLine(i18n["WhatIsTheMeaningOfLifeTheUniverseAndEverything"]; // 42
    Console.WriteLine(i18n["Greet", "Arthur", "Zaphod")); // Arthur greets Zaphod, and Zaphod replies: "Hi!".
}

See code-first for more details.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TypealizR:

Package Downloads
TypealizR.Analyzers

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.14.2 304 8/22/2025
0.14.1 369 7/7/2025
0.14.0 2,748 6/20/2025
0.14.0-pre0004 367 6/9/2025
0.14.0-pre0003 303 6/8/2025
0.14.0-pre0002 290 6/8/2025
0.14.0-pre0001 193 6/7/2025
0.13.1-pre0002 440 5/25/2025
0.13.1-pre0001 260 5/25/2025
0.13.0-pre0001 181 5/3/2025
0.12.0 1,694 4/15/2025
0.12.0-pre0002 227 4/6/2025
0.12.0-pre0001 436 4/3/2025
0.11.1-pre0004 551 3/24/2025
0.11.1-pre0003 506 3/24/2025
0.11.1-pre0002 433 3/24/2025
0.11.1-pre0001 363 3/23/2025
0.11.0 1,612 3/23/2025
0.11.0-pre0001 362 3/23/2025
0.10.0-pre0013 205 10/30/2024
0.10.0-pre0012 184 10/29/2024
0.10.0-pre0011 422 10/26/2024
0.10.0-pre0010 152 10/26/2024
0.9.9 6,887 5/15/2024
0.9.8 194 5/15/2024
0.9.7 661 5/15/2024
0.9.6 187 5/14/2024
0.9.5 1,921 11/6/2023
0.9.4 1,340 9/19/2023
0.9.3 873 5/13/2023
0.9.2 837 2/5/2023
0.9.2-pre0008 967 2/5/2023
0.8.4 448 1/20/2023
0.8.2 387 12/31/2022
0.8.1 381 12/30/2022
0.8.0 351 12/30/2022
0.8.0-pre0005 374 12/30/2022
0.7.1 411 12/27/2022