Save and load dashboards

This commit is contained in:
eikek
2022-01-26 21:23:48 +01:00
parent e83bf6b750
commit 3ff7e255b4
24 changed files with 1647 additions and 192 deletions

View File

@ -0,0 +1,17 @@
module Messages.Data.AccountScope exposing (Texts, de, gb)
import Data.AccountScope exposing (AccountScope)
type alias Texts =
AccountScope -> String
gb : Texts
gb =
Data.AccountScope.fold "Personal" "Collective"
de : Texts
de =
Data.AccountScope.fold "Persönlich" "Kollektiv"