mirror of https://github.com/GNOME/gimp.git
app/core/gimp-gui.c use GIMP_ACRONYM.
2006-02-07 Sven Neumann <sven@gimp.org> * app/core/gimp-gui.c * app/widgets/gimptoolbox.c: use GIMP_ACRONYM.
This commit is contained in:
parent
ab184971a3
commit
1e019a57ff
|
@ -1,5 +1,8 @@
|
|||
2006-02-07 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* 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
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <glib-object.h>
|
||||
|
||||
#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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue