From a082e9cc58d99a12ee007f045fdb26a264ae7165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= <137977-yakushabb@users.noreply.gitlab.gnome.org> Date: Sun, 12 Oct 2025 22:02:57 +0300 Subject: [PATCH] plugins: Use title case for menu label of Histogram Export plug-in --- plug-ins/python/histogram-export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/python/histogram-export.py b/plug-ins/python/histogram-export.py index 2a6d37b273..eb8c42d420 100644 --- a/plug-ins/python/histogram-export.py +++ b/plug-ins/python/histogram-export.py @@ -213,7 +213,7 @@ class HistogramExport(Gimp.PlugIn): _("Exports the image histogram to a text file (CSV)"), globals()["__doc__"], # This includes the docstring, on the top of the file name) - procedure.set_menu_label(_("_Export histogram...")) + procedure.set_menu_label(_("_Export Histogram...")) procedure.set_attribution("João S. O. Bueno", "(c) GPL V3.0 or later", "2014")