From 1e019a57ffdffeb0c0b4c6c15ccafd3d77e2c1fc Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Tue, 7 Feb 2006 11:07:47 +0000 Subject: [PATCH] app/core/gimp-gui.c use GIMP_ACRONYM. 2006-02-07 Sven Neumann * app/core/gimp-gui.c * app/widgets/gimptoolbox.c: use GIMP_ACRONYM. --- ChangeLog | 3 +++ app/core/gimp-gui.c | 6 ++++-- app/widgets/gimptoolbox.c | 4 +++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 77e480287e..175b6fa389 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-02-07 Sven Neumann + * app/core/gimp-gui.c + * app/widgets/gimptoolbox.c: use GIMP_ACRONYM. + * app/main.c (gimp_show_version): use GIMP_NAME. * app/about.h (GIMP_LICENSE): s/This program/GIMP/g diff --git a/app/core/gimp-gui.c b/app/core/gimp-gui.c index ea91be07a9..e9e2421d12 100644 --- a/app/core/gimp-gui.c +++ b/app/core/gimp-gui.c @@ -20,6 +20,8 @@ #include +#include "libgimpbase/gimputils.h" + #include "core-types.h" #include "gimp.h" @@ -29,7 +31,7 @@ #include "gimpimage.h" #include "gimpprogress.h" -#include "libgimpbase/gimputils.h" +#include "about.h" #include "gimp-intl.h" @@ -152,7 +154,7 @@ gimp_message (Gimp *gimp, g_return_if_fail (GIMP_IS_GIMP (gimp)); if (! domain) - domain = _("GIMP"); + domain = GIMP_ACRONYM; if (! gimp->console_messages && gimp->gui.message) gimp->gui.message (gimp, domain, message2); diff --git a/app/widgets/gimptoolbox.c b/app/widgets/gimptoolbox.c index 2710843ed4..2a60301af3 100644 --- a/app/widgets/gimptoolbox.c +++ b/app/widgets/gimptoolbox.c @@ -50,6 +50,8 @@ #include "gimpwidgets-utils.h" #include "gtkhwrapbox.h" +#include "about.h" + #include "gimp-intl.h" @@ -546,7 +548,7 @@ gimp_toolbox_new (GimpDialogFactory *dialog_factory, g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); toolbox = g_object_new (GIMP_TYPE_TOOLBOX, - "title", _("GIMP"), + "title", GIMP_ACRONYM, "context", gimp_get_user_context (gimp), "dialog-factory", dialog_factory, NULL);