rskibbe.I18n.Json 1.0.12

There is a newer version of this package available.
See the version list below for details.
dotnet add package rskibbe.I18n.Json --version 1.0.12
NuGet\Install-Package rskibbe.I18n.Json -Version 1.0.12
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="rskibbe.I18n.Json" Version="1.0.12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add rskibbe.I18n.Json --version 1.0.12
#r "nuget: rskibbe.I18n.Json, 1.0.12"
#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 rskibbe.I18n.Json as a Cake Addin
#addin nuget:?package=rskibbe.I18n.Json&version=1.0.12

// Install rskibbe.I18n.Json as a Cake Tool
#tool nuget:?package=rskibbe.I18n.Json&version=1.0.12

Description

A package with default JSON implementations for rskibbe.I18n.

Getting started

If you followed the steps from the base package, you are ready to provide your custom translations. For this, you need to create a specific folder structure, as this package works with JSON files.

A quick translator setup recap

To setup your custom translator just go ahead and use this quick method (if you've installed rskibbe.I18n & rskibbe.I18n.Json):

    Translator.Builder
        .Build()
        .StoreInstance();

This will take the Json package with the autodetection mode and you don't need to configure much more.

Remember to do this "bestly" before any UI going on, the Bootstrapping point Program.cs/Program.vb or like the first Form Constructor could be the best place (but make sure it doesn't get called multiple times).

Creating the folder structure

Inside your output directory (where the finished exe resides, like bin/debug..), create this folder structure.

  • bin
    • debug
      • i18n
        • json
          • languages.json
          • en-US_English.json
          • de-DE_Deutsch.json

languages.json

This file represents/contains all available languages for your application - remember, in JSON format. Matching example contents to the example from above could look like this:

[{"iso": "de-DE", "name": "Deutsch"},{"iso": "en-US", "name": "English"}]

I specified the german and english language over here. Each one with a name and an iso "property".

Translation files

Next, we will take a look at the translation files like "en-US_English.json" from above. As you can see, you need to first mention the iso code (should correspond to your language file of course!). Then you just append an underscore with the specific language name.

The corresponding files from above would look like this:

Simple

en-US_English.json
{"key1": "Actions", "greeting": "Hello!"}
de-DE_Deutsch.json
{"key1": "Aktionen", "greeting": "Hallo!"}

The corresponding translation key would be "key1", which would result in "Actions" or "Aktionen" depending on the language.

Namespaces / nested

en-US_English.json
{"frmMain": {"tsmiActions": "Actions"}}
de-DE_Deutsch.json
{"frmMain": {"tsmiActions": "Aktionen"}}

The corresponding translation key would be "frmMain.tsmiActions", which is a "namespaced" / nested one.

Take a look at the base package for more information like getting the available languages, changing the language, etc.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.18 169 9/4/2023
1.0.17 114 9/4/2023
1.0.16 235 2/1/2023
1.0.15 308 11/14/2022
1.0.14 344 10/30/2022
1.0.13 343 10/30/2022
1.0.12 343 10/29/2022
1.0.11 341 10/29/2022
1.0.10 334 10/29/2022
1.0.9 340 10/29/2022
1.0.8 324 10/29/2022
1.0.7 331 10/28/2022
1.0.6 332 10/27/2022
1.0.5 358 10/27/2022
1.0.4 342 10/25/2022
1.0.3 339 10/24/2022
1.0.2 336 10/24/2022
1.0.1 353 10/24/2022
1.0.0 340 10/24/2022