[gnome-shell] quick-settings: Add ellipses to 'Log Out' string



commit 4a1bfb45d5498678c53c4622f63532642fa5443e
Author: sabriunal <libreajans gmail com>
Date:   Sat Sep 3 19:41:55 2022 +0300

    quick-settings: Add ellipses to 'Log Out' string
    
    According to GNOME HIG, if an item opens a new window or dialog,
    it should be indicated with ellipses.
    
    This change adds ellipses to the "Log Out" menu item
    in the quick access menu.
    
    Fixes #5821
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2467>

 js/ui/status/system.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/ui/status/system.js b/js/ui/status/system.js
index ab96230b9d..05527bf116 100644
--- a/js/ui/status/system.js
+++ b/js/ui/status/system.js
@@ -183,7 +183,7 @@ class ShutdownItem extends QuickSettingsItem {
 
         this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
 
-        this._addSystemAction(_('Log Out'), 'can-logout', () => {
+        this._addSystemAction(_('Log Out…'), 'can-logout', () => {
             this._systemActions.activateLogout();
             Main.panel.closeQuickSettings();
         });


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]