i18n fixes and code cleanup
--Sven
This commit is contained in:
parent
461c734d70
commit
fca88457a8
3 changed files with 841 additions and 592 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Reference in a new issue