From 497ac998318e17be7d33c4408e795a56d5fc95b5 Mon Sep 17 00:00:00 2001 From: Jehan Date: Thu, 3 Jul 2025 02:45:38 +0200 Subject: [PATCH] app: improve GimpTRCType arguments' labels. It's not just about linear or perceptual. It can also be non-linear, a.k.a. following the image's curve. --- app/operations/gimpcurvesconfig.c | 4 ++-- app/operations/gimplevelsconfig.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/operations/gimpcurvesconfig.c b/app/operations/gimpcurvesconfig.c index 5e6c3972c9..24fe2ee09c 100644 --- a/app/operations/gimpcurvesconfig.c +++ b/app/operations/gimpcurvesconfig.c @@ -102,8 +102,8 @@ gimp_curves_config_class_init (GimpCurvesConfigClass *klass) GIMP_CONFIG_PROP_ENUM (object_class, PROP_TRC, "trc", - _("Linear/Perceptual"), - _("Work on linear or perceptual RGB"), + _("Tone Reproduction Curve"), + _("Work on linear or perceptual RGB, or following the image's TRC"), GIMP_TYPE_TRC_TYPE, GIMP_TRC_NON_LINEAR, 0); diff --git a/app/operations/gimplevelsconfig.c b/app/operations/gimplevelsconfig.c index 8b9a3071f4..b135517ac6 100644 --- a/app/operations/gimplevelsconfig.c +++ b/app/operations/gimplevelsconfig.c @@ -108,8 +108,8 @@ gimp_levels_config_class_init (GimpLevelsConfigClass *klass) GIMP_CONFIG_PROP_ENUM (object_class, PROP_TRC, "trc", - _("Linear/Perceptual"), - _("Work on linear or perceptual RGB"), + _("Tone Reproduction Curve"), + _("Work on linear or perceptual RGB, or following the image's TRC"), GIMP_TYPE_TRC_TYPE, GIMP_TRC_NON_LINEAR, 0);