SoftwareUpdater: Use translated application name for notification group

Fixes #16129

Change-Id: I9e12d647bc0c8b6e54297e75642a5800613f26ad
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2994
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Niels Sascha Reedijk
2020-07-06 14:09:27 +00:00
committed by waddlesplash
parent b0f530bada
commit 840f23676c
+1 -1
View File
@@ -308,7 +308,7 @@ void
CheckManager::_SendNotification(const char* title, const char* text)
{
BNotification notification(B_INFORMATION_NOTIFICATION);
notification.SetGroup("SoftwareUpdater");
notification.SetGroup(B_TRANSLATE_SYSTEM_NAME("SoftwareUpdater"));
notification.SetTitle(title);
notification.SetContent(text);
notification.SetOnClickApp(kAppSignature);