i18n fixes and code cleanup

--Sven
This commit is contained in:
Sven Neumann 2000-04-17 23:28:55 +00:00
parent 461c734d70
commit fca88457a8
3 changed files with 841 additions and 592 deletions

View file

@ -1,3 +1,8 @@
2000-04-18 Sven Neumann <sven@gimp.org>
* plug-ins/FractalExplorer/Dialogs.c: i18n fix
* plug-ins/gdyntext/gdyntext_ui.c: ditto, plus indentation
2000-04-17 Michael Natterer <mitch@gimp.org>
* plug-ins/helpbrowser/helpbrowser.c (open_browser_dialog):

View file

@ -1569,8 +1569,9 @@ save_options (FILE * fp)
void
save_callback (void)
{
FILE *fp;
gchar *savename;
FILE *fp;
gchar *savename;
gchar *message;
savename = filename;
@ -1578,7 +1579,12 @@ save_callback (void)
if (!fp)
{
g_message (_("Error opening '%.100s' could not save"), savename);
message = g_strconcat (_("Error opening: %s"),
"\n",
_("Could not save."),
savename);
g_message (message);
g_free (message);
return;
}
/* Write header out */

File diff suppressed because it is too large Load diff