From 17289099642f5f65e11686ebb47ebd4744d305e6 Mon Sep 17 00:00:00 2001 From: Cody Date: Fri, 20 Oct 2023 21:34:43 -0700 Subject: [PATCH] Adds Localization To No Notification Messages --- Oqtane.Client/Modules/Admin/UserProfile/Index.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor index af2521cf..526544fa 100644 --- a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor +++ b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor @@ -225,7 +225,7 @@ else } else { - You have not received any notifications. + @Localizer["NoNotificationsReceived"] } } else @@ -287,7 +287,7 @@ else } else { - You have not sent any notifications. + @Localizer["NoNotificationsSent"] } } }