From c09661c2870ccc0251207ce2b1e254a8818a4a5a Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 30 Sep 2004 10:35:53 +0000 Subject: [PATCH] added missing linebreak. 2004-09-30 Sven Neumann * README: added missing linebreak. * plug-ins/imagemap/imap_about.c (do_about_dialog): should not mark email address for translation. --- ChangeLog | 7 +++++++ README | 3 ++- plug-ins/imagemap/imap_about.c | 25 ++++++++++++------------- 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5eb62759cf..cea7b40d65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-09-30 Sven Neumann + + * README: added missing linebreak. + + * plug-ins/imagemap/imap_about.c (do_about_dialog): should not + mark email address for translation. + 2004-09-30 Daniel Egger * README: Applied proofreading patch from Jonathan Levi diff --git a/README b/README index 6473853b34..6c91820333 100644 --- a/README +++ b/README @@ -61,7 +61,8 @@ people will only want to be subscribed to gimp-user. If you want to help develop The GIMP, the gimp-developer mailing list is a good starting point. -There is also a mailing list, "gimpwin-users", dedicated to users of the Win32 port. To subscribe, send an empty message to +There is also a mailing list, "gimpwin-users", dedicated to users of the +Win32 port. To subscribe, send an empty message to gimpwin-users-subscribe@egroups.com diff --git a/plug-ins/imagemap/imap_about.c b/plug-ins/imagemap/imap_about.c index 016c5cefd7..70ef3ea902 100644 --- a/plug-ins/imagemap/imap_about.c +++ b/plug-ins/imagemap/imap_about.c @@ -34,17 +34,16 @@ void do_about_dialog(void) { static DefaultDialog_t *dialog; - if (!dialog) { - dialog = make_default_dialog(_("About")); - default_dialog_hide_cancel_button(dialog); - default_dialog_hide_apply_button(dialog); - default_dialog_hide_help_button(dialog); - default_dialog_set_label(dialog, _("Imagemap plug-in 2.2")); - default_dialog_set_label( - dialog, _("Copyright(c) 1999-2004 by Maurits Rijk")); - default_dialog_set_label(dialog, _("m.rijk@chello.nl")); - default_dialog_set_label( - dialog, _(" Released under the GNU General Public License ")); - } - default_dialog_show(dialog); + if (!dialog) + { + dialog = make_default_dialog (_("About")); + default_dialog_hide_cancel_button (dialog); + default_dialog_hide_apply_button (dialog); + default_dialog_hide_help_button (dialog); + default_dialog_set_label (dialog, _("Imagemap plug-in 2.2")); + default_dialog_set_label (dialog, _("Copyright(c) 1999-2004 by Maurits Rijk")); + default_dialog_set_label (dialog, "m.rijk@chello.nl"); + default_dialog_set_label (dialog, _("Released under the GNU General Public License")); + } + default_dialog_show (dialog); }