TypealizR 0.12.0
Prefix Reserveddotnet add package TypealizR --version 0.12.0
NuGet\Install-Package TypealizR -Version 0.12.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="TypealizR" Version="0.12.0"> <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.12.0" />
<PackageReference Include="TypealizR"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
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.12.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TypealizR, 0.12.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.
#addin nuget:?package=TypealizR&version=0.12.0
#tool nuget:?package=TypealizR&version=0.12.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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>
❌ 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.
-
.NETStandard 2.0
- Microsoft.CodeAnalysis.CSharp (>= 4.11.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TypealizR:
Package | Downloads |
---|---|
TypealizR.Analyzers
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on TypealizR:
Repository | Stars |
---|---|
LiamMorrow/LiftLog
A cross platform app for tracking your lifts in the gym
|
Version | Downloads | Last updated |
---|---|---|
0.12.0 | 292 | 4/15/2025 |
0.12.0-pre0002 | 155 | 4/6/2025 |
0.12.0-pre0001 | 306 | 4/3/2025 |
0.11.1-pre0004 | 482 | 3/24/2025 |
0.11.1-pre0003 | 412 | 3/24/2025 |
0.11.1-pre0002 | 352 | 3/24/2025 |
0.11.1-pre0001 | 280 | 3/23/2025 |
0.11.0 | 781 | 3/23/2025 |
0.11.0-pre0001 | 285 | 3/23/2025 |
0.10.0-pre0013 | 105 | 10/30/2024 |
0.10.0-pre0012 | 117 | 10/29/2024 |
0.10.0-pre0011 | 329 | 10/26/2024 |
0.10.0-pre0010 | 87 | 10/26/2024 |
0.9.9 | 6,752 | 5/15/2024 |
0.9.8 | 129 | 5/15/2024 |
0.9.7 | 598 | 5/15/2024 |
0.9.6 | 126 | 5/14/2024 |
0.9.5 | 1,878 | 11/6/2023 |
0.9.4 | 1,303 | 9/19/2023 |
0.9.3 | 793 | 5/13/2023 |
0.9.2 | 759 | 2/5/2023 |
0.9.2-pre0008 | 889 | 2/5/2023 |
0.8.4 | 366 | 1/20/2023 |
0.8.2 | 318 | 12/31/2022 |
0.8.1 | 313 | 12/30/2022 |
0.8.0 | 277 | 12/30/2022 |
0.8.0-pre0005 | 300 | 12/30/2022 |
0.7.1 | 330 | 12/27/2022 |