FmgLib.LocalizationMaui
1.0.1
See the version list below for details.
dotnet add package FmgLib.LocalizationMaui --version 1.0.1
NuGet\Install-Package FmgLib.LocalizationMaui -Version 1.0.1
<PackageReference Include="FmgLib.LocalizationMaui" Version="1.0.1" />
paket add FmgLib.LocalizationMaui --version 1.0.1
#r "nuget: FmgLib.LocalizationMaui, 1.0.1"
// Install FmgLib.LocalizationMaui as a Cake Addin #addin nuget:?package=FmgLib.LocalizationMaui&version=1.0.1 // Install FmgLib.LocalizationMaui as a Cake Tool #tool nuget:?package=FmgLib.LocalizationMaui&version=1.0.1
To access related services, simply add using FmgLib.LocalizationMaui;
statement.
In the Program.cs file,
builder
.UseMauiApp<App>()
.UseFmgLibLocalizationMaui();
OR
builder.Services.AddFmgLibLocalizationMaui();
should be added.
In your main project you should have a language file of type json. The translation will be read from this file and imported. If you do not specify the path to the file(s) in the parameter (
builder
.UseMauiApp<App>()
.UseFmgLibLocalizationMaui();
//.UseFmgLibLocalizationMaui(defaultLang:"en-US"); // or
//.UseFmgLibLocalizationMaui(defaultLang:"en-US", "Loc1.json", "Loc2.json"); // or
OR
builder.Services.AddFmgLibLocalizationMaui();
// builder.Services.AddFmgLibLocalizationMaui(defaultLang:"en-US"); // or
builder.Services.AddFmgLibLocalizationMaui(defaultLang:"en-US", "Loc1.json", "Loc2.json"); // or
), will look for a json file named Localization.json
in the home directory.
if you give one or more parameters like
builder
.UseMauiApp<App>()
.UseFmgLibLocalizationMaui("Localization1.json", "Localization2.json", "/Languages/Temp1.json");
OR
builder.Services.AddFmgLibLocalizationMaui("Localization1.json", "Localization2.json", "/Languages/Temp1.json");
it will read json files in given file paths.
The critical point here is to select Build Action: MauiAsset
for json files.
Proper json format:
{
"Hello": {
"tr-TR": "Merhaba Dünya!",
"en-US": "Hello World!"
},
"Msg": {
"tr-TR": "Deneme amaçlı yapılmıştır.",
"en-US": "It was made for testing purposes."
}
}
Instead of 'keyWord' keywords, you can use any word or phrase(s) you want. You don't have any Regex limitations.
You can also change the 'tr-TR' and 'en-US' language keys with words or sentences as you wish. But it is recommended to use expressions such as 'en-US', 'tr-TR', 'fr-FR'.
You can simply use
Console.WriteLine("keyWord 1".ToTranslate());
in the code.
If you do not specify a parameter, it will translate according to the language expression registered in Culture (language keys such as 'en-US', 'tr-TR' will appear).
You can easily obtain the translation by specifying the language key as
Console.WriteLine("keyWord 1".ToTranslate("tr-TR"));
.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.Maui.Controls (>= 8.0.7)
- Newtonsoft.json (>= 13.0.3)
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 |
---|---|---|
1.0.2 | 112 | 6/8/2024 |
1.0.1 | 133 | 3/3/2024 |
1.0.1-prev1 | 122 | 1/23/2024 |
1.0.0 | 144 | 1/21/2024 |