From bca4679fa37d90b1f977daf655b1c1da838adb9d Mon Sep 17 00:00:00 2001 From: Anders Jonsson Date: Mon, 15 Apr 2024 18:23:54 +0200 Subject: [PATCH] python: fix translation of Spyrograph dropdowns --- plug-ins/python/spyro-plus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/python/spyro-plus.py b/plug-ins/python/spyro-plus.py index 446c5518aa..ed0886c62a 100755 --- a/plug-ins/python/spyro-plus.py +++ b/plug-ins/python/spyro-plus.py @@ -1437,7 +1437,7 @@ class SpyroWindow(): def set_combo_in_table(txt_list, table, row, callback): combo = Gtk.ComboBoxText.new() for txt in txt_list: - combo.append_text(txt) + combo.append_text(_(txt)) combo.set_halign(Gtk.Align.FILL) table.attach(combo, 1, row, 1, 1)