GlobalStrings 0.2.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package GlobalStrings --version 0.2.2
NuGet\Install-Package GlobalStrings -Version 0.2.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.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GlobalStrings --version 0.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: GlobalStrings, 0.2.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.2.2 // Install GlobalStrings as a Cake Tool #tool nuget:?package=GlobalStrings&version=0.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
GlobalStrings
Simple package that helps manage strings for implementing new languages in .NET applications
Dependencies
- .NET 5
Installation
PM
Install-Package GlobalStrings
.NET CLI
dotnet add package GlobalStrings
See also in Nuget Packages
Simple example:
using System.Collections.Generic;
using GlobalStrings;
Globalization<int, int, int> globalization;
private string congrats;
private string exit;
private string wellcome;
public void ChangeLanguageTest()
{
Start();
Assert.Equal("Olá", congrats);
Assert.Equal("Seja Bem-Vindo", wellcome);
Globalization<string, string, int>.GetGlobalizationInstance().UpdateLang("en");
Assert.Equal("Hello", congrats);
Assert.Equal("Wellcome", wellcome);
}
private void Start()
{
LanguageInfo<string, string, int> languagePtBr = new("pt_br");
languagePtBr.textBookCollection = new();
languagePtBr.textBookCollection.Add("Home", new()
{
{0, "Olá"},
{1, "Seja Bem-Vindo"}
});
LanguageInfo<string, string, int> languageEn = new("en", new()
{
{"Home", new()
{
{ 0, "Hello" },
{ 1, "Wellcome" }
}}
});
List<LanguageInfo<string, string, int>> languageInfos = new(){ languagePtBr, languageEn };;
Globalization<string, string, int>.SetGlobalizationInstance(new(languageInfos, "pt_br"));
Globalization<string, string, int>.GetGlobalizationInstance().LangTextObserver += Globalization_LangTextObserver;
Globalization<string, string, int>.GetGlobalizationInstance().StartGlobalization();
}
private void Globalization_LangTextObserver(object sender, UpdateModeEventArgs updateModeEventArgs)
{
congrats = Globalization<string, string, int>.GetGlobalizationInstance().SetText("Home", 0);
wellcome = Globalization<string, string, int>.GetGlobalizationInstance().SetText("Home", 1);
}
Documentation
Access the documentation here.
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.