From db5d868b5f079dd99ddf1bd0414079f768b224d2 Mon Sep 17 00:00:00 2001 From: Christoph Anderson <37236531+lupusA@users.noreply.github.com> Date: Sat, 6 Apr 2024 07:10:11 +0200 Subject: [PATCH] feat(ui): Add language support for kopiaUI (#3768) * Add multi-language support * Adding a guidline to outline the localisation process. * Moved doc to separate pr --------- Co-authored-by: lupusA --- internal/serverapi/serverapi.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/serverapi/serverapi.go b/internal/serverapi/serverapi.go index b5a5d11bf..5c1c7a81e 100644 --- a/internal/serverapi/serverapi.go +++ b/internal/serverapi/serverapi.go @@ -294,4 +294,5 @@ type UIPreferences struct { Theme string `json:"theme"` // Specifies the theme used by the UI FontSize string `json:"fontSize"` // Specifies the font size used by the UI PageSize int `json:"pageSize"` // A page size; the actual possible values will only be provided by the frontend + Language string `json:"language"` // Specifies the language used by the UI }