From 840f23676c6602d5906a73cd3cdec27e6b59d5bc Mon Sep 17 00:00:00 2001 From: Niels Sascha Reedijk Date: Mon, 6 Jul 2020 10:09:35 +0100 Subject: [PATCH] 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 --- src/apps/softwareupdater/CheckManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/softwareupdater/CheckManager.cpp b/src/apps/softwareupdater/CheckManager.cpp index 68909ada56..d877927c06 100644 --- a/src/apps/softwareupdater/CheckManager.cpp +++ b/src/apps/softwareupdater/CheckManager.cpp @@ -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);