From 9f476a12dd9907874d063acac4d2d965690c5d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 24 Sep 2012 19:01:04 +0200 Subject: [PATCH] gdm: Provide an accessible name for powerMenu https://bugzilla.gnome.org/show_bug.cgi?id=684727 --- js/gdm/powerMenu.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/gdm/powerMenu.js b/js/gdm/powerMenu.js index 0a5a66eda..b57eec5cb 100644 --- a/js/gdm/powerMenu.js +++ b/js/gdm/powerMenu.js @@ -31,7 +31,8 @@ const PowerMenuButton = new Lang.Class({ Extends: PanelMenu.SystemStatusButton, _init: function() { - this.parent('system-shutdown-symbolic', null); + /* Translators: accessible name of the power menu in the login screen */ + this.parent('system-shutdown-symbolic', _("Power")); this._upClient = new UPowerGlib.Client(); this._loginManager = LoginManager.getLoginManager();