[gimp] plug-ins: localize file-png-save parameters.
- From: Jehan <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] plug-ins: localize file-png-save parameters.
- Date: Tue, 26 Apr 2022 21:38:03 +0000 (UTC)
commit b904d67af704601681c7a180d243bb7747ced2ce
Author: Jehan <jehan girinstud io>
Date: Tue Apr 26 23:35:41 2022 +0200
plug-ins: localize file-png-save parameters.
Small text tweaks done too:
- Some question marks removed to be more consistent in the tooltip
style.
- The "save-transparent" only applies to *completely* transparent pixels
(not partially transparent).
plug-ins/common/file-png.c | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
---
diff --git a/plug-ins/common/file-png.c b/plug-ins/common/file-png.c
index ac4da57ae7..2616f0628a 100644
--- a/plug-ins/common/file-png.c
+++ b/plug-ins/common/file-png.c
@@ -169,6 +169,7 @@ png_create_procedure (GimpPlugIn *plug_in,
{
GimpProcedure *procedure = NULL;
+ INIT_I18N ();
if (! strcmp (name, LOAD_PROC))
{
procedure = gimp_load_procedure_new (plug_in, name,
@@ -228,50 +229,50 @@ png_create_procedure (GimpPlugIn *plug_in,
"png");
GIMP_PROC_ARG_BOOLEAN (procedure, "interlaced",
- "_Interlacing (Adam7)",
- "Use Adam7 interlacing?",
+ _("_Interlacing (Adam7)"),
+ _("Use Adam7 interlacing"),
FALSE,
G_PARAM_READWRITE);
GIMP_PROC_ARG_INT (procedure, "compression",
- "Co_mpression level",
- "Deflate Compression factor (0..9)",
+ _("Co_mpression level"),
+ _("Deflate Compression factor (0..9)"),
0, 9, 9,
G_PARAM_READWRITE);
GIMP_PROC_ARG_BOOLEAN (procedure, "bkgd",
- "Save _background color",
- "Write bKGD chunk (PNG metadata)",
+ _("Save _background color"),
+ _("Write bKGD chunk (PNG metadata)"),
TRUE,
G_PARAM_READWRITE);
GIMP_PROC_ARG_BOOLEAN (procedure, "offs",
- "Save layer o_ffset",
- "Write oFFs chunk (PNG metadata)",
+ _("Save layer o_ffset"),
+ _("Write oFFs chunk (PNG metadata)"),
FALSE,
G_PARAM_READWRITE);
GIMP_PROC_ARG_BOOLEAN (procedure, "phys",
- "Save resol_ution",
- "Write pHYs chunk (PNG metadata)",
+ _("Save resol_ution"),
+ _("Write pHYs chunk (PNG metadata)"),
TRUE,
G_PARAM_READWRITE);
GIMP_PROC_ARG_BOOLEAN (procedure, "time",
- "Save creation _time",
- "Write tIME chunk (PNG metadata)",
+ _("Save creation _time"),
+ _("Write tIME chunk (PNG metadata)"),
TRUE,
G_PARAM_READWRITE);
GIMP_PROC_ARG_BOOLEAN (procedure, "save-transparent",
- "Save color _values from transparent pixels",
- "Preserve color of transparent pixels?",
+ _("Save color _values from transparent pixels"),
+ _("Preserve color of completely transparent pixels"),
FALSE,
G_PARAM_READWRITE);
GIMP_PROC_AUX_ARG_INT (procedure, "format",
- "_Pixel format",
- "PNG export format",
+ _("_Pixel format"),
+ _("PNG export format"),
PNG_FORMAT_AUTO, PNG_FORMAT_GRAYA16,
PNG_FORMAT_AUTO,
G_PARAM_READWRITE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]