LazyApiPack.Localization
0.0.5
See the version list below for details.
dotnet add package LazyApiPack.Localization --version 0.0.5
NuGet\Install-Package LazyApiPack.Localization -Version 0.0.5
<PackageReference Include="LazyApiPack.Localization" Version="0.0.5" />
paket add LazyApiPack.Localization --version 0.0.5
#r "nuget: LazyApiPack.Localization, 0.0.5"
// Install LazyApiPack.Localization as a Cake Addin #addin nuget:?package=LazyApiPack.Localization&version=0.0.5 // Install LazyApiPack.Localization as a Cake Tool #tool nuget:?package=LazyApiPack.Localization&version=0.0.5
About this project
This project provides interfaces, to use the Localization Manager in MVVM Service patterns.
Localization Interface
Supports functions GetTranslation
and SetTranslation
GetTranslation(group, id)
Gets the localization from the Group with the Id (See file structure).SetTranslation(group, id, value)
Sets or updates the localization in the specified Group with the Id.
Localization File Structure
The localization file is structured as following:
- a Header
ILocalizationHeader
that provides Metadata such as Localized Language Name (E.g. עברית) or the Language Ietf / Language ISO 639-1 codes. - the localization
ILocalization
, that is grouped intoGroup.Id
.- Group: e.g. Captions or Messages
- Id: The unique id of a translation e.g.
FileNotFoundMessage
orMainWindowTitle
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on LazyApiPack.Localization:
Package | Downloads |
---|---|
LazyApiPack.Localization.Manager
Provides a way to localize applications. |
|
LazyApiPack.Localization.Wpf
Provides a way to use the LocaliationService within XAML files. |
|
LazyApiPack.Mvvm
Provides an MVVM pattern for applications. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Supports right to left text and prioritizing localization files to enable merge functionality; Simplified service (AvailableLocalizations); Additional function added: Adding new language files while the service is running (Improves merge functionality)