Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luanroger/globalstrings

๐ŸŒ Simple package that helps manage strings for implementing new languages in .NET applications.
https://github.com/luanroger/globalstrings

csharp dotnet generic globalization language localization nuget package strings

Last synced: 20 days ago
JSON representation

๐ŸŒ Simple package that helps manage strings for implementing new languages in .NET applications.

Awesome Lists containing this project

README

        

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

![](https://img.shields.io/nuget/v/GlobalStrings)
![](https://img.shields.io/nuget/dt/GlobalStrings)

### Dependencies
- .NET 5
- [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json) (>= 13.0.1)

## Installation
### PM
```powershell
Install-Package GlobalStrings
```
### .NET CLI
```powershell
dotnet add package GlobalStrings
```
See also in [Nuget Packages](https://www.nuget.org/packages/GlobalStrings)

## Simple example:
```csharp
using System.Collections.Generic;
using GlobalStrings;

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

private LanguageInfo 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](https://github.com/LuanRoger/GlobalStrings/wiki).