RedCorners.Forms.Localization
5.39.3
See the version list below for details.
dotnet add package RedCorners.Forms.Localization --version 5.39.3
NuGet\Install-Package RedCorners.Forms.Localization -Version 5.39.3
<PackageReference Include="RedCorners.Forms.Localization" Version="5.39.3" />
paket add RedCorners.Forms.Localization --version 5.39.3
#r "nuget: RedCorners.Forms.Localization, 5.39.3"
// Install RedCorners.Forms.Localization as a Cake Addin #addin nuget:?package=RedCorners.Forms.Localization&version=5.39.3 // Install RedCorners.Forms.Localization as a Cake Tool #tool nuget:?package=RedCorners.Forms.Localization&version=5.39.3
NuGet: https://www.nuget.org/packages/RedCorners.Forms.Localization
RedCorners.Forms.Localization
is a lightweight and easy to use library for facilitating translations and localizations in Xamarin.Forms. It is available as a .NET Standard library and works on all of the platforms you can install Xamarin.Forms on.
It stores translations as a Dictionary
of Dictionary
s, where the parent Dictionary
holds the mappings between language keys and their translations, and the child Dictionary
s hold the mappings between translation keys and their values in each language.
This concept allows the translation engine to work perfectly with JSON data structures:
{
"En": {
"Hello": "Hello!",
"HelloX": "Hello, {0}!",
"Bye": "Bye!"
},
"Fr": {
"Hello": "Salut!",
"HelloX": "Salut, {0}!",
"Bye": "Au revoir!"
},
"De": {
"Hello": "Hallo!",
"HelloX": "Hallo, {0}!",
"Bye": "Tschüss!"
}
}
Getting Started
Everything is located under the RedCorners.Forms.Localization
namespace inside the RL
static class:
using RedCorners.Forms.Localization;
Full Documentation: http://redcorners.com/localization/
After installing the RedCorners.Forms.Localization
package and its dependencies, you have a few different ways to load the translations. The most straightforward way is to call the Load
method with a Dictionary<string, Dictionary<string, string>>
, containing a structure similar to the one above:
RL.Load(map);
If you have a dictionary for each language, you can load them individually like this:
Dictionary<string, string> english, french, german;
RL.Load("En", english);
RL.Load("Fr", french);
RL.Load("De", german);
The RL
class provides an additional overload of the Load
method for automatically loading translations from embedded resources. Assume the scenario where three JSON files are set as embedded resources inside a project with the default namespace LocalizationDemo
and the .trans.json
file extensions:
<img src="https://redcorners.com/images/localization_000.PNG" class="free-width" />
You can automatically load all the files by calling this special overload of RL
:
<img src="https://redcorners.com/images/localization_001.PNG" class="free-width" />
namespace LocalizationDemo
{
public class App : Application2
{
public override void InitializeSystems()
{
base.InitializeSystems();
RL.Load(typeof(App), "LocalizationDemo.", ".trans.json");
}
}
}
Changing the Language
You can change the current language by calling the SetLanguage
method. RL
provides an OnLanguageChange
event, which is triggered whenever the language is changed. You can use this event to restart or update your UI layer to reflect the new language:
RL.SetLanguage("En");
RL.OnLanguageChange += (o, e) => ShowFirstPage();
The GetLanguageKeys()
method returns a list of all loaded language keys (e.g. En
, Fr
or De
). This is derived from the file names, based on the parameters of the Load
method.
Performing Localizations
The L
method provides the value of the specified key in the selected language:
Console.WriteLine(RL.L("Hello"));
In case the translation value requires a parameter, you can provide them to the L
method:
Console.WriteLine(RL.L("HelloX", "Alice"));
//Prints "Hello, Alice!"
XAML Syntax
You can use the RL
tools in Xamarin.Forms XAML. To do this, first include the namespace:
xmlns:rl="clr-namespace:RedCorners.Forms.Localization;assembly=RedCorners.Forms.Localization"
Once you have this, you can use the RL
XAML extension to quickly provide localized strings:
<Label Text="{rl:RL Hello}" />
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.3)
- Xamarin.Forms (>= 4.3.0.991211)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Easy and intuitive localization tools for Xamarin.Forms.