close-dialog: Fix strings to comply with HIG

Moved title text to title case, removed periods in title and subtitle

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3224>
This commit is contained in:
Monster 2024-03-04 16:00:47 +01:00 committed by Marge Bot
parent 0d0aadf013
commit 79360d155f

View File

@ -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});
}