@using BTCPayServer.Abstractions.Models @model ListDictionariesViewModel @{ ViewData.SetActivePage(ServerNavPages.Translations, "Dictionaries"); }

Dictionaries enable you to translate the BTCPay Server backend into different languages.

@foreach (var v in Model.Dictionaries) { }
Dictionary Fallback
@if (!v.Editable) { @v.DictionaryName } else { @v.DictionaryName } @if (v.IsSelected) { In use } @v.Fallback
Clone @if (!v.IsSelected) { Select } @if (v.Editable && !v.IsSelected) { Remove }