GlobalStrings 0.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package GlobalStrings --version 0.3.2
NuGet\Install-Package GlobalStrings -Version 0.3.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="GlobalStrings" Version="0.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GlobalStrings --version 0.3.2
#r "nuget: GlobalStrings, 0.3.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.
// Install GlobalStrings as a Cake Addin
#addin nuget:?package=GlobalStrings&version=0.3.2

// Install GlobalStrings as a Cake Tool
#tool nuget:?package=GlobalStrings&version=0.3.2

GlobalStrings

Simple package that helps manage strings for implementing new languages in .NET applications

alternate text is missing from this package README image alternate text is missing from this package README image

Dependencies

Installation

PM

Install-Package GlobalStrings

.NET CLI

dotnet add package GlobalStrings

See also in Nuget Packages

Simple example:

using System.Collections.Generic;
using GlobalStrings;

private Globalization<string, string, int> _globalization { get; set; }
private LanguageInfo<string, string, int> languagePtBr => new("pt_br", new(new()
{
    { "Home", new()
    {
        {0, "Olá"},
        {1, "Seja Bem-Vindo"}
    }}
}));

private LanguageInfo<string, string, int> languageEn => new("en_us", new(new()
{
    {"Home", new()
    {
        { 0, "Hello" },
        { 1, "Wellcome" }
    }}
}));

private string congrats;
private string wellcome;

public void ChangeLanguageTest()
{
    StartGlobalization();
    Assert.Equal("Olá", congrats);
    Assert.Equal("Seja Bem-Vindo", wellcome);

    _globalization.UpdateLang("en");

    Assert.Equal("Hello", congrats);
    Assert.Equal("Wellcome", wellcome);
}

private void StartGlobalization()
{
    _globalization = new(new() { languagePtBr, languageEn }, "pt_br");
    _globalization.LangTextObserver += Globalization_LangTextObserver;
    _globalization.StartGlobalization();
}

private void Globalization_LangTextObserver(object sender, UpdateModeEventArgs updateModeEventArgs)
{
   congrats = _globalization.SetText("Home", 0);
   wellcome = _globalization.SetText("Home", 1);
}

Documentation

Access the documentation here.

Product 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. 
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.3.3 429 5/6/2022
0.3.2 392 4/9/2022
0.3.0 408 2/18/2022
0.2.2 399 1/17/2022
0.2.1 393 1/10/2022
0.2.0 325 9/4/2021
0.1.2 306 6/23/2021
0.1.1 296 6/22/2021
0.0.4 278 6/16/2021
0.0.3 311 6/12/2021