Skip to content

Commit 6cc3ba7

Browse files
committed
closeDialog: Fix msgids
1 parent 4096ea2 commit 6cc3ba7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/ui/closeDialog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ var CloseDialog = GObject.registerClass({
4444
let windowApp = tracker.get_window_app(this._window);
4545

4646
/* Translators: %s is an application name */
47-
let title = _('“%s” Is Not Responding').format(windowApp.get_name());
47+
let title = _('%s is not responding').format(windowApp.get_name());
4848
let description = _('You may choose to wait a short while for it to ' +
49-
'continue or force the app to quit entirely');
49+
'continue or force the app to quit entirely.');
5050
return new Dialog.MessageDialogContent({title, description});
5151
}
5252

0 commit comments

Comments
 (0)