Irihi.Lingua 0.2.0

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

Irihi.Lingua

English | 中文

A C# source generator that turns .resx resource files into a strongly-typed, reactive Avalonia i18n manager. Each resource key becomes an IObservable<string?> property that pushes a new value whenever the active culture changes — no manual INotifyPropertyChanged wiring required.

Highlights

  • NativeAOT-compatible.
  • Designed and optimized for Avalonia.
  • Usable from both XAML and ViewModel code.
  • Decentralized i18n managers: define separate resource managers in different classes and choose the granularity that fits your app — per feature, module, screen, or any other boundary you prefer.

Installation

Add the NuGet package to your project:

<PackageReference Include="Irihi.Lingua" />

The package bundles both the runtime library and the Roslyn source generator. No separate analyzer reference is needed.

Quick Start

1. Create your .resx files

Create a base resource file and one file per culture you want to support. The culture variant files must follow the <BaseName>.<culture>.resx naming convention.

Resources/Strings.resx (default / invariant culture):

<?xml version="1.0" encoding="utf-8"?>
<root>
  <data name="App_Title" xml:space="preserve">
    <value>My Application</value>
  </data>
  <data name="Greeting_Message" xml:space="preserve">
    <value>Hello!</value>
  </data>
</root>

Resources/Strings.zh-Hans.resx (Simplified Chinese):

<?xml version="1.0" encoding="utf-8"?>
<root>
  <data name="App_Title" xml:space="preserve">
    <value>我的应用程序</value>
  </data>
  <data name="Greeting_Message" xml:space="preserve">
    <value>你好!</value>
  </data>
</root>

2. Add the resource files as AdditionalFiles

The generator reads all .resx files listed as AdditionalFiles in your project file. You can include them individually or use a wildcard to add every resource file in a folder.

<ItemGroup>
  <AdditionalFiles Include="Resources\Strings.resx" />
  <AdditionalFiles Include="Resources\Strings.zh-Hans.resx" />

  
  <AdditionalFiles Include="Resources\**\*.resx" />
</ItemGroup>

3. Declare the language manager

Apply [LinguaManager] to a partial class, pointing it at the base .resx file. The source generator fills in the rest at build time. The class name is entirely up to you, and you can define as many [LinguaManager] classes in one application as you need — each one is controlled by you.

[LinguaManager("./Resources/Strings.resx")]
public partial class LanguageManager;

4. Subscribe to observable strings

Each resource key is exposed as an IObservable<string?> property on the singleton Instance. Subscribers receive the current value immediately (behaviour-subject semantics) and then every subsequent update.

using System.Globalization;

// Subscribe — current value is emitted immediately on Subscribe
using var titleSub = LanguageManager.Instance.App_Title.Subscribe(
    title => Console.WriteLine($"Title: {title}"));

using var greetingSub = LanguageManager.Instance.Greeting_Message.Subscribe(
    msg => Console.WriteLine($"Greeting: {msg}"));

5. Switch the active culture

Call UpdateCulture at any time to push new values to all active subscribers. The method walks the culture hierarchy (e.g. zh-Hans-CNzh-Hans → invariant) until a matching resource file is found.

// Switch to Simplified Chinese
LanguageManager.Instance.UpdateCulture(new CultureInfo("zh-Hans"));

// Revert to the default (invariant) culture
LanguageManager.Instance.UpdateCulture(CultureInfo.InvariantCulture);

Avalonia Usage

ViewModel + stream binding (^)

Expose the observable string properties from your view-model and bind them in XAML using the ^ stream-binding operator.

public class MainWindowViewModel
{
    public IObservable<string?> AppTitle       => LanguageManager.Instance.App_Title;
    public IObservable<string?> GreetingMessage => LanguageManager.Instance.Greeting_Message;
}
<TextBlock Text="{Binding AppTitle^}" />
<TextBlock Text="{Binding GreetingMessage^}" />

TranslateExtension markup extension

For direct XAML bindings without a view-model wrapper, use the Translate markup extension together with the generated Keys nested class.

TranslateExtension is registered under the standard Avalonia XML namespace (https://github.com/avaloniaui) via XmlnsDefinition, so no additional namespace declaration is required. Add only a local: alias for the namespace that contains your LanguageManager:

<Window xmlns="https://github.com/avaloniaui"
        xmlns:local="using:YourAppNamespace">
  
</Window>

Then use the extension:

<TextBlock Text="{Translate {x:Static local:LanguageManager+Keys.App_Title}}" />
<TextBlock Text="{Translate {x:Static local:LanguageManager+Keys.Greeting_Message}}" />

The extension resolves the LinguaKey from the Keys class, looks up the corresponding IObservable<string?> and converts it into an Avalonia binding that updates automatically when the culture changes.

FormatTranslateExtension markup extension

Use FormatTranslateExtension (or FormatTranslate in XAML) when the resource is a format string (for example, "Page {0} {1}") and you need to combine localized text with dynamic values.

FormatKey points to the format template, and nested TranslateEntry elements provide arguments in order:

  • TranslateEntry Key="..." uses another localized key as an argument.
  • TranslateEntry Binding="..." uses a normal Avalonia binding as an argument.
<TextBlock>
    <TextBlock.Text>
        <FormatTranslate FormatKey="{x:Static local:LanguageManager+Keys.Page_Template}">
            <TranslateEntry Binding="{Binding #page.Value}" />
            <TranslateEntry Key="{x:Static local:LanguageManager+Keys.Greeting_Message}" />
        </FormatTranslate>
    </TextBlock.Text>
</TextBlock>

In this example, {0} is filled by #page.Value and {1} is filled by Greeting_Message. When either the current culture changes or any bound argument value changes, the final text is recomputed automatically.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.0 85 5/31/2026