From 6cc3ba7fa3d0b1f3f630ff4507449d47fc43a1da Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Wed, 2 Oct 2024 17:09:11 +0200 Subject: [PATCH] closeDialog: Fix msgids --- js/ui/closeDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/closeDialog.js b/js/ui/closeDialog.js index 252012053e..29b0b9c718 100644 --- a/js/ui/closeDialog.js +++ b/js/ui/closeDialog.js @@ -44,9 +44,9 @@ var CloseDialog = GObject.registerClass({ let windowApp = tracker.get_window_app(this._window); /* Translators: %s is an application name */ - let title = _('ā€œ%sā€ Is Not Responding').format(windowApp.get_name()); + let title = _('%s is not responding').format(windowApp.get_name()); let description = _('You may choose to wait a short while for it to ' + - 'continue or force the app to quit entirely'); + 'continue or force the app to quit entirely.'); return new Dialog.MessageDialogContent({title, description}); }