Linguini.Bundle
0.1.3
See the version list below for details.
dotnet add package Linguini.Bundle --version 0.1.3
NuGet\Install-Package Linguini.Bundle -Version 0.1.3
<PackageReference Include="Linguini.Bundle" Version="0.1.3" />
paket add Linguini.Bundle --version 0.1.3
#r "nuget: Linguini.Bundle, 0.1.3"
// Install Linguini.Bundle as a Cake Addin #addin nuget:?package=Linguini.Bundle&version=0.1.3 // Install Linguini.Bundle as a Cake Tool #tool nuget:?package=Linguini.Bundle&version=0.1.3
Linguini
Linguini is a C# implementation of Project Fluent, a localization system for natural-sounding translations with features like:
Asymmetric Localization
Natural-sounding translations with genders and grammatical cases only when necessary. Expressiveness is not limited by the grammar of the source language.
Progressive Enhancement
Translations are isolated; locale-specific logic doesn't leak to other locales. Authors can iteratively improve translations without impact on other languages.
Modular
Linguini is highly modular. You only can use the parts you need. Need just parsing? Get Linguni.Syntax. Need only Plural Rules data? Get PluralRules.Generator and connect to XML CLDR Plural rules data.
Performant
Linguini uses a zero-copy parser to parse the resources. While at the moment there are no benchmarks, it is used by RobustToolbox as as a localization framework.
How to get?
To install the Fluent Bundle type in your console:
dotnet add package Linguini.Bundle
You can also follow other NuGet installation instructions.
How to use?
For a 2 minute tour of Linguini add this to your C# code:
var bundler = LinguiniBuilder.Builder()
.CultureInfo(new CultureInfo("en"))
.AddResource("hello-user = Hello, { $username }!")
.SetUseIsolating(false)
.UncheckedBuild();
var props = new Dictionary<string, IFluentType>()
{
{"username", (FluentString)"Test"}
};
var message = bundler.GetAttrMessage("hello-user", props);
Assert.AreEqual("Hello, Test!", message);
For more details see Fluent syntax guide.
Licenses
Linguini Bundle and associated projects are licensed under Apache and MIT licenses. Consult the LICENSE-MIT and LICENSE-APACHE for more detail.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net5.0
- Linguini.Shared (>= 0.1.3)
- Linguini.Syntax (>= 0.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on Linguini.Bundle:
Repository | Stars |
---|---|
OpenRA/OpenRA
Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.
|
|
space-wizards/RobustToolbox
Robust multiplayer game engine, used by Space Station 14
|
|
mtkennerly/ludusavi-playnite
Playnite plugin for save backups via Ludusavi
|
Version | Downloads | Last updated |
---|---|---|
0.8.1 | 574,094 | 2/1/2024 |
0.8.0 | 157 | 1/23/2024 |
0.7.0 | 587 | 11/19/2023 |
0.6.1 | 262 | 10/23/2023 |
0.6.0 | 25,512 | 9/13/2023 |
0.5.0 | 19,342 | 6/14/2023 |
0.4.0 | 9,911 | 2/7/2023 |
0.3.2 | 7,556 | 11/19/2022 |
0.3.1 | 18,879 | 9/19/2022 |
0.3.0 | 794 | 5/30/2022 |
0.2.2 | 8,394 | 4/25/2022 |
0.2.1 | 449 | 4/25/2022 |
0.2.0 | 505 | 4/23/2022 |
0.1.4 | 444 | 4/23/2022 |
0.1.3 | 1,025,664 | 2/13/2022 |
0.1.2 | 11,541 | 12/22/2021 |
0.1.1 | 362 | 7/19/2021 |