Currently we must translate string before we pass it to notifications.
Perhaps add hook to pre-process / translate so we can just pass a function to it at start?
- Notifications.Send(Localization.Translate("foobar"))
+ Notifications.Translate += Localization.Translate;
+ Notifications.Send("foobar")