| 1 | package main |
| 2 | |
| 3 | import "reasonix/internal/i18n" |
| 4 | |
| 5 | // refreshBackendNoticeLocale keeps host-generated notices aligned with the |
| 6 | // live desktop language without adding catalog state to each controller. |
| 7 | func refreshBackendNoticeLocale(lang string) { |
| 8 | i18n.DetectLanguage(lang) |
| 9 | } |
| 10 |