feat(i18n): persist Bokmal preference globally

This commit is contained in:
cesnimda
2026-08-28 12:44:02 +02:00
parent b6dcc7c760
commit 5805c1a621
21 changed files with 359 additions and 66 deletions
+2
View File
@@ -33,6 +33,8 @@ public sealed class ApplicationUser : IdentityUser
public bool AiEnabled { get; set; } = true;
public bool ExternalAiProcessingAllowed { get; set; }
public bool EmailFollowUpRemindersEnabled { get; set; } = true;
// BCP 47 application UI preference. Null/legacy values safely fall back to English.
public string? UiLanguage { get; set; }
public string DeletionStatus { get; set; } = AccountDeletionStatuses.Active;
public DateTimeOffset? DeletionRequestedAtUtc { get; set; }
}