From 94b907f46d309fd9bf84990d9c1f877253dc255a 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 Part-of: --- 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; }