windowManager: Use shorter string for dialog headline
Since the headlines of the dialogs now use a much larger font, the strings need to be shorter so they won't be ellipsized. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/942
This commit is contained in:
parent
3c47923953
commit
59bd2dd1e3
@ -51,7 +51,8 @@ class DisplayChangeDialog extends ModalDialog.ModalDialog {
|
||||
|
||||
this._countDown = Meta.MonitorManager.get_display_configuration_timeout();
|
||||
|
||||
let title = _("Do you want to keep these display settings?");
|
||||
// Translators: This string should be shorter than 30 characters
|
||||
let title = _('Keep these display settings?');
|
||||
let description = this._formatCountDown();
|
||||
|
||||
this._content = new Dialog.MessageDialogContent({ title, description });
|
||||
|
Loading…
Reference in New Issue
Block a user