@using BTCPayServer.Abstractions.Models @model EditDictionaryViewModel @{ ViewData.SetActivePage(ServerNavPages.Translations); ViewData["Title"] = Context.GetRouteValue("dictionary"); }

Translations are formatted as JSON { "Key": "Translation", "Key2": "Translation2" }; for example, { "Welcome": "Bienvenue" } translates Welcome to Bienvenue.

To use the translation from this dictionary's fallback, you can:

  • Remove the translation from this dictionary.
  • Set the translation to match the string in the fallback.

Please note that not all text is translatable, and future updates may modify existing translations or introduce new translatable phrases.