From 1e0c024cb0ef7d013464238c78f019d28d4cbc98 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sun, 29 Oct 2000 18:07:07 +0000 Subject: [PATCH] tuned the dialog layout and cleaned up the code. No real changes. 2000-10-29 Sven Neumann * plug-ins/common/screenshot.c: tuned the dialog layout and cleaned up the code. No real changes. --- ChangeLog | 5 + plug-ins/common/screenshot.c | 288 ++++++++++-------------- po-plug-ins/ChangeLog | 4 + po-plug-ins/de.po | 423 +++++++++++++++++------------------ 4 files changed, 335 insertions(+), 385 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9115bb5640..b602d6c5ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-10-29 Sven Neumann + + * plug-ins/common/screenshot.c: tuned the dialog layout and cleaned + up the code. No real changes. + 2000-10-29 Michael Natterer * app/main.c: the argv[] element containing "-g" or "--gimprc" diff --git a/plug-ins/common/screenshot.c b/plug-ins/common/screenshot.c index 0c0453b268..ddeb48a1a9 100644 --- a/plug-ins/common/screenshot.c +++ b/plug-ins/common/screenshot.c @@ -1,6 +1,6 @@ /* * ScreenShot plug-in - * Copyright 1998-1999 Sven Neumann + * Copyright 1998-2000 Sven Neumann * * Any suggestions, bug-reports or patches are very welcome. * @@ -55,21 +55,12 @@ typedef struct { - gint root; - gchar *window_id; - guint delay; - gint decor; + gboolean root; + gchar *window_id; + guint delay; + gboolean decor; } ScreenShotValues; -typedef struct -{ - GtkWidget *decor_button; - GtkWidget *delay_spinner; - GtkWidget *single_button; - GtkWidget *root_button; - gint run; -} ScreenShotInterface; - static ScreenShotValues shootvals = { FALSE, /* root window */ @@ -78,27 +69,21 @@ static ScreenShotValues shootvals = TRUE, /* decorations */ }; -static ScreenShotInterface shootint = -{ - FALSE /* run */ -}; +static void query (void); +static void run (gchar *name, + gint nparams, + GimpParam *param, + gint *nreturn_vals, + GimpParam **return_vals); -static void query (void); -static void run (gchar *name, - gint nparams, /* number of parameters passed in */ - GimpParam *param, /* parameters passed in */ - gint *nreturn_vals, /* number of parameters returned */ - GimpParam **return_vals); /* parameters to be returned */ +static void shoot (void); +static gboolean shoot_dialog (void); +static void shoot_ok_callback (GtkWidget *widget, + gpointer data); +static void shoot_delay (gint32 delay); +static gint shoot_delay_callback (gpointer data); -static void shoot (void); -static gint shoot_dialog (void); -static void shoot_ok_callback (GtkWidget *widget, - gpointer data); -static void shoot_toggle_update (GtkWidget *widget, - gpointer radio_button); -static void shoot_delay (gint32 delay); -static gint shoot_delay_callback (gpointer data); /* Global Variables */ GimpPlugInInfo PLUG_IN_INFO = @@ -112,6 +97,9 @@ GimpPlugInInfo PLUG_IN_INFO = /* the image that will be returned */ gint32 image_ID = -1; +gboolean run_flag = FALSE; + + /* Functions */ MAIN () @@ -144,8 +132,8 @@ query (void) "it may grab the root window or use the window-id " "passed as a parameter.", "Sven Neumann ", - "1998, 1999", - "v0.9.4 (99/12/28)", + "1998 - 2000", + "v0.9.5 (2000/10/29)", N_("/File/Acquire/Screen Shot..."), NULL, GIMP_EXTENSION, @@ -154,10 +142,10 @@ query (void) } static void -run (gchar *name, - gint nparams, +run (gchar *name, + gint nparams, GimpParam *param, - gint *nreturn_vals, + gint *nreturn_vals, GimpParam **return_vals) { /* Get the runmode from the in-parameters */ @@ -172,10 +160,10 @@ run (gchar *name, static GimpParam values[1]; /* initialize the return of the status */ - values[0].type = GIMP_PDB_STATUS; + values[0].type = GIMP_PDB_STATUS; values[0].data.d_status = status; *nreturn_vals = 1; - *return_vals = values; + *return_vals = values; /* how are we running today? */ switch (run_mode) @@ -189,13 +177,13 @@ run (gchar *name, /* Get information from the dialog */ if (!shoot_dialog ()) - return; + status = GIMP_PDB_EXECUTION_ERROR; break; case GIMP_RUN_NONINTERACTIVE: if (nparams == 3) { - shootvals.root = (gint) param[1].data.d_int32; + shootvals.root = param[1].data.d_int32; shootvals.window_id = (gchar*) param[2].data.d_string; shootvals.delay = 0; shootvals.decor = FALSE; @@ -219,9 +207,9 @@ run (gchar *name, shoot_delay (shootvals.delay); /* Run the main function */ shoot (); - } - status = (image_ID != -1) ? GIMP_PDB_SUCCESS : GIMP_PDB_EXECUTION_ERROR; + status = (image_ID != -1) ? GIMP_PDB_SUCCESS : GIMP_PDB_EXECUTION_ERROR; + } if (status == GIMP_PDB_SUCCESS) { @@ -237,6 +225,7 @@ run (gchar *name, values[1].type = GIMP_PDB_IMAGE; values[1].data.d_image = image_ID; } + values[0].data.d_status = status; } @@ -245,19 +234,19 @@ run (gchar *name, static void shoot (void) { - GimpParam *params; - gint retvals; - gchar *tmpname; - gchar *xwdargv[7]; /* only need a maximum of 7 arguments to xwd */ - gdouble xres, yres; - gint pid; - gint status; - gint i = 0; + GimpParam *params; + gint retvals; + gchar *tmpname; + gchar *xwdargv[7]; /* need a maximum of 7 arguments to xwd */ + gdouble xres, yres; + gint pid; + gint status; + gint i = 0; - /* get a temp name with the right extension and save into it. */ + /* get a temp name with the right extension */ tmpname = gimp_temp_name ("xwd"); - /* construct the xwd arguments */ + /* construct the xwd arguments */ xwdargv[i++] = XWD; xwdargv[i++] = "-out"; xwdargv[i++] = tmpname; @@ -276,7 +265,7 @@ shoot (void) xwdargv[i] = NULL; #ifndef __EMX__ - /* fork off a xwd process */ + /* fork off a xwd process */ if ((pid = fork ()) < 0) { g_message ("screenshot: fork failed: %s\n", g_strerror (errno)); @@ -285,7 +274,7 @@ shoot (void) else if (pid == 0) { execvp (XWD, xwdargv); - /* What are we doing here? exec must have failed */ + /* What are we doing here? exec must have failed */ g_message ("screenshot: exec failed: xwd: %s\n", g_strerror (errno)); return; } @@ -308,7 +297,7 @@ shoot (void) } } - /* now load the tmpfile using the xwd-plug-in */ + /* now load the tmpfile using the xwd-plug-in */ params = gimp_run_procedure ("file_xwd_load", &retvals, GIMP_PDB_INT32, 1, @@ -321,17 +310,17 @@ shoot (void) } gimp_destroy_params (params, retvals); - /* get rid of the tmpfile */ + /* get rid of the tmpfile */ unlink (tmpname); g_free (tmpname); if (image_ID != -1) { - /* figure out the monitor resolution and set the image to it */ + /* figure out the monitor resolution and set the image to it */ gimp_get_monitor_resolution (&xres, &yres); gimp_image_set_resolution (image_ID, xres, yres); - /* unset the image filename */ + /* unset the image filename */ gimp_image_set_filename (image_ID, ""); } @@ -339,9 +328,17 @@ shoot (void) } -/* ScreenShot dialog */ +/* ScreenShot dialog */ -static gint +static void +shoot_ok_callback (GtkWidget *widget, + gpointer data) +{ + run_flag = TRUE; + gtk_widget_destroy (GTK_WIDGET (data)); +} + +static gboolean shoot_dialog (void) { GtkWidget *dialog; @@ -350,27 +347,23 @@ shoot_dialog (void) GtkWidget *vbox; GtkWidget *hbox; GtkWidget *label; + GtkWidget *button; + GtkWidget *decor_button; + GtkWidget *spinner; + GtkWidget *sep; GSList *radio_group = NULL; - GtkAdjustment *adj; - gint radio_pressed[2]; - gint decorations; - guint delay; + GtkObject *adj; - radio_pressed[0] = (shootvals.root == FALSE); - radio_pressed[1] = (shootvals.root == TRUE); - decorations = shootvals.decor; - delay = shootvals.delay; - /* Init GTK */ gimp_ui_init ("screenshot", FALSE); - /* Main Dialog */ + /* main dialog */ dialog = gimp_dialog_new (_("Screen Shot"), "screenshot", gimp_standard_help_func, "filters/screenshot.html", GTK_WIN_POS_MOUSE, FALSE, TRUE, FALSE, - _("Grab"), shoot_ok_callback, + _("OK"), shoot_ok_callback, NULL, NULL, NULL, TRUE, FALSE, _("Cancel"), gtk_widget_destroy, NULL, 1, NULL, FALSE, TRUE, @@ -387,8 +380,8 @@ shoot_dialog (void) TRUE, TRUE, 0); gtk_widget_show (main_vbox); - /* Single Window */ - frame = gtk_frame_new (NULL); + /* single window */ + frame = gtk_frame_new (_("Grab")); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN); gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); @@ -396,144 +389,95 @@ shoot_dialog (void) gtk_container_set_border_width (GTK_CONTAINER (vbox), 4); gtk_container_add (GTK_CONTAINER (frame), vbox); - shootint.single_button = - gtk_radio_button_new_with_label (radio_group, _("Grab a Single Window")); - radio_group = gtk_radio_button_group (GTK_RADIO_BUTTON (shootint.single_button) ); - gtk_box_pack_start (GTK_BOX (vbox), shootint.single_button, FALSE, FALSE, 0); - gtk_signal_connect (GTK_OBJECT (shootint.single_button), "toggled", - (GtkSignalFunc) shoot_toggle_update, - &radio_pressed[0]); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shootint.single_button), - radio_pressed[0]); - gtk_widget_show (shootint.single_button); + button = gtk_radio_button_new_with_label (radio_group, _("Single Window")); + radio_group = gtk_radio_button_group (GTK_RADIO_BUTTON (button)); + gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0); + gtk_signal_connect (GTK_OBJECT (button), "toggled", + (GtkSignalFunc) gimp_radio_button_update, + &shootvals.root); + gtk_object_set_user_data (GTK_OBJECT (button), (gpointer) FALSE); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), ! shootvals.root); + gtk_widget_show (button); - /* with decorations */ + /* with decorations */ hbox = gtk_hbox_new (FALSE, 2); gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0); - shootint.decor_button = - gtk_check_button_new_with_label (_("Include Decorations")); - gtk_signal_connect (GTK_OBJECT (shootint.decor_button), "toggled", - (GtkSignalFunc) shoot_toggle_update, - &decorations); - gtk_box_pack_end (GTK_BOX (hbox), shootint.decor_button, FALSE, FALSE, 0); - gtk_widget_show (shootint.decor_button); + decor_button = + gtk_check_button_new_with_label (_("With Decorations")); + gtk_signal_connect (GTK_OBJECT (decor_button), "toggled", + (GtkSignalFunc) gimp_toggle_button_update, + &shootvals.decor); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (decor_button), + shootvals.decor); + gtk_object_set_data (GTK_OBJECT (button), "set_sensitive", decor_button); + gtk_box_pack_end (GTK_BOX (hbox), decor_button, FALSE, FALSE, 0); + gtk_widget_show (decor_button); gtk_widget_show (hbox); - gtk_widget_show (vbox); - gtk_widget_show (frame); + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (vbox), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); - /* Root Window */ - frame = gtk_frame_new (NULL); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN); - gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); - - vbox = gtk_vbox_new (FALSE, 2); - gtk_container_set_border_width (GTK_CONTAINER (vbox), 2); - gtk_container_add (GTK_CONTAINER (frame), vbox); - - shootint.root_button = - gtk_radio_button_new_with_label (radio_group, _("Grab the Whole Screen")); - radio_group = gtk_radio_button_group (GTK_RADIO_BUTTON (shootint.root_button)); - gtk_box_pack_start (GTK_BOX (vbox), shootint.root_button, FALSE, FALSE, 0); - gtk_signal_connect (GTK_OBJECT (shootint.root_button), "toggled", - (GtkSignalFunc) shoot_toggle_update, - &radio_pressed[1]); - gtk_widget_show (shootint.root_button); + /* root window */ + button = gtk_radio_button_new_with_label (radio_group, _("Whole Screen")); + radio_group = gtk_radio_button_group (GTK_RADIO_BUTTON (button)); + gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0); + gtk_signal_connect (GTK_OBJECT (button), "toggled", + (GtkSignalFunc) gimp_radio_button_update, + &shootvals.root); + gtk_object_set_user_data (GTK_OBJECT (button), (gpointer) TRUE); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), shootvals.root); + gtk_widget_show (button); gtk_widget_show (vbox); gtk_widget_show (frame); - /* with delay */ + /* with delay */ hbox = gtk_hbox_new (FALSE, 4); gtk_box_pack_start (GTK_BOX (main_vbox), hbox, FALSE, FALSE, 0); label = gtk_label_new (_("after")); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); - adj = (GtkAdjustment *) gtk_adjustment_new ((gfloat)delay, 0.0, 100.0, 1.0, 5.0, 0.0); - shootint.delay_spinner = gtk_spin_button_new (adj, 0, 0); - gtk_box_pack_start (GTK_BOX(hbox), shootint.delay_spinner, FALSE, FALSE, 0); - gtk_widget_show (shootint.delay_spinner); + adj = gtk_adjustment_new (shootvals.delay, 0.0, 100.0, 1.0, 5.0, 0.0); + gtk_signal_connect (GTK_OBJECT (adj), "value_changed", + gimp_int_adjustment_update, + &shootvals.delay); + spinner = gtk_spin_button_new (GTK_ADJUSTMENT (adj), 0, 0); + gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0); + gtk_widget_show (spinner); label = gtk_label_new (_("Seconds Delay")); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); gtk_widget_show (hbox); - - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shootint.decor_button), - decorations); - gtk_widget_set_sensitive (shootint.decor_button, radio_pressed[0]); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shootint.root_button), - radio_pressed[1]); - gtk_widget_show (dialog); gtk_main (); - gdk_flush (); - shootvals.root = radio_pressed[1]; - shootvals.decor = decorations; - - return shootint.run; + return run_flag; } -/* ScreenShot interface functions */ - -static void -shoot_ok_callback (GtkWidget *widget, - gpointer data) -{ - shootint.run = TRUE; - shootvals.delay = - gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON (shootint.delay_spinner)); - gtk_widget_destroy (GTK_WIDGET (data)); -} - -static void -shoot_toggle_update (GtkWidget *widget, - gpointer radio_button) -{ - gint *toggle_val; - - toggle_val = (gint *) radio_button; - - if (GTK_TOGGLE_BUTTON (widget)->active) - *toggle_val = TRUE; - else - *toggle_val = FALSE; - - if (widget == shootint.single_button) - { - gtk_widget_set_sensitive (shootint.decor_button, *toggle_val); - } - if (widget == shootint.root_button) - { - gtk_widget_set_sensitive (shootint.decor_button, !*toggle_val); - } -} - -/* Delay functions */ - +/* delay functions */ void shoot_delay (gint delay) { gint timeout; - timeout = gtk_timeout_add (1000, shoot_delay_callback, &delay); - gtk_main (); + timeout = gtk_timeout_add (1000, shoot_delay_callback, &delay); gtk_main (); } gint shoot_delay_callback (gpointer data) { - gint *seconds_left; - - seconds_left = (gint *)data; + gint *seconds_left = (gint *)data; + (*seconds_left)--; + if (!*seconds_left) gtk_main_quit(); - return (*seconds_left); -} + return *seconds_left; +} diff --git a/po-plug-ins/ChangeLog b/po-plug-ins/ChangeLog index 90746d8b4a..93d261adc0 100644 --- a/po-plug-ins/ChangeLog +++ b/po-plug-ins/ChangeLog @@ -1,3 +1,7 @@ +2000-10-29 Sven Neumann + + * de.po: updated german translation. + 2000-10-29 Zbigniew Chyla * pl.po: Updated Polish translation. diff --git a/po-plug-ins/de.po b/po-plug-ins/de.po index 946eb67f88..3416a03717 100644 --- a/po-plug-ins/de.po +++ b/po-plug-ins/de.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.27\n" -"POT-Creation-Date: 2000-10-16 11:59-0700\n" -"PO-Revision-Date: 2000-10-05 13:19+02:00\n" +"POT-Creation-Date: 2000-10-29 18:56+0100\n" +"PO-Revision-Date: 2000-10-29 18:58+01:00\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -48,11 +48,11 @@ msgstr " #: plug-ins/common/edge.c:650 plug-ins/common/emboss.c:522 #: plug-ins/common/engrave.c:224 plug-ins/common/exchange.c:279 #: plug-ins/common/film.c:1182 plug-ins/common/flarefx.c:332 -#: plug-ins/common/fractaltrace.c:725 plug-ins/common/gauss_iir.c:365 -#: plug-ins/common/gauss_iir.c:448 plug-ins/common/gauss_rle.c:361 +#: plug-ins/common/fractaltrace.c:725 plug-ins/common/gauss_iir.c:366 +#: plug-ins/common/gauss_iir.c:449 plug-ins/common/gauss_rle.c:361 #: plug-ins/common/gauss_rle.c:444 plug-ins/common/gbr.c:456 -#: plug-ins/common/gicon.c:441 plug-ins/common/gif.c:1141 -#: plug-ins/common/gif.c:1212 plug-ins/common/glasstile.c:260 +#: plug-ins/common/gicon.c:441 plug-ins/common/gif.c:1147 +#: plug-ins/common/gif.c:1218 plug-ins/common/glasstile.c:260 #: plug-ins/common/gpb.c:269 plug-ins/common/gqbist.c:640 #: plug-ins/common/grid.c:659 plug-ins/common/gtm.c:375 #: plug-ins/common/hot.c:589 plug-ins/common/illusion.c:561 @@ -60,7 +60,7 @@ msgstr " #: plug-ins/common/jpeg.c:1595 plug-ins/common/lic.c:1021 #: plug-ins/common/mail.c:465 plug-ins/common/mapcolor.c:558 #: plug-ins/common/max_rgb.c:348 plug-ins/common/mblur.c:763 -#: plug-ins/common/newsprint.c:1211 plug-ins/common/nlfilt.c:365 +#: plug-ins/common/newsprint.c:1211 plug-ins/common/nlfilt.c:368 #: plug-ins/common/noisify.c:489 plug-ins/common/nova.c:466 #: plug-ins/common/oilify.c:458 plug-ins/common/papertile.c:250 #: plug-ins/common/pat.c:412 plug-ins/common/pixelize.c:280 @@ -69,32 +69,32 @@ msgstr " #: plug-ins/common/ps.c:2615 plug-ins/common/ps.c:2797 #: plug-ins/common/psp.c:428 plug-ins/common/randomize.c:702 #: plug-ins/common/ripple.c:580 plug-ins/common/scatter_hsv.c:375 -#: plug-ins/common/sel_gauss.c:242 plug-ins/common/sharpen.c:523 -#: plug-ins/common/shift.c:376 plug-ins/common/sinus.c:1704 -#: plug-ins/common/smooth_palette.c:403 plug-ins/common/snoise.c:512 -#: plug-ins/common/sobel.c:251 plug-ins/common/sparkle.c:349 -#: plug-ins/common/spheredesigner.c:2232 plug-ins/common/spread.c:382 -#: plug-ins/common/struc.c:1281 plug-ins/common/sunras.c:1589 -#: plug-ins/common/tga.c:1448 plug-ins/common/threshold_alpha.c:271 -#: plug-ins/common/tiff.c:1530 plug-ins/common/tile.c:383 -#: plug-ins/common/tileit.c:386 plug-ins/common/uniteditor.c:173 -#: plug-ins/common/unsharp.c:786 plug-ins/common/video.c:2155 -#: plug-ins/common/vpropagate.c:935 plug-ins/common/warp.c:437 -#: plug-ins/common/waves.c:349 plug-ins/common/whirlpinch.c:808 -#: plug-ins/common/wind.c:1012 plug-ins/common/wmf.c:931 -#: plug-ins/common/xbm.c:1151 plug-ins/common/xpm.c:800 -#: plug-ins/fits/fits.c:987 plug-ins/flame/flame.c:631 -#: plug-ins/flame/flame.c:920 plug-ins/fp/fp_gtk.c:895 -#: plug-ins/gap/gap_arr_dialog.c:768 plug-ins/gap/gap_arr_dialog.c:1010 -#: plug-ins/gap/gap_decode_xanim.c:177 plug-ins/gap/gap_lib.c:221 -#: plug-ins/gap/gap_mod_layer.c:145 plug-ins/gap/gap_mov_dialog.c:487 -#: plug-ins/gap/gap_mpege.c:191 plug-ins/gap/gap_resi_dialog.c:149 -#: plug-ins/gdyntext/gdyntext_ui.c:199 plug-ins/gdyntext/gdyntext_ui.c:573 -#: plug-ins/gfig/gfig.c:4080 plug-ins/gfig/gfig.c:4425 -#: plug-ins/gfig/gfig.c:4508 plug-ins/gfig/gfig.c:4813 -#: plug-ins/gflare/gflare.c:2458 plug-ins/gflare/gflare.c:3468 -#: plug-ins/gfli/gfli.c:821 plug-ins/gfli/gfli.c:890 -#: plug-ins/gimpressionist/gimpressionist.c:356 +#: plug-ins/common/screenshot.c:366 plug-ins/common/sel_gauss.c:242 +#: plug-ins/common/sharpen.c:523 plug-ins/common/shift.c:376 +#: plug-ins/common/sinus.c:1704 plug-ins/common/smooth_palette.c:403 +#: plug-ins/common/snoise.c:512 plug-ins/common/sobel.c:251 +#: plug-ins/common/sparkle.c:349 plug-ins/common/spheredesigner.c:2232 +#: plug-ins/common/spread.c:382 plug-ins/common/struc.c:1281 +#: plug-ins/common/sunras.c:1589 plug-ins/common/tga.c:1448 +#: plug-ins/common/threshold_alpha.c:271 plug-ins/common/tiff.c:1582 +#: plug-ins/common/tile.c:383 plug-ins/common/tileit.c:386 +#: plug-ins/common/uniteditor.c:173 plug-ins/common/unsharp.c:786 +#: plug-ins/common/video.c:2155 plug-ins/common/vpropagate.c:935 +#: plug-ins/common/warp.c:437 plug-ins/common/waves.c:349 +#: plug-ins/common/whirlpinch.c:808 plug-ins/common/wind.c:1012 +#: plug-ins/common/wmf.c:931 plug-ins/common/xbm.c:1150 +#: plug-ins/common/xpm.c:800 plug-ins/fits/fits.c:987 +#: plug-ins/flame/flame.c:631 plug-ins/flame/flame.c:920 +#: plug-ins/fp/fp_gtk.c:895 plug-ins/gap/gap_arr_dialog.c:768 +#: plug-ins/gap/gap_arr_dialog.c:1010 plug-ins/gap/gap_decode_xanim.c:177 +#: plug-ins/gap/gap_lib.c:221 plug-ins/gap/gap_mod_layer.c:145 +#: plug-ins/gap/gap_mov_dialog.c:487 plug-ins/gap/gap_mpege.c:191 +#: plug-ins/gap/gap_resi_dialog.c:149 plug-ins/gdyntext/gdyntext_ui.c:199 +#: plug-ins/gdyntext/gdyntext_ui.c:573 plug-ins/gfig/gfig.c:4080 +#: plug-ins/gfig/gfig.c:4425 plug-ins/gfig/gfig.c:4508 +#: plug-ins/gfig/gfig.c:4813 plug-ins/gflare/gflare.c:2463 +#: plug-ins/gflare/gflare.c:3477 plug-ins/gfli/gfli.c:821 +#: plug-ins/gfli/gfli.c:890 plug-ins/gimpressionist/gimpressionist.c:356 #: plug-ins/gimpressionist/gimpressionist.c:477 #: plug-ins/gimpressionist/orientmap.c:626 #: plug-ins/gimpressionist/presets.c:392 plug-ins/gimpressionist/sizemap.c:485 @@ -130,10 +130,10 @@ msgstr "OK" #: plug-ins/common/emboss.c:524 plug-ins/common/engrave.c:226 #: plug-ins/common/exchange.c:281 plug-ins/common/film.c:1184 #: plug-ins/common/flarefx.c:334 plug-ins/common/fractaltrace.c:727 -#: plug-ins/common/gauss_iir.c:367 plug-ins/common/gauss_iir.c:450 +#: plug-ins/common/gauss_iir.c:368 plug-ins/common/gauss_iir.c:451 #: plug-ins/common/gauss_rle.c:363 plug-ins/common/gauss_rle.c:446 #: plug-ins/common/gbr.c:458 plug-ins/common/gicon.c:443 -#: plug-ins/common/gif.c:1143 plug-ins/common/gif.c:1214 +#: plug-ins/common/gif.c:1149 plug-ins/common/gif.c:1220 #: plug-ins/common/glasstile.c:262 plug-ins/common/gpb.c:271 #: plug-ins/common/gqbist.c:642 plug-ins/common/grid.c:661 #: plug-ins/common/gtm.c:377 plug-ins/common/hot.c:591 @@ -142,7 +142,7 @@ msgstr "OK" #: plug-ins/common/lic.c:1023 plug-ins/common/mail.c:467 #: plug-ins/common/mapcolor.c:560 plug-ins/common/max_rgb.c:350 #: plug-ins/common/mblur.c:765 plug-ins/common/newsprint.c:1213 -#: plug-ins/common/nlfilt.c:367 plug-ins/common/noisify.c:491 +#: plug-ins/common/nlfilt.c:370 plug-ins/common/noisify.c:491 #: plug-ins/common/nova.c:468 plug-ins/common/oilify.c:460 #: plug-ins/common/papertile.c:252 plug-ins/common/pat.c:414 #: plug-ins/common/pixelize.c:282 plug-ins/common/plasma.c:309 @@ -150,7 +150,7 @@ msgstr "OK" #: plug-ins/common/polar.c:916 plug-ins/common/ps.c:2617 #: plug-ins/common/ps.c:2799 plug-ins/common/psp.c:430 #: plug-ins/common/randomize.c:704 plug-ins/common/ripple.c:582 -#: plug-ins/common/scatter_hsv.c:377 plug-ins/common/screenshot.c:375 +#: plug-ins/common/scatter_hsv.c:377 plug-ins/common/screenshot.c:368 #: plug-ins/common/sel_gauss.c:244 plug-ins/common/sharpen.c:525 #: plug-ins/common/shift.c:378 plug-ins/common/sinus.c:1706 #: plug-ins/common/smooth_palette.c:405 plug-ins/common/snoise.c:514 @@ -158,13 +158,13 @@ msgstr "OK" #: plug-ins/common/spheredesigner.c:2236 plug-ins/common/spread.c:384 #: plug-ins/common/struc.c:1283 plug-ins/common/sunras.c:1591 #: plug-ins/common/tga.c:1450 plug-ins/common/threshold_alpha.c:273 -#: plug-ins/common/tiff.c:1532 plug-ins/common/tile.c:385 +#: plug-ins/common/tiff.c:1584 plug-ins/common/tile.c:385 #: plug-ins/common/tileit.c:388 plug-ins/common/uniteditor.c:175 #: plug-ins/common/unsharp.c:788 plug-ins/common/video.c:2157 #: plug-ins/common/vpropagate.c:937 plug-ins/common/warp.c:439 #: plug-ins/common/waves.c:351 plug-ins/common/whirlpinch.c:810 #: plug-ins/common/wind.c:1014 plug-ins/common/wmf.c:933 -#: plug-ins/common/xbm.c:1153 plug-ins/common/xpm.c:802 +#: plug-ins/common/xbm.c:1152 plug-ins/common/xpm.c:802 #: plug-ins/fits/fits.c:989 plug-ins/flame/flame.c:633 #: plug-ins/flame/flame.c:922 plug-ins/fp/fp_gtk.c:899 #: plug-ins/gap/gap_arr_dialog.c:1012 plug-ins/gap/gap_dbbrowser_utils.c:210 @@ -177,8 +177,8 @@ msgstr "OK" #: plug-ins/gap/gap_resi_dialog.c:158 plug-ins/gfig/gfig.c:3933 #: plug-ins/gfig/gfig.c:4080 plug-ins/gfig/gfig.c:4427 #: plug-ins/gfig/gfig.c:4510 plug-ins/gfig/gfig.c:5021 -#: plug-ins/gflare/gflare.c:2460 plug-ins/gflare/gflare.c:3369 -#: plug-ins/gflare/gflare.c:3470 plug-ins/gfli/gfli.c:823 +#: plug-ins/gflare/gflare.c:2465 plug-ins/gflare/gflare.c:3378 +#: plug-ins/gflare/gflare.c:3479 plug-ins/gfli/gfli.c:823 #: plug-ins/gfli/gfli.c:892 plug-ins/gimpressionist/gimpressionist.c:486 #: plug-ins/gimpressionist/orientmap.c:640 #: plug-ins/gimpressionist/presets.c:400 plug-ins/gimpressionist/sizemap.c:499 @@ -201,15 +201,15 @@ msgstr "Abbrechen" #: plug-ins/common/glasstile.c:276 plug-ins/common/grid.c:680 #: plug-ins/common/illusion.c:580 plug-ins/common/iwarp.c:1160 #: plug-ins/common/jigsaw.c:2511 plug-ins/common/mapcolor.c:576 -#: plug-ins/common/max_rgb.c:364 plug-ins/common/nlfilt.c:584 +#: plug-ins/common/max_rgb.c:364 plug-ins/common/nlfilt.c:587 #: plug-ins/common/noisify.c:506 plug-ins/common/plasma.c:326 #: plug-ins/common/polar.c:935 plug-ins/common/ps.c:2938 #: plug-ins/common/sharpen.c:550 plug-ins/common/sinus.c:2123 #: plug-ins/common/spheredesigner.c:2254 plug-ins/common/tileit.c:407 #: plug-ins/common/waves.c:576 plug-ins/common/whirlpinch.c:826 #: plug-ins/common/wind.c:1031 plug-ins/flame/flame.c:940 -#: plug-ins/gfig/gfig.c:3956 plug-ins/gflare/gflare.c:2485 -#: plug-ins/gflare/gflare.c:3493 plug-ins/gimpressionist/orientmap.c:502 +#: plug-ins/gfig/gfig.c:3956 plug-ins/gflare/gflare.c:2490 +#: plug-ins/gflare/gflare.c:3502 plug-ins/gimpressionist/orientmap.c:502 #: plug-ins/gimpressionist/preview.c:106 plug-ins/gimpressionist/sizemap.c:402 #: plug-ins/ifscompose/ifscompose.c:901 #: plug-ins/imagemap/imap_edit_area_info.c:287 @@ -267,9 +267,9 @@ msgstr "Schritt heraus" #. #. * Scales #. -#: plug-ins/FractalExplorer/Dialogs.c:421 plug-ins/gflare/gflare.c:2888 -#: plug-ins/gflare/gflare.c:3729 plug-ins/gflare/gflare.c:3839 -#: plug-ins/gflare/gflare.c:3981 +#: plug-ins/FractalExplorer/Dialogs.c:421 plug-ins/gflare/gflare.c:2897 +#: plug-ins/gflare/gflare.c:3738 plug-ins/gflare/gflare.c:3848 +#: plug-ins/gflare/gflare.c:3990 msgid "Parameters" msgstr "Parameter" @@ -530,7 +530,7 @@ msgstr "Kosinus" #: plug-ins/common/AlienMap.c:1518 plug-ins/common/CML_explorer.c:167 #: plug-ins/common/align_layers.c:452 plug-ins/common/align_layers.c:485 #: plug-ins/common/ps.c:2722 plug-ins/common/ps.c:2735 -#: plug-ins/common/psp.c:445 plug-ins/common/tiff.c:1551 +#: plug-ins/common/psp.c:445 plug-ins/common/tiff.c:1603 #: plug-ins/fits/fits.c:1032 plug-ins/gap/gap_mov_dialog.c:301 msgid "None" msgstr "Kein" @@ -693,7 +693,7 @@ msgid "Rendering Fractal..." msgstr "Berechne Fraktal..." #: plug-ins/FractalExplorer/FractalExplorer.c:735 plug-ins/gfig/gfig.c:5012 -#: plug-ins/gflare/gflare.c:3360 +#: plug-ins/gflare/gflare.c:3369 #, c-format msgid "" "Are you sure you want to delete\n" @@ -708,8 +708,8 @@ msgstr "Fraktal l #: plug-ins/FractalExplorer/FractalExplorer.c:744 #: plug-ins/FractalExplorer/FractalExplorer.c:1404 plug-ins/gfig/gfig.c:3568 -#: plug-ins/gfig/gfig.c:5021 plug-ins/gflare/gflare.c:3093 -#: plug-ins/gflare/gflare.c:3369 plug-ins/gimpressionist/presets.c:648 +#: plug-ins/gfig/gfig.c:5021 plug-ins/gflare/gflare.c:3102 +#: plug-ins/gflare/gflare.c:3378 plug-ins/gimpressionist/presets.c:648 #: plug-ins/ifscompose/ifscompose.c:790 plug-ins/imagemap/imap_cmd_delete.c:53 #: plug-ins/imagemap/imap_selection.c:175 msgid "Delete" @@ -863,7 +863,7 @@ msgstr "Qualit #: plug-ins/Lighting/lighting_ui.c:511 plug-ins/common/iwarp.c:1107 #: plug-ins/common/threshold_alpha.c:294 plug-ins/common/unsharp.c:829 -#: plug-ins/common/wind.c:1138 plug-ins/gflare/gflare.c:3015 +#: plug-ins/common/wind.c:1138 plug-ins/gflare/gflare.c:3024 msgid "Threshold:" msgstr "Schwellwert:" @@ -922,7 +922,7 @@ msgstr "Position" #: plug-ins/MapObject/mapobject_ui.c:1084 plug-ins/common/flarefx.c:786 #: plug-ins/common/nova.c:610 plug-ins/common/papertile.c:285 #: plug-ins/flame/flame.c:1189 plug-ins/flame/flame.c:1202 -#: plug-ins/gap/gap_mov_dialog.c:2103 plug-ins/gflare/gflare.c:2867 +#: plug-ins/gap/gap_mov_dialog.c:2103 plug-ins/gflare/gflare.c:2876 #: plug-ins/ifscompose/ifscompose.c:518 msgid "X:" msgstr "X:" @@ -939,8 +939,8 @@ msgstr "X-Koordinate der Lichtquelle im XYZ-Raum" #: plug-ins/MapObject/mapobject_ui.c:1093 #: plug-ins/MapObject/mapobject_ui.c:1189 plug-ins/common/flarefx.c:804 #: plug-ins/common/nova.c:628 plug-ins/common/papertile.c:294 -#: plug-ins/common/xbm.c:1244 plug-ins/gap/gap_mov_dialog.c:2121 -#: plug-ins/gflare/gflare.c:2871 plug-ins/ifscompose/ifscompose.c:532 +#: plug-ins/common/xbm.c:1243 plug-ins/gap/gap_mov_dialog.c:2121 +#: plug-ins/gflare/gflare.c:2880 plug-ins/ifscompose/ifscompose.c:532 msgid "Y:" msgstr "Y:" @@ -1313,9 +1313,9 @@ msgid "Size" msgstr "Grösse" #: plug-ins/MapObject/mapobject_ui.c:1272 plug-ins/common/despeckle.c:745 -#: plug-ins/common/nlfilt.c:427 plug-ins/common/nova.c:504 +#: plug-ins/common/nlfilt.c:430 plug-ins/common/nova.c:504 #: plug-ins/common/unsharp.c:811 plug-ins/common/whirlpinch.c:877 -#: plug-ins/gfig/gfig.c:3175 plug-ins/gflare/gflare.c:2902 +#: plug-ins/gfig/gfig.c:3175 plug-ins/gflare/gflare.c:2911 #: plug-ins/imagemap/imap_circle.c:273 msgid "Radius:" msgstr "Radius:" @@ -1371,8 +1371,8 @@ msgstr "Zeige/Verberge Vorschau-Drahtgitter" #: plug-ins/common/pix.c:326 plug-ins/common/png.c:426 #: plug-ins/common/png.c:428 plug-ins/common/pnm.c:414 #: plug-ins/common/psd.c:1731 plug-ins/common/sunras.c:441 -#: plug-ins/common/tga.c:429 plug-ins/common/tiff.c:450 -#: plug-ins/common/xbm.c:735 plug-ins/common/xpm.c:334 +#: plug-ins/common/tga.c:429 plug-ins/common/tiff.c:455 +#: plug-ins/common/xbm.c:734 plug-ins/common/xpm.c:334 #: plug-ins/common/xwd.c:430 plug-ins/faxg3/faxg3.c:196 #: plug-ins/gfli/gfli.c:459 plug-ins/sgi/sgi.c:330 plug-ins/sgi/sgi.c:332 #: plug-ins/xjt/xjt.c:3246 @@ -1416,9 +1416,9 @@ msgstr "%s: fehlerhafte Palette" #: plug-ins/common/png.c:547 plug-ins/common/pnm.c:502 #: plug-ins/common/psd.c:2114 plug-ins/common/smooth_palette.c:241 #: plug-ins/common/sunras.c:931 plug-ins/common/tga.c:1014 -#: plug-ins/common/tiff.c:676 plug-ins/common/tile.c:268 +#: plug-ins/common/tiff.c:681 plug-ins/common/tile.c:268 #: plug-ins/common/winclipboard.c:515 plug-ins/common/wmf.c:2350 -#: plug-ins/common/xbm.c:873 plug-ins/faxg3/faxg3.c:448 +#: plug-ins/common/xbm.c:872 plug-ins/faxg3/faxg3.c:448 #: plug-ins/fits/fits.c:521 plug-ins/gfig/gfig.c:2832 #: plug-ins/gfig/gfig.c:3185 plug-ins/sgi/sgi.c:378 plug-ins/twain/twain.c:722 #: plug-ins/winsnap/winsnap.c:1235 @@ -1436,7 +1436,7 @@ msgstr "Kann %s nicht #. init the progress meter #: plug-ins/bmp/bmpwrite.c:179 plug-ins/common/CEL.c:510 -#: plug-ins/common/gbr.c:387 plug-ins/common/gif.c:937 +#: plug-ins/common/gbr.c:387 plug-ins/common/gif.c:943 #: plug-ins/common/gpb.c:768 plug-ins/common/gpb.c:808 #: plug-ins/common/gtm.c:247 plug-ins/common/hrz.c:476 #: plug-ins/common/jpeg.c:1196 plug-ins/common/pat.c:343 @@ -1444,7 +1444,7 @@ msgstr "Kann %s nicht #: plug-ins/common/png.c:775 plug-ins/common/png.c:777 #: plug-ins/common/pnm.c:786 plug-ins/common/ps.c:1003 #: plug-ins/common/sunras.c:524 plug-ins/common/tga.c:1196 -#: plug-ins/common/tiff.c:1282 plug-ins/common/xbm.c:983 +#: plug-ins/common/tiff.c:1334 plug-ins/common/xbm.c:982 #: plug-ins/common/xpm.c:653 plug-ins/common/xwd.c:534 #: plug-ins/fits/fits.c:472 plug-ins/gfli/gfli.c:679 plug-ins/sgi/sgi.c:548 #: plug-ins/sgi/sgi.c:550 plug-ins/xjt/xjt.c:1628 @@ -2180,11 +2180,11 @@ msgstr "Sichtbare Ebenen anordnen" #: plug-ins/common/cubism.c:315 plug-ins/common/despeckle.c:729 #: plug-ins/common/destripe.c:636 plug-ins/common/edge.c:662 #: plug-ins/common/emboss.c:559 plug-ins/common/engrave.c:236 -#: plug-ins/common/gauss_iir.c:377 plug-ins/common/gauss_rle.c:373 +#: plug-ins/common/gauss_iir.c:378 plug-ins/common/gauss_rle.c:373 #: plug-ins/common/glasstile.c:294 plug-ins/common/grid.c:720 #: plug-ins/common/illusion.c:597 plug-ins/common/jpeg.c:1643 #: plug-ins/common/lic.c:1090 plug-ins/common/max_rgb.c:381 -#: plug-ins/common/nlfilt.c:406 plug-ins/common/noisify.c:524 +#: plug-ins/common/nlfilt.c:409 plug-ins/common/noisify.c:524 #: plug-ins/common/nova.c:478 plug-ins/common/oilify.c:470 #: plug-ins/common/pixelize.c:292 plug-ins/common/plasma.c:344 #: plug-ins/common/png.c:1056 plug-ins/common/polar.c:955 @@ -2228,7 +2228,7 @@ msgid "Left Edge" msgstr "Linker Rand" #: plug-ins/common/align_layers.c:473 plug-ins/common/align_layers.c:506 -#: plug-ins/gap/gap_mov_dialog.c:288 plug-ins/gflare/gflare.c:2855 +#: plug-ins/gap/gap_mov_dialog.c:288 plug-ins/gflare/gflare.c:2864 msgid "Center" msgstr "Mitte" @@ -2434,7 +2434,7 @@ msgstr "/Filter/Weichzeichnen/Weichzeichnen..." #: plug-ins/common/blur.c:648 plug-ins/common/plasma.c:359 #: plug-ins/common/randomize.c:737 plug-ins/common/sinus.c:1811 -#: plug-ins/common/snoise.c:542 plug-ins/gflare/gflare.c:4093 +#: plug-ins/common/snoise.c:542 plug-ins/gflare/gflare.c:4102 msgid "Random Seed:" msgstr "Zufällige Init-Zahl:" @@ -2656,7 +2656,7 @@ msgstr "RGB-Komposition" msgid "RGBA" msgstr "RGBA" -#: plug-ins/common/compose.c:127 plug-ins/common/nlfilt.c:418 +#: plug-ins/common/compose.c:127 plug-ins/common/nlfilt.c:421 #: plug-ins/common/noisify.c:574 plug-ins/common/noisify.c:657 msgid "Alpha:" msgstr "Alpha:" @@ -2846,7 +2846,7 @@ msgid "Prefixed Name:" msgstr "Name mit Prefix:" #: plug-ins/common/csource.c:689 plug-ins/common/mail.c:527 -#: plug-ins/common/tiff.c:1566 plug-ins/common/xbm.c:1203 +#: plug-ins/common/tiff.c:1618 plug-ins/common/xbm.c:1202 msgid "Comment:" msgstr "Kommentar:" @@ -2884,8 +2884,8 @@ msgstr "Speichere Alphakanal (RGBA/RGB)" #. table col, row #: plug-ins/common/csource.c:757 plug-ins/common/sparkle.c:443 #: plug-ins/common/tileit.c:587 plug-ins/gap/gap_mov_dialog.c:2173 -#: plug-ins/gflare/gflare.c:3595 plug-ins/gflare/gflare.c:3625 -#: plug-ins/gflare/gflare.c:3655 +#: plug-ins/gflare/gflare.c:3604 plug-ins/gflare/gflare.c:3634 +#: plug-ins/gflare/gflare.c:3664 msgid "Opacity:" msgstr "Deckkraft:" @@ -2947,7 +2947,7 @@ msgstr "Kurve" #. menu_item copy #: plug-ins/common/curve_bend.c:1363 plug-ins/gap/gap_navigator_dialog.c:2921 #: plug-ins/gfig/gfig.c:2835 plug-ins/gfig/gfig.c:5283 -#: plug-ins/gflare/gflare.c:3092 plug-ins/imagemap/imap_cmd_copy.c:49 +#: plug-ins/gflare/gflare.c:3101 plug-ins/imagemap/imap_cmd_copy.c:49 #: plug-ins/imagemap/imap_cmd_copy_object.c:50 #: plug-ins/imagemap/imap_menu.c:287 plug-ins/imagemap/imap_toolbar.c:132 msgid "Copy" @@ -3384,7 +3384,7 @@ msgstr "Funktion" msgid "Bumpmap" msgstr "Bumpmap" -#: plug-ins/common/emboss.c:759 plug-ins/common/nlfilt.c:604 +#: plug-ins/common/emboss.c:759 plug-ins/common/nlfilt.c:607 #: plug-ins/common/sinus.c:2143 plug-ins/common/waves.c:596 msgid "Do Preview" msgstr "Vorschau erzeugen" @@ -3632,45 +3632,45 @@ msgstr "Weiss" msgid "Mandelbrot Parameters" msgstr "Mandelbrot Parameter" -#: plug-ins/common/gauss_iir.c:183 +#: plug-ins/common/gauss_iir.c:184 msgid "/Filters/Blur/Gaussian Blur (IIR)..." msgstr "/Filter/Weichzeichnen/Gaußscher Weichzeichner (IIR)..." -#: plug-ins/common/gauss_iir.c:256 +#: plug-ins/common/gauss_iir.c:257 msgid "gauss_iir: you must specify either horizontal or vertical (or both)" msgstr "" "gauss_iir: Sie müssen entweder horizontal oder vertikal (oder beides) " "auswählen" -#: plug-ins/common/gauss_iir.c:306 plug-ins/common/gauss_iir.c:360 -#: plug-ins/common/gauss_iir.c:443 +#: plug-ins/common/gauss_iir.c:307 plug-ins/common/gauss_iir.c:361 +#: plug-ins/common/gauss_iir.c:444 msgid "IIR Gaussian Blur" msgstr "IIR Gaußscher Weichzeichner" -#: plug-ins/common/gauss_iir.c:386 plug-ins/common/gauss_rle.c:382 +#: plug-ins/common/gauss_iir.c:387 plug-ins/common/gauss_rle.c:382 msgid "Blur Horizontally" msgstr "Horizontal" -#: plug-ins/common/gauss_iir.c:394 plug-ins/common/gauss_rle.c:390 +#: plug-ins/common/gauss_iir.c:395 plug-ins/common/gauss_rle.c:390 msgid "Blur Vertically" msgstr "Vertikal" -#: plug-ins/common/gauss_iir.c:405 plug-ins/common/gauss_rle.c:401 +#: plug-ins/common/gauss_iir.c:406 plug-ins/common/gauss_rle.c:401 #: plug-ins/common/sel_gauss.c:270 msgid "Blur Radius:" msgstr "Weichzeichner Radius:" #. parameter settings -#: plug-ins/common/gauss_iir.c:460 plug-ins/common/gauss_rle.c:456 +#: plug-ins/common/gauss_iir.c:461 plug-ins/common/gauss_rle.c:456 msgid "Blur Radius" msgstr "Weichzeichner Radius" -#: plug-ins/common/gauss_iir.c:475 plug-ins/common/gauss_rle.c:471 +#: plug-ins/common/gauss_iir.c:476 plug-ins/common/gauss_rle.c:471 #: plug-ins/common/jigsaw.c:2545 plug-ins/common/spread.c:410 msgid "Horizontal:" msgstr "Horizontal:" -#: plug-ins/common/gauss_iir.c:479 plug-ins/common/gauss_rle.c:475 +#: plug-ins/common/gauss_iir.c:480 plug-ins/common/gauss_rle.c:475 #: plug-ins/common/jigsaw.c:2558 plug-ins/common/spread.c:414 msgid "Vertical:" msgstr "Vertikal:" @@ -3730,7 +3730,7 @@ msgstr "Als GIcon speichern" msgid "Icon Name:" msgstr "Icon Name:" -#: plug-ins/common/gif.c:674 +#: plug-ins/common/gif.c:680 msgid "" "GIF: Couldn't simply reduce colors further.\n" "Saving as opaque.\n" @@ -3738,7 +3738,7 @@ msgstr "" "GIF: Konnte nicht mehr Farben reduzieren.\n" "Speichere als Opaque.\n" -#: plug-ins/common/gif.c:929 +#: plug-ins/common/gif.c:935 msgid "" "GIF: Sorry, can't save RGB images as GIFs - convert to INDEXED\n" "or GRAY first.\n" @@ -3746,16 +3746,16 @@ msgstr "" "GIF: Sorry, kann keine RGB-Bilder als GIF's speichern - konvertieren sie\n" "zu indiziert.\n" -#: plug-ins/common/gif.c:947 +#: plug-ins/common/gif.c:953 #, c-format msgid "GIF: can't open %s\n" msgstr "kann %s nicht öffnen\n" -#: plug-ins/common/gif.c:1136 +#: plug-ins/common/gif.c:1142 msgid "GIF Warning" msgstr "GIF Warnung" -#: plug-ins/common/gif.c:1162 +#: plug-ins/common/gif.c:1168 msgid "" "The image which you are trying to save as a GIF\n" "contains layers which extend beyond the actual\n" @@ -3772,61 +3772,61 @@ msgstr "" "Sie können jetzt diese Ebenen entweder auf den Rand\n" "zuschneiden, oder das Speichern abbrechen." -#: plug-ins/common/gif.c:1207 +#: plug-ins/common/gif.c:1213 msgid "Save as GIF" msgstr "Als GIF speichern" #. regular gif parameter settings -#: plug-ins/common/gif.c:1229 +#: plug-ins/common/gif.c:1235 msgid "GIF Options" msgstr "GIF Einstellungen" -#: plug-ins/common/gif.c:1237 +#: plug-ins/common/gif.c:1243 msgid "Interlace" msgstr "Interlace" -#: plug-ins/common/gif.c:1248 +#: plug-ins/common/gif.c:1254 msgid "GIF Comment:" msgstr "GIF Kommentar:" #. additional animated gif parameter settings -#: plug-ins/common/gif.c:1308 +#: plug-ins/common/gif.c:1314 msgid "Animated GIF Options" msgstr "Einstellungen für Animations-GIF's" -#: plug-ins/common/gif.c:1316 +#: plug-ins/common/gif.c:1322 msgid "Loop forever" msgstr "Unendliche Schleife" -#: plug-ins/common/gif.c:1328 +#: plug-ins/common/gif.c:1334 msgid "Delay between Frames where Unspecified:" msgstr "Pause zw. Frames wenn nicht angegeben:" -#: plug-ins/common/gif.c:1340 +#: plug-ins/common/gif.c:1346 msgid "Milliseconds" msgstr "Millisekunden" -#: plug-ins/common/gif.c:1350 +#: plug-ins/common/gif.c:1356 msgid "Frame Disposal where Unspecified: " msgstr "Übergang zw. Frames wenn nicht angegeben:" -#: plug-ins/common/gif.c:1359 +#: plug-ins/common/gif.c:1365 msgid "I don't Care" msgstr "Ist mir egal" -#: plug-ins/common/gif.c:1361 +#: plug-ins/common/gif.c:1367 msgid "Cumulative Layers (Combine)" msgstr "Kumulative Ebenen (Kombinieren)" -#: plug-ins/common/gif.c:1363 +#: plug-ins/common/gif.c:1369 msgid "One Frame per Layer (Replace)" msgstr "Ein Frame pro Ebene (Ersetzen)" -#: plug-ins/common/gif.c:2347 +#: plug-ins/common/gif.c:2353 msgid "GIF: error writing output file\n" msgstr "GIF: Fehler beim schreiben der Ziel Datei\n" -#: plug-ins/common/gif.c:2438 +#: plug-ins/common/gif.c:2444 msgid "GIF save: Your comment string is too long.\n" msgstr "GIF speichern: Der Kommentar ist zu lang\n" @@ -4265,14 +4265,14 @@ msgstr "Bilinear" msgid "Adaptive Supersample" msgstr "Anpassende Hochrechnung" -#: plug-ins/common/iwarp.c:1097 plug-ins/gflare/gflare.c:3003 +#: plug-ins/common/iwarp.c:1097 plug-ins/gflare/gflare.c:3012 msgid "Max Depth:" msgstr "Max. Tiefe:" #. parameter settings #: plug-ins/common/iwarp.c:1120 plug-ins/common/sample_colorize.c:1384 #: plug-ins/common/sinus.c:1847 plug-ins/gap/gap_mod_layer.c:219 -#: plug-ins/gfig/gfig.c:3967 plug-ins/gflare/gflare.c:3032 +#: plug-ins/gfig/gfig.c:3967 plug-ins/gflare/gflare.c:3041 msgid "Settings" msgstr "Einstellungen" @@ -4774,23 +4774,23 @@ msgstr "Oversample:" msgid "/Filters/Enhance/NL Filter..." msgstr "/Filter/Verbessern/NL Filter..." -#: plug-ins/common/nlfilt.c:277 plug-ins/common/nlfilt.c:360 +#: plug-ins/common/nlfilt.c:277 plug-ins/common/nlfilt.c:363 msgid "NL Filter" msgstr "NL Filter" -#: plug-ins/common/nlfilt.c:390 +#: plug-ins/common/nlfilt.c:393 msgid "Filter" msgstr "Filter" -#: plug-ins/common/nlfilt.c:394 +#: plug-ins/common/nlfilt.c:397 msgid "Alpha Trimmed Mean" msgstr "Alphabasierter Mittelwert" -#: plug-ins/common/nlfilt.c:396 +#: plug-ins/common/nlfilt.c:399 msgid "Optimal Estimation" msgstr "Optimale Mittelung" -#: plug-ins/common/nlfilt.c:398 +#: plug-ins/common/nlfilt.c:401 msgid "Edge Enhancement" msgstr "Kantenverbesserung" @@ -5175,9 +5175,8 @@ msgid "PNM: Premature end of file." msgstr "PNM: Unerwartetes Ende der Datei." #: plug-ins/common/pnm.c:452 -#, fuzzy msgid "PNM: Invalid file." -msgstr "PNM: Ungültiger Maximalwert." +msgstr "PNM: Ungültige Datei." #: plug-ins/common/pnm.c:465 msgid "PNM: File not in a supported format." @@ -5653,37 +5652,38 @@ msgstr "Vorschau (1:4) - Rechts klicken um zu springen" msgid "Holdness:" msgstr "Festhalten:" -#: plug-ins/common/screenshot.c:149 plug-ins/winsnap/winsnap.c:1076 +#: plug-ins/common/screenshot.c:137 plug-ins/winsnap/winsnap.c:1076 msgid "/File/Acquire/Screen Shot..." msgstr "/Datei/Holen/Screen Shot..." -#. Main Dialog -#: plug-ins/common/screenshot.c:368 +#. main dialog +#: plug-ins/common/screenshot.c:361 msgid "Screen Shot" msgstr "Screen Shot" -#. Action area -#: plug-ins/common/screenshot.c:373 plug-ins/winsnap/winsnap.c:903 +#. single window +#: plug-ins/common/screenshot.c:384 plug-ins/winsnap/winsnap.c:903 msgid "Grab" msgstr "Aufnehmen" -#: plug-ins/common/screenshot.c:400 -msgid "Grab a Single Window" -msgstr "Einzelnes Fenster aufnehmen" +#: plug-ins/common/screenshot.c:392 +msgid "Single Window" +msgstr "Einzelnes Fenster" -#: plug-ins/common/screenshot.c:414 -msgid "Include Decorations" -msgstr "Dekorationen einbeziehen" +#: plug-ins/common/screenshot.c:406 +msgid "With Decorations" +msgstr "Mit Dekorationen" -#: plug-ins/common/screenshot.c:435 -msgid "Grab the Whole Screen" -msgstr "Den ganzen Bildschirm aufnehmen" +#. root window +#: plug-ins/common/screenshot.c:422 +msgid "Whole Screen" +msgstr "Ganzer Bildschirm" -#: plug-ins/common/screenshot.c:449 plug-ins/winsnap/winsnap.c:1011 +#: plug-ins/common/screenshot.c:438 plug-ins/winsnap/winsnap.c:1011 msgid "after" msgstr "nach" -#: plug-ins/common/screenshot.c:458 plug-ins/winsnap/winsnap.c:1020 +#: plug-ins/common/screenshot.c:450 plug-ins/winsnap/winsnap.c:1020 msgid "Seconds Delay" msgstr "Sekunden Pause" @@ -6350,31 +6350,31 @@ msgstr "Alpha-Schwellwert: F msgid "Threshold Alpha" msgstr "Alpha-Schwellwert" -#: plug-ins/common/tiff.c:685 +#: plug-ins/common/tiff.c:690 msgid "TIFF Channel" msgstr "TIFF Kanäle" -#: plug-ins/common/tiff.c:1525 +#: plug-ins/common/tiff.c:1577 msgid "Save as TIFF" msgstr "Als TIFF speichern" -#: plug-ins/common/tiff.c:1547 +#: plug-ins/common/tiff.c:1599 msgid "Compression" msgstr "Kompression" -#: plug-ins/common/tiff.c:1552 +#: plug-ins/common/tiff.c:1604 msgid "LZW" msgstr "LZW" -#: plug-ins/common/tiff.c:1553 +#: plug-ins/common/tiff.c:1605 msgid "Pack Bits" msgstr "Bits packen" -#: plug-ins/common/tiff.c:1554 +#: plug-ins/common/tiff.c:1606 msgid "Deflate" msgstr "Entpacken" -#: plug-ins/common/tiff.c:1555 +#: plug-ins/common/tiff.c:1607 msgid "JPEG" msgstr "JPEG" @@ -7089,30 +7089,30 @@ msgstr " msgid "Created with The GIMP" msgstr "Erzeugt mit Gimp" -#: plug-ins/common/xbm.c:731 +#: plug-ins/common/xbm.c:730 #, c-format msgid "XBM: cannot open \"%s\"\n" msgstr "XBM: kann \"%s\" nicht öffnen\n" -#: plug-ins/common/xbm.c:814 +#: plug-ins/common/xbm.c:813 #, c-format msgid "XBM: cannot read header (ftell == %ld)\n" msgstr "XBM: Kann Header nicht lesen (ftell == %ld)\n" -#: plug-ins/common/xbm.c:820 +#: plug-ins/common/xbm.c:819 msgid "XBM: no image width specified\n" msgstr "XBM: Keine Bild-Breite angegeben\n" -#: plug-ins/common/xbm.c:826 +#: plug-ins/common/xbm.c:825 msgid "XBM: no image height specified\n" msgstr "XBM: Keine Bild-Höhe angegeben\n" -#: plug-ins/common/xbm.c:832 +#: plug-ins/common/xbm.c:831 msgid "XBM: no image data type specified\n" msgstr "XBM: Kein Bild-Datentyp angegeben.\n" #. The image is not black-and-white. -#: plug-ins/common/xbm.c:965 +#: plug-ins/common/xbm.c:964 msgid "" "The image which you are trying to save as\n" "an XBM contains more than two colors.\n" @@ -7126,7 +7126,7 @@ msgstr "" "Schwarz-Weiss (1bit) indiziertes\n" "Bild und versuchen Sie es nochmal." -#: plug-ins/common/xbm.c:976 +#: plug-ins/common/xbm.c:975 msgid "" "You cannot save a cursor mask for an image\n" "which has no alpha channel." @@ -7134,48 +7134,48 @@ msgstr "" "Sie können keine Cursor-Maske abspeichern, \n" "wenn das Bild keinen Alpha-Kanal hat." -#: plug-ins/common/xbm.c:1005 +#: plug-ins/common/xbm.c:1004 #, c-format msgid "XBM: cannot create \"%s\"\n" msgstr "XBM: Kann \"%s\" nicht erstellen\n" -#: plug-ins/common/xbm.c:1146 +#: plug-ins/common/xbm.c:1145 msgid "Save as XBM" msgstr "Als XBM speichern" #. parameter settings -#: plug-ins/common/xbm.c:1163 +#: plug-ins/common/xbm.c:1162 msgid "XBM Options" msgstr "XBM Einstellungen" #. X10 format -#: plug-ins/common/xbm.c:1174 +#: plug-ins/common/xbm.c:1173 msgid "X10 Format Bitmap" msgstr "X10-Format Bitmap" -#: plug-ins/common/xbm.c:1192 +#: plug-ins/common/xbm.c:1191 msgid "Identifier Prefix:" msgstr "Variable ohne Erweiterung:" #. hotspot toggle -#: plug-ins/common/xbm.c:1210 +#: plug-ins/common/xbm.c:1209 msgid "Write Hot Spot Values" msgstr "Hot Spot Koordinaten schreiben" -#: plug-ins/common/xbm.c:1234 +#: plug-ins/common/xbm.c:1233 msgid "Hot Spot X:" msgstr "Hot Spot X:" #. mask file -#: plug-ins/common/xbm.c:1248 +#: plug-ins/common/xbm.c:1247 msgid "Mask File" msgstr "Maskendatei:" -#: plug-ins/common/xbm.c:1259 +#: plug-ins/common/xbm.c:1258 msgid "Write Extra Mask File" msgstr "Separate Maskendatei schreiben" -#: plug-ins/common/xbm.c:1270 +#: plug-ins/common/xbm.c:1269 msgid "Mask File Extension:" msgstr "Maskendatei Erweiterung:" @@ -10122,7 +10122,7 @@ msgstr "GDynText Nachrichtenfenster" msgid "GDynText: About ..." msgstr "Über GDynText ..." -#: plug-ins/gdyntext/gdyntext_ui.c:250 plug-ins/gflare/gflare.c:4727 +#: plug-ins/gdyntext/gdyntext_ui.c:250 plug-ins/gflare/gflare.c:4736 msgid "none" msgstr "Kein" @@ -10285,7 +10285,7 @@ msgstr "" msgid " Upgrading old GDynText layer to %s." msgstr "Konvertiere alte GDynText-Ebene zu %s." -#: plug-ins/gdyntext/message_window.c:114 +#: plug-ins/gdyntext/message_window.c:115 msgid "Dismiss" msgstr "Verwerfen" @@ -10322,7 +10322,7 @@ msgstr "Vorig." #. More Buttons #: plug-ins/gfig/gfig.c:1914 plug-ins/gfig/gfig.c:5296 -#: plug-ins/gflare/gflare.c:3091 plug-ins/imagemap/imap_menu.c:277 +#: plug-ins/gflare/gflare.c:3100 plug-ins/imagemap/imap_menu.c:277 #: plug-ins/imagemap/imap_selection.c:171 msgid "Edit" msgstr "Bearbeiten" @@ -10471,7 +10471,7 @@ msgid "Original" msgstr "Original" #: plug-ins/gfig/gfig.c:2771 plug-ins/gfig/gfig.c:3558 -#: plug-ins/gflare/gflare.c:3090 plug-ins/ifscompose/ifscompose.c:788 +#: plug-ins/gflare/gflare.c:3099 plug-ins/ifscompose/ifscompose.c:788 #: plug-ins/webbrowser/webbrowser.c:319 msgid "New" msgstr "Neu" @@ -10889,17 +10889,17 @@ msgstr "" "gflare-path falsch konfiguriert:\n" "Die folgenden Verzeichnisse konnten nicht gefunden werden" -#: plug-ins/gflare/gflare.c:1362 +#: plug-ins/gflare/gflare.c:1367 #, c-format msgid "not valid GFlare file: %s" msgstr "keine gültige GFlare-Datei: %s" -#: plug-ins/gflare/gflare.c:1422 +#: plug-ins/gflare/gflare.c:1427 #, c-format msgid "invalid formatted GFlare file: %s\n" msgstr "Ungültiges Format in GFlare Datei: %s\n" -#: plug-ins/gflare/gflare.c:1536 +#: plug-ins/gflare/gflare.c:1541 #, c-format msgid "" "GFlare `%s' is not saved.\n" @@ -10914,132 +10914,132 @@ msgstr "" "und ein Verzeichnis %s erstellen,\n" "dann können Sie ihre eigenen GFlare's in dem Verzeichnis speichern." -#: plug-ins/gflare/gflare.c:1563 +#: plug-ins/gflare/gflare.c:1568 #, c-format msgid "could not open \"%s\"" msgstr "Konnte \"%s\" nicht öffnen" -#: plug-ins/gflare/gflare.c:1753 +#: plug-ins/gflare/gflare.c:1758 #, c-format msgid "error reading GFlare directory \"%s\"" msgstr "Fehler beim lesen des GFlare Verzeichnisses \"%s\"" -#: plug-ins/gflare/gflare.c:2453 +#: plug-ins/gflare/gflare.c:2458 msgid "GFlare" msgstr "GFlare" # TODO -#: plug-ins/gflare/gflare.c:2568 +#: plug-ins/gflare/gflare.c:2573 msgid "`Default' is created." msgstr "`Standard' wurde erstellt." -#: plug-ins/gflare/gflare.c:2569 +#: plug-ins/gflare/gflare.c:2574 msgid "Default" msgstr "Standard" -#: plug-ins/gflare/gflare.c:2915 plug-ins/gflare/gflare.c:3754 -#: plug-ins/gflare/gflare.c:3864 plug-ins/gflare/gflare.c:4006 +#: plug-ins/gflare/gflare.c:2924 plug-ins/gflare/gflare.c:3763 +#: plug-ins/gflare/gflare.c:3873 plug-ins/gflare/gflare.c:4015 msgid "Rotation:" msgstr "Rotation:" -#: plug-ins/gflare/gflare.c:2927 plug-ins/gflare/gflare.c:3766 -#: plug-ins/gflare/gflare.c:3877 plug-ins/gflare/gflare.c:4019 +#: plug-ins/gflare/gflare.c:2936 plug-ins/gflare/gflare.c:3775 +#: plug-ins/gflare/gflare.c:3886 plug-ins/gflare/gflare.c:4028 msgid "Hue Rotation:" msgstr "Farbton Rotation:" -#: plug-ins/gflare/gflare.c:2939 +#: plug-ins/gflare/gflare.c:2948 msgid "Vector Angle:" msgstr "Vektorwinkel:" -#: plug-ins/gflare/gflare.c:2951 +#: plug-ins/gflare/gflare.c:2960 msgid "Vector Length:" msgstr "Vektorlänge:" -#: plug-ins/gflare/gflare.c:2977 +#: plug-ins/gflare/gflare.c:2986 msgid "Adaptive Supersampling" msgstr "Anpassende Hochrechnung" -#: plug-ins/gflare/gflare.c:3020 +#: plug-ins/gflare/gflare.c:3029 msgid "Auto Update Preview" msgstr "Automat. Echtzeitvorschau" -#: plug-ins/gflare/gflare.c:3144 +#: plug-ins/gflare/gflare.c:3153 msgid "Selector" msgstr "Auswahl" -#: plug-ins/gflare/gflare.c:3233 +#: plug-ins/gflare/gflare.c:3242 msgid "New GFlare" msgstr "Neues GFlare" -#: plug-ins/gflare/gflare.c:3236 +#: plug-ins/gflare/gflare.c:3245 msgid "Enter a Name for the New GFlare:" msgstr "Namen für das neue GFlare eingeben:" -#: plug-ins/gflare/gflare.c:3237 +#: plug-ins/gflare/gflare.c:3246 msgid "untitled" msgstr "Unbenannt" -#: plug-ins/gflare/gflare.c:3255 +#: plug-ins/gflare/gflare.c:3264 #, c-format msgid "The name '%s' is used already!" msgstr "Der Name '%s' wird bereits verwendet!" -#: plug-ins/gflare/gflare.c:3304 +#: plug-ins/gflare/gflare.c:3313 msgid "Copy GFlare" msgstr "GFlare kopieren" -#: plug-ins/gflare/gflare.c:3307 +#: plug-ins/gflare/gflare.c:3316 msgid "Enter a Name for the Copied GFlare:" msgstr "Namen für das kopierte GFlare eingeben:" -#: plug-ins/gflare/gflare.c:3328 +#: plug-ins/gflare/gflare.c:3337 #, c-format msgid "The name `%s' is used already!" msgstr "Der Name `%s' ist bereits in Verwendung!" -#: plug-ins/gflare/gflare.c:3354 +#: plug-ins/gflare/gflare.c:3363 msgid "Cannot delete!! There must be at least one GFlare." msgstr "Kann nicht löschen!! Es muss zumindest ein GFlare geben." -#: plug-ins/gflare/gflare.c:3364 +#: plug-ins/gflare/gflare.c:3373 msgid "Delete GFlare" msgstr "GFlare löschen" -#: plug-ins/gflare/gflare.c:3421 +#: plug-ins/gflare/gflare.c:3430 #, c-format msgid "not found %s in gflares_list" msgstr "Konnte %s nicht in gflares_list finden" -#: plug-ins/gflare/gflare.c:3461 +#: plug-ins/gflare/gflare.c:3470 msgid "GFlare Editor" msgstr "GFlare Editor" -#: plug-ins/gflare/gflare.c:3466 +#: plug-ins/gflare/gflare.c:3475 msgid "Rescan Gradients" msgstr "Verläufe neu einlesen" #. Glow -#: plug-ins/gflare/gflare.c:3583 +#: plug-ins/gflare/gflare.c:3592 msgid "Glow Paint Options" msgstr "Zeicheneinstellungen für Glühen" # TODO ?? -#: plug-ins/gflare/gflare.c:3608 plug-ins/gflare/gflare.c:3638 -#: plug-ins/gflare/gflare.c:3668 +#: plug-ins/gflare/gflare.c:3617 plug-ins/gflare/gflare.c:3647 +#: plug-ins/gflare/gflare.c:3677 msgid "Paint Mode:" msgstr "Zeichenmodus:" #. Rays -#: plug-ins/gflare/gflare.c:3613 +#: plug-ins/gflare/gflare.c:3622 msgid "Rays Paint Options" msgstr "Zeicheneinstellungen für Strahlen" #. Rays -#: plug-ins/gflare/gflare.c:3643 +#: plug-ins/gflare/gflare.c:3652 msgid "Second Flares Paint Options" msgstr "Zeicheneinstellungen für anderes Flare" -#: plug-ins/gflare/gflare.c:3675 plug-ins/gimpressionist/general.c:134 +#: plug-ins/gflare/gflare.c:3684 plug-ins/gimpressionist/general.c:134 #: plug-ins/gimpressionist/general.c:139 #: plug-ins/imagemap/imap_preferences.c:467 msgid "General" @@ -11048,80 +11048,80 @@ msgstr "Allgemein" #. #. * Gradient Menus #. -#: plug-ins/gflare/gflare.c:3701 plug-ins/gflare/gflare.c:3809 -#: plug-ins/gflare/gflare.c:3953 +#: plug-ins/gflare/gflare.c:3710 plug-ins/gflare/gflare.c:3818 +#: plug-ins/gflare/gflare.c:3962 msgid "Gradients" msgstr "Farbverläufe" -#: plug-ins/gflare/gflare.c:3713 plug-ins/gflare/gflare.c:3823 -#: plug-ins/gflare/gflare.c:3965 +#: plug-ins/gflare/gflare.c:3722 plug-ins/gflare/gflare.c:3832 +#: plug-ins/gflare/gflare.c:3974 msgid "Radial Gradient:" msgstr "Radialer Farbverlauf:" -#: plug-ins/gflare/gflare.c:3717 plug-ins/gflare/gflare.c:3827 +#: plug-ins/gflare/gflare.c:3726 plug-ins/gflare/gflare.c:3836 msgid "Angular Gradient:" msgstr "Drehungs-Gradient:" -#: plug-ins/gflare/gflare.c:3721 plug-ins/gflare/gflare.c:3831 +#: plug-ins/gflare/gflare.c:3730 plug-ins/gflare/gflare.c:3840 msgid "Angular Size Gradient:" msgstr "Umfangs-Gradient:" -#: plug-ins/gflare/gflare.c:3742 plug-ins/gflare/gflare.c:3852 -#: plug-ins/gflare/gflare.c:3994 +#: plug-ins/gflare/gflare.c:3751 plug-ins/gflare/gflare.c:3861 +#: plug-ins/gflare/gflare.c:4003 msgid "Size (%):" msgstr "Grösse (%):" -#: plug-ins/gflare/gflare.c:3783 +#: plug-ins/gflare/gflare.c:3792 msgid "Glow" msgstr "Glühen" -#: plug-ins/gflare/gflare.c:3889 +#: plug-ins/gflare/gflare.c:3898 msgid "# of Spikes:" msgstr "Anzahl der Strahlen:" -#: plug-ins/gflare/gflare.c:3901 +#: plug-ins/gflare/gflare.c:3910 msgid "Spike Thickness:" msgstr "Dicke der Strahlen:" -#: plug-ins/gflare/gflare.c:3918 +#: plug-ins/gflare/gflare.c:3927 msgid "Rays" msgstr "Strahlen" -#: plug-ins/gflare/gflare.c:3969 +#: plug-ins/gflare/gflare.c:3978 msgid "Size Factor Gradient:" msgstr "Grössenfaktor für Gradient:" -#: plug-ins/gflare/gflare.c:3973 +#: plug-ins/gflare/gflare.c:3982 msgid "Probability Gradient:" msgstr "Wahrscheinlichkeitsgradient:" #. #. * Shape Radio Button Frame #. -#: plug-ins/gflare/gflare.c:4036 +#: plug-ins/gflare/gflare.c:4045 msgid "Shape of Second Flares" msgstr "Form des anderen Flare" -#: plug-ins/gflare/gflare.c:4045 plug-ins/imagemap/imap_circle.c:60 +#: plug-ins/gflare/gflare.c:4054 plug-ins/imagemap/imap_circle.c:60 #: plug-ins/imagemap/imap_menu.c:387 plug-ins/imagemap/imap_popup.c:135 msgid "Circle" msgstr "Kreis" -#: plug-ins/gflare/gflare.c:4061 plug-ins/imagemap/imap_menu.c:389 +#: plug-ins/gflare/gflare.c:4070 plug-ins/imagemap/imap_menu.c:389 #: plug-ins/imagemap/imap_polygon.c:69 plug-ins/imagemap/imap_popup.c:138 msgid "Polygon" msgstr "Polygon" -#: plug-ins/gflare/gflare.c:4120 +#: plug-ins/gflare/gflare.c:4129 msgid "Second Flares" msgstr "Zweites Flare" -#: plug-ins/gflare/gflare.c:4740 +#: plug-ins/gflare/gflare.c:4749 #, c-format msgid "Not found \"%s\": used \"%s\" instead" msgstr "\"%s\" nicht gefunden; Benutze \"%s\"." -#: plug-ins/gflare/gflare.c:4810 +#: plug-ins/gflare/gflare.c:4819 msgid "More..." msgstr "Mehr..." @@ -13316,6 +13316,3 @@ msgstr "Fehler: Kann XJT Eigenschaften-Datei %s nicht lesen" #, c-format msgid "Error: XJT propertyfile %s is empty" msgstr "Fehler: XJT Eigenschaften-Datei %s ist leer" - -#~ msgid "PNM: %s is not a valid file." -#~ msgstr "PNM: %s ist keine gültige Datei."