Table of Contents

Class BobLocalizationOptions

Namespace
BlazOrbit.Localization
Assembly
BlazOrbit.Core.dll

Configuration knobs for the BOBLocalize runtime. Passed to the registration extension via the standard System.Action<T> pattern; immutable after build.

public sealed class BobLocalizationOptions
Inheritance
object
BobLocalizationOptions

Constructors

BobLocalizationOptions()

public BobLocalizationOptions()

Properties

DefaultCulture

Default UI culture set on the application when no other source overrides it. Individual bundles can still declare their own source-literal culture via DefaultCulture. null leaves the runtime's current default untouched.

public string? DefaultCulture { get; set; }

Property Value

string

EnableFallbackDiagnostics

When true (default), the localizer adapter emits a System.Diagnostics.DebuggerDisplayAttribute-friendly diagnostic when a translation falls through to the source literal. Only inspectable from debug builds.

public bool EnableFallbackDiagnostics { get; set; }

Property Value

bool