Lots of ii8n stuff here and some additions to the de.po. Applied

Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>

        * app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
        Lots of ii8n stuff here and some additions to the de.po.
        Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
        gimp-egger-981007-1, gimp-egger-981008-1,
        gimp-egger-981009-1.patch, gimp-egger-981010-1.patch

        * plug-in/guillotine/guillotine.c: added the coordinates
        of the split images from the original image to the title.
        ie foo.jpg (0,0) for the image in the topleft.

        * plug-in/script-fu/scripts/neon-logo.scm,
        perspective-shadow.scm, predator.scm,rendermap.scm,
        ripply-anim.scm, select_to_image.scm,swirltile.scm,
        xach-effect.scm: updated scripts to use new script-fu stuff

wooo boy! a big un!

	in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.

-adrian
This commit is contained in:
EDT 1998 Adrian Likins
1998-10-14 23:23:52 +00:00
committed by Adrian Likins
parent ae9442e601
commit 25721826d0
211 changed files with 10877 additions and 5341 deletions

View File

@ -10,6 +10,7 @@
#include "batch.h"
#include "procedural_db.h"
#include "libgimp/gimpintl.h"
static void batch_run_cmd (char *cmd);
static void batch_read (gpointer data,
@ -31,7 +32,7 @@ batch_init ()
eval_proc = procedural_db_lookup ("extension_script_fu_eval");
if (!eval_proc)
{
g_message ("script-fu not available: batch mode disabled\n");
g_message (_("script-fu not available: batch mode disabled\n"));
return;
}
@ -42,7 +43,7 @@ batch_init ()
{
if (!read_from_stdin)
{
g_print ("reading batch commands from stdin\n");
g_print (_("reading batch commands from stdin\n"));
gdk_input_add (STDIN_FILENO, GDK_INPUT_READ, batch_read, NULL);
read_from_stdin = TRUE;
}
@ -79,13 +80,13 @@ batch_run_cmd (char *cmd)
switch (vals[0].value.pdb_int)
{
case PDB_EXECUTION_ERROR:
g_print ("batch command: experienced an execution error.\n");
g_print (_("batch command: experienced an execution error.\n"));
break;
case PDB_CALLING_ERROR:
g_print ("batch command: experienced a calling error.\n");
g_print (_("batch command: experienced a calling error.\n"));
break;
case PDB_SUCCESS:
g_print ("batch command: executed successfully.\n");
g_print (_("batch command: executed successfully.\n"));
break;
default:
break;