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

@ -67,6 +67,8 @@
#include "tools.h"
#include "undo.h"
#include "libgimp/gimpintl.h"
typedef struct
{
GtkWidget * shell;
@ -360,7 +362,7 @@ select_border_cmd_callback (GtkWidget *widget,
gdisp = gdisplay_active ();
sprintf (initial, "%d", gimage_mask_border_radius);
query_string_box ("Border Selection", "Border selection by:", initial,
query_string_box (_("Border Selection"), _("Border selection by:"), initial,
gimage_mask_border_callback, gdisp->gimage);
}
@ -374,7 +376,7 @@ select_feather_cmd_callback (GtkWidget *widget,
gdisp = gdisplay_active ();
sprintf (initial, "%f", gimage_mask_feather_radius);
query_string_box ("Feather Selection", "Feather selection by:", initial,
query_string_box (_("Feather Selection"), _("Feather selection by:"), initial,
gimage_mask_feather_callback, gdisp->gimage);
}
@ -388,7 +390,7 @@ select_grow_cmd_callback (GtkWidget *widget,
gdisp = gdisplay_active ();
sprintf (initial, "%d", gimage_mask_grow_pixels);
query_string_box ("Grow Selection", "Grow selection by:", initial,
query_string_box (_("Grow Selection"), _("Grow selection by:"), initial,
gimage_mask_grow_callback, gdisp->gimage);
}
@ -402,7 +404,7 @@ select_shrink_cmd_callback (GtkWidget *widget,
gdisp = gdisplay_active ();
sprintf (initial, "%d", gimage_mask_shrink_pixels);
query_string_box ("Shrink Selection", "Shrink selection by:", initial,
query_string_box (_("Shrink Selection"), _("Shrink selection by:"), initial,
gimage_mask_shrink_callback, gdisp->gimage);
}
@ -736,8 +738,8 @@ image_resize_cmd_callback (GtkWidget *widget,
{
static ActionAreaItem action_items[2] =
{
{ "OK", image_resize_callback, NULL, NULL },
{ "Cancel", image_cancel_callback, NULL, NULL }
{ N_("OK"), image_resize_callback, NULL, NULL },
{ N_("Cancel"), image_cancel_callback, NULL, NULL }
};
GDisplay * gdisp;
GtkWidget *vbox;
@ -753,7 +755,7 @@ image_resize_cmd_callback (GtkWidget *widget,
/* the dialog */
image_resize->shell = gtk_dialog_new ();
gtk_window_set_wmclass (GTK_WINDOW (image_resize->shell), "image_resize", "Gimp");
gtk_window_set_title (GTK_WINDOW (image_resize->shell), "Image Resize");
gtk_window_set_title (GTK_WINDOW (image_resize->shell), _("Image Resize"));
gtk_window_set_policy (GTK_WINDOW (image_resize->shell), FALSE, FALSE, TRUE);
gtk_window_position (GTK_WINDOW (image_resize->shell), GTK_WIN_POS_MOUSE);
@ -783,8 +785,8 @@ image_scale_cmd_callback (GtkWidget *widget,
{
static ActionAreaItem action_items[2] =
{
{ "OK", image_scale_callback, NULL, NULL },
{ "Cancel", image_cancel_callback, NULL, NULL }
{ N_("OK"), image_scale_callback, NULL, NULL },
{ N_("Cancel"), image_cancel_callback, NULL, NULL }
};
GDisplay * gdisp;
GtkWidget *vbox;
@ -800,7 +802,7 @@ image_scale_cmd_callback (GtkWidget *widget,
/* the dialog */
image_scale->shell = gtk_dialog_new ();
gtk_window_set_wmclass (GTK_WINDOW (image_scale->shell), "image_scale", "Gimp");
gtk_window_set_title (GTK_WINDOW (image_scale->shell), "Image Scale");
gtk_window_set_title (GTK_WINDOW (image_scale->shell), _("Image Scale"));
gtk_window_set_policy (GTK_WINDOW (image_scale->shell), FALSE, FALSE, TRUE);
gtk_window_position (GTK_WINDOW (image_scale->shell), GTK_WIN_POS_MOUSE);
@ -1096,7 +1098,7 @@ image_resize_callback (GtkWidget *w,
}
else
{
g_message ("Resize Error: Both width and height must be greater than zero.");
g_message (_("Resize Error: Both width and height must be greater than zero."));
return;
}
}
@ -1126,7 +1128,7 @@ image_scale_callback (GtkWidget *w,
}
else
{
g_message ("Scale Error: Both width and height must be greater than zero.");
g_message (_("Scale Error: Both width and height must be greater than zero."));
return;
}
}