From 28dbb47937f0177a21ecee6c18de11a68dde0bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 28 Jun 2021 17:57:57 +0200 Subject: [PATCH] window-list: Init translations Whoops, we are missing the bindtextdomain() call, which means translations won't work when no other extension that shares the same domain is used (like in GNOME Classic for instance). https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/340 (cherry picked from commit c9d7f99d50f96d29c38380d9f0e3c9ddc660db9f) --- extensions/window-list/extension.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index acb5c639..4802f9e9 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -1105,6 +1105,8 @@ class WindowList extends St.Widget { class Extension { constructor() { + ExtensionUtils.initTranslations(); + this._windowLists = null; this._hideOverviewOrig = Main.overview.hide; }