added missing linebreak.

2004-09-30  Sven Neumann  <sven@gimp.org>

	* README: added missing linebreak.

	* plug-ins/imagemap/imap_about.c (do_about_dialog): should not
	mark email address for translation.
This commit is contained in:
Sven Neumann 2004-09-30 10:35:53 +00:00 committed by Sven Neumann
parent 8d10caab43
commit c09661c287
3 changed files with 21 additions and 14 deletions

View File

@ -1,3 +1,10 @@
2004-09-30 Sven Neumann <sven@gimp.org>
* 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 <degger@fhm.edu>
* README: Applied proofreading patch from Jonathan Levi

3
README
View File

@ -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

View File

@ -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);
}