Skip to content

Commit

Permalink
closeDialog: Fix msgids
Browse files Browse the repository at this point in the history
  • Loading branch information
clefebvre committed Oct 2, 2024
1 parent 4096ea2 commit 6cc3ba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/ui/closeDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -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});
}

Expand Down

0 comments on commit 6cc3ba7

Please sign in to comment.