plug-ins: add and correct gettext macros in Python

This commit is contained in:
Anders Jonsson
2023-07-24 22:30:45 +02:00
committed by Jehan
parent 21a329dae6
commit 8b84c5551b
3 changed files with 4 additions and 4 deletions

View File

@ -349,10 +349,10 @@ class HistogramExport(Gimp.PlugIn):
procedure.set_image_types("*")
procedure.set_documentation (
N_("Exports the image histogram to a text file (CSV)"),
_("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(N_("_Export histogram..."))
procedure.set_menu_label(_("_Export histogram..."))
procedure.set_attribution("João S. O. Bueno",
"(c) GPL V3.0 or later",
"2014")