From 79360d155f26462c88a083a7d956e7990c1a6f7e Mon Sep 17 00:00:00 2001 From: Monster Date: Mon, 4 Mar 2024 16:00:47 +0100 Subject: [PATCH] close-dialog: Fix strings to comply with HIG Moved title text to title case, removed periods in title and subtitle Part-of: --- 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 a0857298e..0e0dd2a74 100644 --- a/js/ui/closeDialog.js +++ b/js/ui/closeDialog.js @@ -41,9 +41,9 @@ export const 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}); }