From 3eeb93fee56a0769dff620f101aad5e13e076e1c Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Mon, 12 Feb 2007 07:25:24 +0000 Subject: [PATCH] set translation domain for the registered enum type. 2007-02-12 Sven Neumann * modules/cdisplay_colorblind.c: set translation domain for the registered enum type. svn path=/trunk/; revision=21895 --- ChangeLog | 5 +++++ modules/cdisplay_colorblind.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 740b0a76e6..45eba476f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-02-12 Sven Neumann + + * modules/cdisplay_colorblind.c: set translation domain for the + registered enum type. + 2007-02-12 Sven Neumann * configure.in: lower minimum required version of libhal to 0.5.7. diff --git a/modules/cdisplay_colorblind.c b/modules/cdisplay_colorblind.c index 38388c5804..7979a1f43a 100644 --- a/modules/cdisplay_colorblind.c +++ b/modules/cdisplay_colorblind.c @@ -263,6 +263,8 @@ cdisplay_colorblind_deficiency_get_type (GTypeModule *module) g_type_module_register_enum (module, "CDisplayColorblindDeficiency", enum_values); + gimp_type_set_translation_domain (cdisplay_colorblind_deficiency_type, + GETTEXT_PACKAGE "-libgimp"); gimp_enum_set_value_descriptions (cdisplay_colorblind_deficiency_type, enum_descs); }