AW-3128 Taalinstellingen profiel gebruiken voor FarmMaps ipv browser instelling
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2025-03-03 15:02:59 +01:00
parent 5c8fd64521
commit 4c106ebff3
2 changed files with 33 additions and 5 deletions

View File

@@ -83,6 +83,8 @@ export const SETPAGEMODE = '[AppCommon] SetPageMode';
export const SETUNREADNOTIFICATIONS = '[AppCommon] SetUnreadNotifications';
export const SWITCHLANGUAGE = '[AppCommon] SwitchLanguage';
export class InitUser implements Action {
readonly type = INITUSER;
@@ -371,6 +373,12 @@ export class SetUnreadNotifications implements Action {
}
export class SwitchLanguage implements Action {
readonly type = SWITCHLANGUAGE;
constructor(public locale:string) { }
}
export type Actions = OpenModal
| InitRoot
@@ -418,6 +426,7 @@ export type Actions = OpenModal
| ToggleHelpMenu
| ToggleSettingMenu
| NotificationEvent
| SetUnreadNotifications;
| SetUnreadNotifications
| SwitchLanguage;