From a274df95b1e4c28666c929e148c34093f374302e Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Sat, 20 Jul 2024 09:55:56 +0100 Subject: [PATCH] action-layout-editor: Translate action names Fixes https://github.com/linuxmint/mint22-beta/issues/204 --- action-layout-editor/nemo_action_layout_editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action-layout-editor/nemo_action_layout_editor.py b/action-layout-editor/nemo_action_layout_editor.py index bd08dcc7e..f11033212 100644 --- a/action-layout-editor/nemo_action_layout_editor.py +++ b/action-layout-editor/nemo_action_layout_editor.py @@ -85,7 +85,7 @@ def get_label(self): if label is None: if self.keyfile is not None: try: - label = self.keyfile.get_string('Nemo Action', 'Name').replace("_", "") + label = self.keyfile.get_locale_string('Nemo Action', 'Name', None).replace("_", "") except GLib.Error as e: print(e) pass