From d9c3dd7dc56aa43eae5f2f635e0c1d159bd1dabb Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Fri, 8 Sep 2023 13:15:31 +0100 Subject: [PATCH] Capitalize "python" in the Addon Manager settings Fixes #13016. --- gramps/gui/plug/_windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gui/plug/_windows.py b/gramps/gui/plug/_windows.py index f62e338ea46..cb8325307af 100644 --- a/gramps/gui/plug/_windows.py +++ b/gramps/gui/plug/_windows.py @@ -732,7 +732,7 @@ def create_settings_panel(self): row = 1 install = Gtk.CheckButton() - install.set_label(_("Allow Gramps to install required python modules")) + install.set_label(_("Allow Gramps to install required Python modules")) active = config.get("behavior.addons-allow-install") install.set_active(active) install.connect("toggled", self.install_changed)