Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
GIMP
Commits
c5684e3f
Commit
c5684e3f
authored
Mar 25, 2000
by
Sven Neumann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some cleanup in script-fu and a whole bunch of german translations
--Sven
parent
6a35e2d5
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1059 additions
and
740 deletions
+1059
-740
ChangeLog
ChangeLog
+8
-0
plug-ins/script-fu/script-fu-console.c
plug-ins/script-fu/script-fu-console.c
+10
-7
plug-ins/script-fu/script-fu-server.c
plug-ins/script-fu/script-fu-server.c
+22
-52
po-plug-ins/ChangeLog
po-plug-ins/ChangeLog
+4
-0
po-plug-ins/de.po
po-plug-ins/de.po
+470
-456
po-script-fu/ChangeLog
po-script-fu/ChangeLog
+4
-0
po-script-fu/de.po
po-script-fu/de.po
+355
-48
po/ChangeLog
po/ChangeLog
+4
-0
po/de.po
po/de.po
+182
-177
No files found.
ChangeLog
View file @
c5684e3f
2000-03-25 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/script-fu-console.c: only call gtk_main_quit()
once when closing the dialog.
* plug-ins/script-fu/script-fu-server.c: use a gimp_dialog and
other nice things from libgimpui.
Fri Mar 24 14:07:46 CET 2000 Stanislav Brabec <utx@penguin.cz>
* app/hue_saturation.c: i18n fix.
...
...
plug-ins/script-fu/script-fu-console.c
View file @
c5684e3f
...
...
@@ -192,21 +192,22 @@ script_fu_console_interface (void)
dlg
=
gtk_dialog_new
();
gtk_window_set_title
(
GTK_WINDOW
(
dlg
),
_
(
"Script-Fu Console"
));
gimp_help_connect_help_accel
(
dlg
,
gimp_plugin_help_func
,
"filters/script-fu.html"
);
gtk_signal_connect
(
GTK_OBJECT
(
dlg
),
"destroy"
,
(
GtkSignalFunc
)
script_fu_close_callback
,
NULL
);
gtk_signal_connect
(
GTK_OBJECT
(
dlg
),
"destroy"
,
gtk_signal_connect
(
GTK_OBJECT
(
dlg
),
"destroy"
,
GTK_SIGNAL_FUNC
(
gtk_widget_destroyed
),
&
dlg
);
gtk_container_border_width
(
GTK_CONTAINER
(
GTK_DIALOG
(
dlg
)
->
vbox
),
2
);
gtk_container_border_width
(
GTK_CONTAINER
(
GTK_DIALOG
(
dlg
)
->
action_area
),
2
);
gtk_container_border_width
(
GTK_CONTAINER
(
GTK_DIALOG
(
dlg
)
->
action_area
),
0
);
/* Action area */
button
=
gtk_button_new_with_label
(
_
(
"Close"
));
gtk_signal_connect
(
GTK_OBJECT
(
button
),
"clicked"
,
(
GtkSignalFunc
)
script_fu_close_callback
,
NULL
);
gtk_signal_connect
_object
(
GTK_OBJECT
(
button
),
"clicked"
,
(
GtkSignalFunc
)
gtk_widget_destroy
,
(
gpointer
)
dlg
);
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dlg
)
->
action_area
),
button
,
TRUE
,
TRUE
,
0
);
gtk_widget_show
(
button
);
...
...
@@ -247,7 +248,9 @@ script_fu_console_interface (void)
gtk_text_insert
(
GTK_TEXT
(
cint
.
console
),
cint
.
font_strong
,
NULL
,
NULL
,
"The GIMP - GNU Image Manipulation Program
\n\n
"
,
-
1
);
gtk_text_insert
(
GTK_TEXT
(
cint
.
console
),
cint
.
font_emphasis
,
NULL
,
NULL
,
"Copyright (C) 1995 Spencer Kimball and Peter Mattis
\n
"
,
-
1
);
"Copyright (C) 1995-2000
\n
"
,
-
1
);
gtk_text_insert
(
GTK_TEXT
(
cint
.
console
),
cint
.
font_emphasis
,
NULL
,
NULL
,
"Spencer Kimball, Peter Mattis and the GIMP Development Team
\n
"
,
-
1
);
gtk_text_insert
(
GTK_TEXT
(
cint
.
console
),
cint
.
font_weak
,
NULL
,
NULL
,
"
\n
"
,
-
1
);
gtk_text_insert
(
GTK_TEXT
(
cint
.
console
),
cint
.
font_weak
,
NULL
,
NULL
,
...
...
plug-ins/script-fu/script-fu-server.c
View file @
c5684e3f
...
...
@@ -37,6 +37,7 @@
#endif
/* HAVE_SYS_SELECT_H */
#include "libgimp/gimp.h"
#include "libgimp/gimpui.h"
#include "script-fu-intl.h"
...
...
@@ -125,8 +126,6 @@ static void server_quit (void);
static
gint
server_interface
(
void
);
static
void
ok_callback
(
GtkWidget
*
widget
,
gpointer
data
);
static
void
cancel_callback
(
GtkWidget
*
widget
,
gpointer
data
);
/*
* Global variables
...
...
@@ -531,8 +530,6 @@ static gint
server_interface
()
{
GtkWidget
*
dlg
;
GtkWidget
*
button
;
GtkWidget
*
label
;
GtkWidget
*
table
;
gchar
**
argv
;
gint
argc
;
...
...
@@ -547,61 +544,41 @@ server_interface ()
INIT_I18N_UI
();
dlg
=
gtk_dialog_new
();
gtk_window_set_title
(
GTK_WINDOW
(
dlg
),
_
(
"Script-Fu Server Options"
));
gtk_window_position
(
GTK_WINDOW
(
dlg
),
GTK_WIN_POS_MOUSE
);
dlg
=
gimp_dialog_new
(
_
(
"Script-Fu Server Options"
),
argv
[
0
],
gimp_plugin_help_func
,
"filters/script-fu.html"
,
GTK_WIN_POS_MOUSE
,
FALSE
,
TRUE
,
FALSE
,
_
(
"OK"
),
ok_callback
,
NULL
,
NULL
,
NULL
,
TRUE
,
FALSE
,
_
(
"Cancel"
),
gtk_widget_destroy
,
NULL
,
1
,
NULL
,
FALSE
,
TRUE
,
NULL
);
gtk_signal_connect
(
GTK_OBJECT
(
dlg
),
"destroy"
,
(
GtkSignalFunc
)
cancel_callback
,
GTK_SIGNAL_FUNC
(
gtk_main_quit
)
,
NULL
);
gtk_container_border_width
(
GTK_CONTAINER
(
GTK_DIALOG
(
dlg
)
->
action_area
),
2
);
/* Action area */
button
=
gtk_button_new_with_label
(
_
(
"OK"
));
GTK_WIDGET_SET_FLAGS
(
button
,
GTK_CAN_DEFAULT
);
gtk_signal_connect
(
GTK_OBJECT
(
button
),
"clicked"
,
(
GtkSignalFunc
)
ok_callback
,
dlg
);
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dlg
)
->
action_area
),
button
,
TRUE
,
TRUE
,
0
);
gtk_widget_grab_default
(
button
);
gtk_widget_show
(
button
);
button
=
gtk_button_new_with_label
(
_
(
"Cancel"
));
GTK_WIDGET_SET_FLAGS
(
button
,
GTK_CAN_DEFAULT
);
gtk_signal_connect_object
(
GTK_OBJECT
(
button
),
"clicked"
,
(
GtkSignalFunc
)
gtk_widget_destroy
,
GTK_OBJECT
(
dlg
));
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dlg
)
->
action_area
),
button
,
TRUE
,
TRUE
,
0
);
gtk_widget_show
(
button
);
/* The table to hold port & logfile entries */
table
=
gtk_table_new
(
2
,
2
,
FALSE
);
gtk_table_set_col_spacings
(
GTK_TABLE
(
table
),
4
);
gtk_table_set_row_spacings
(
GTK_TABLE
(
table
),
2
);
gtk_container_border_width
(
GTK_CONTAINER
(
table
),
4
);
gtk_box_pack_start
(
GTK_BOX
(
GTK_DIALOG
(
dlg
)
->
vbox
),
table
,
TRUE
,
TRUE
,
0
);
/* The server port */
label
=
gtk_label_new
(
_
(
"Server Port: "
));
gtk_misc_set_alignment
(
GTK_MISC
(
label
),
0
.
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
label
,
0
,
1
,
0
,
1
,
GTK_SHRINK
|
GTK_FILL
,
GTK_SHRINK
,
0
,
1
);
gtk_widget_show
(
label
);
sint
.
port_entry
=
gtk_entry_new
();
gtk_table_attach
(
GTK_TABLE
(
table
),
sint
.
port_entry
,
1
,
2
,
0
,
1
,
GTK_EXPAND
|
GTK_SHRINK
|
GTK_FILL
,
GTK_SHRINK
,
1
,
1
);
gtk_entry_set_text
(
GTK_ENTRY
(
sint
.
port_entry
),
"10008"
);
gtk_widget_show
(
sint
.
port_entry
);
gimp_table_attach_aligned
(
GTK_TABLE
(
table
),
0
,
0
,
_
(
"Server Port:"
),
1
.
0
,
0
.
5
,
sint
.
port_entry
,
1
,
TRUE
);
/* The server logfile */
label
=
gtk_label_new
(
_
(
"Server Logfile: "
));
gtk_misc_set_alignment
(
GTK_MISC
(
label
),
0
.
0
,
0
.
5
);
gtk_table_attach
(
GTK_TABLE
(
table
),
label
,
0
,
1
,
1
,
2
,
GTK_SHRINK
|
GTK_FILL
,
GTK_SHRINK
,
0
,
1
);
gtk_widget_show
(
label
);
sint
.
log_entry
=
gtk_entry_new
();
g
tk
_table_attach
(
GTK_TABLE
(
table
),
sint
.
log_entry
,
1
,
2
,
1
,
2
,
GTK_EXPAND
|
GTK_SHRINK
|
GTK_FILL
,
GTK_SHRINK
,
1
,
1
);
gtk_widget_show
(
sint
.
log_entry
);
g
imp
_table_attach
_aligned
(
GTK_TABLE
(
table
),
0
,
1
,
_
(
"Server Logfile:"
),
1
.
0
,
0
.
5
,
sint
.
log_entry
,
1
,
TRUE
);
gtk_widget_show
(
table
);
gtk_widget_show
(
dlg
);
...
...
@@ -623,10 +600,3 @@ ok_callback (GtkWidget *widget,
gtk_widget_destroy
(
GTK_WIDGET
(
data
));
}
static
void
cancel_callback
(
GtkWidget
*
widget
,
gpointer
data
)
{
gtk_main_quit
();
}
po-plug-ins/ChangeLog
View file @
c5684e3f
2000-03-25 Sven Neumann <sven@gimp.org>
* de.po: updated german translation
Sat Mar 25 15:01:30 CET 2000 Stanislav Brabec <utx@penguin.cz>
* cs.po: Updated translation.
...
...
po-plug-ins/de.po
View file @
c5684e3f
...
...
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.1.18\n"
"POT-Creation-Date: 2000-03-
08 14:43
+0100\n"
"PO-Revision-Date: 2000-03-
08 14:45
+0100\n"
"POT-Creation-Date: 2000-03-
25 02:24
+0100\n"
"PO-Revision-Date: 2000-03-
25 15:14
+01
:
00\n"
"Last-Translator: Sven Neumann
<sven
@
gimp.org
>
\n"
"Language-Team: German
<de
@
li.org
>
\n"
"MIME-Version: 1.0\n"
...
...
@@ -31,7 +31,7 @@ msgstr "AlienMap"
#: plug-ins/AlienMap/AlienMap.c:632 plug-ins/AlienMap2/AlienMap2.c:624
#: plug-ins/FractalExplorer/Dialogs.c:298
#: plug-ins/FractalExplorer/Dialogs.c:1388 plug-ins/gdyntext/gdyntext_ui.c:490
#: plug-ins/gfig/gfig.c:336
3
plug-ins/imagemap/imap_about.c:33
#: plug-ins/gfig/gfig.c:336
2
plug-ins/imagemap/imap_about.c:33
#: plug-ins/webbrowser/webbrowser.c:273
msgid "About"
msgstr "ber"
...
...
@@ -50,7 +50,7 @@ msgstr "
#: plug-ins/common/align_layers.c:420 plug-ins/common/apply_lens.c:404
#: plug-ins/common/blinds.c:342 plug-ins/common/blur.c:622
#: plug-ins/common/bumpmap.c:806 plug-ins/common/checkerboard.c:359
#: plug-ins/common/colorify.c:333 plug-ins/common/colortoalpha.c:4
18
#: plug-ins/common/colorify.c:333 plug-ins/common/colortoalpha.c:4
23
#: plug-ins/common/compose.c:785 plug-ins/common/convmatrix.c:810
#: plug-ins/common/csource.c:670 plug-ins/common/cubism.c:316
#: plug-ins/common/curve_bend.c:1389 plug-ins/common/decompose.c:862
...
...
@@ -63,14 +63,14 @@ msgstr "
#: plug-ins/common/fractaltrace.c:738 plug-ins/common/gauss_iir.c:352
#: plug-ins/common/gauss_iir.c:442 plug-ins/common/gauss_rle.c:349
#: plug-ins/common/gauss_rle.c:439 plug-ins/common/gbr.c:473
#: plug-ins/common/gicon.c:45
5
plug-ins/common/gif.c:1155
#: plug-ins/common/gicon.c:45
7
plug-ins/common/gif.c:1155
#: plug-ins/common/gif.c:1226 plug-ins/common/glasstile.c:237
#: plug-ins/common/gpb.c:286 plug-ins/common/gqbist.c:659
#: plug-ins/common/grid.c:575 plug-ins/common/gtm.c:383
#: plug-ins/common/hot.c:595 plug-ins/common/illusion.c:318
#: plug-ins/common/iwarp.c:1080 plug-ins/common/jigsaw.c:2316
#: plug-ins/common/jpeg.c:160
7
plug-ins/common/lic.c:1020
#: plug-ins/common/mail.c:504 plug-ins/common/mapcolor.c:
33
8
#: plug-ins/common/jpeg.c:160
9
plug-ins/common/lic.c:1020
#: plug-ins/common/mail.c:504 plug-ins/common/mapcolor.c:
57
8
#: plug-ins/common/max_rgb.c:266 plug-ins/common/mblur.c:784
#: plug-ins/common/newsprint.c:1230 plug-ins/common/nlfilt.c:359
#: plug-ins/common/noisify.c:333 plug-ins/common/nova.c:364
...
...
@@ -78,7 +78,7 @@ msgstr "
#: plug-ins/common/pat.c:428 plug-ins/common/pixelize.c:289
#: plug-ins/common/plasma.c:295 plug-ins/common/png.c:934
#: plug-ins/common/pnm.c:950 plug-ins/common/polar.c:943
#: plug-ins/common/ps.c:2
278
plug-ins/common/ps.c:2
459
#: plug-ins/common/ps.c:2
470
plug-ins/common/ps.c:2
651
#: plug-ins/common/psp.c:443 plug-ins/common/randomize.c:710
#: plug-ins/common/ripple.c:596 plug-ins/common/scatter_hsv.c:392
#: plug-ins/common/sel_gauss.c:246 plug-ins/common/sharpen.c:541
...
...
@@ -100,10 +100,10 @@ msgstr "
#: plug-ins/gap/gap_decode_xanim.c:177 plug-ins/gap/gap_mod_layer.c:145
#: plug-ins/gap/gap_mov_dialog.c:452 plug-ins/gap/gap_mpege.c:191
#: plug-ins/gap/gap_resi_dialog.c:149 plug-ins/gdyntext/gdyntext_ui.c:188
#: plug-ins/gdyntext/gdyntext_ui.c:503 plug-ins/gfig/gfig.c:4
106
#: plug-ins/gfig/gfig.c:44
51
plug-ins/gfig/gfig.c:453
4
#: plug-ins/gfig/gfig.c:48
80
plug-ins/gflare/gflare.c:24
65
#: plug-ins/gflare/gflare.c:34
75
plug-ins/gfli/gfli.c:857
#: plug-ins/gdyntext/gdyntext_ui.c:503 plug-ins/gfig/gfig.c:4
085
#: plug-ins/gfig/gfig.c:44
30
plug-ins/gfig/gfig.c:45
1
3
#: plug-ins/gfig/gfig.c:48
59
plug-ins/gflare/gflare.c:24
72
#: plug-ins/gflare/gflare.c:34
82
plug-ins/gfli/gfli.c:857
#: plug-ins/gfli/gfli.c:926 plug-ins/gimpressionist/gimpressionist.c:360
#: plug-ins/gimpressionist/gimpressionist.c:482
#: plug-ins/gimpressionist/orientmap.c:626
...
...
@@ -131,7 +131,7 @@ msgstr "OK"
#: plug-ins/common/apply_lens.c:406 plug-ins/common/blinds.c:344
#: plug-ins/common/blur.c:624 plug-ins/common/bumpmap.c:808
#: plug-ins/common/checkerboard.c:361 plug-ins/common/colorify.c:335
#: plug-ins/common/colortoalpha.c:42
0
plug-ins/common/compose.c:787
#: plug-ins/common/colortoalpha.c:42
5
plug-ins/common/compose.c:787
#: plug-ins/common/convmatrix.c:814 plug-ins/common/csource.c:672
#: plug-ins/common/cubism.c:318 plug-ins/common/curve_bend.c:1391
#: plug-ins/common/decompose.c:864 plug-ins/common/deinterlace.c:280
...
...
@@ -143,23 +143,23 @@ msgstr "OK"
#: plug-ins/common/flarefx.c:340 plug-ins/common/fractaltrace.c:740
#: plug-ins/common/gauss_iir.c:354 plug-ins/common/gauss_iir.c:444
#: plug-ins/common/gauss_rle.c:351 plug-ins/common/gauss_rle.c:441
#: plug-ins/common/gbr.c:475 plug-ins/common/gicon.c:45
7
#: plug-ins/common/gbr.c:475 plug-ins/common/gicon.c:45
9
#: plug-ins/common/gif.c:1157 plug-ins/common/gif.c:1228
#: plug-ins/common/glasstile.c:239 plug-ins/common/gpb.c:288
#: plug-ins/common/gqbist.c:661 plug-ins/common/grid.c:577
#: plug-ins/common/gtm.c:385 plug-ins/common/hot.c:597
#: plug-ins/common/illusion.c:320 plug-ins/common/iwarp.c:1082
#: plug-ins/common/jigsaw.c:2318 plug-ins/common/jpeg.c:16
09
#: plug-ins/common/jigsaw.c:2318 plug-ins/common/jpeg.c:16
11
#: plug-ins/common/lic.c:1022 plug-ins/common/mail.c:506
#: plug-ins/common/mapcolor.c:
34
0 plug-ins/common/max_rgb.c:268
#: plug-ins/common/mapcolor.c:
58
0 plug-ins/common/max_rgb.c:268
#: plug-ins/common/mblur.c:786 plug-ins/common/newsprint.c:1232
#: plug-ins/common/nlfilt.c:361 plug-ins/common/noisify.c:335
#: plug-ins/common/nova.c:366 plug-ins/common/oilify.c:464
#: plug-ins/common/papertile.c:250 plug-ins/common/pat.c:430
#: plug-ins/common/pixelize.c:291 plug-ins/common/plasma.c:297
#: plug-ins/common/png.c:936 plug-ins/common/pnm.c:952
#: plug-ins/common/polar.c:945 plug-ins/common/ps.c:2
280
#: plug-ins/common/ps.c:2
461
plug-ins/common/psp.c:445
#: plug-ins/common/polar.c:945 plug-ins/common/ps.c:2
472
#: plug-ins/common/ps.c:2
653
plug-ins/common/psp.c:445
#: plug-ins/common/randomize.c:712 plug-ins/common/ripple.c:598
#: plug-ins/common/scatter_hsv.c:394 plug-ins/common/screenshot.c:400
#: plug-ins/common/sel_gauss.c:248 plug-ins/common/sharpen.c:543
...
...
@@ -182,11 +182,11 @@ msgstr "OK"
#: plug-ins/gap/gap_filter_foreach.c:132 plug-ins/gap/gap_mod_layer.c:147
#: plug-ins/gap/gap_mod_layer.c:261 plug-ins/gap/gap_mov_dialog.c:472
#: plug-ins/gap/gap_mpege.c:189 plug-ins/gap/gap_mpege.c:240
#: plug-ins/gap/gap_resi_dialog.c:158 plug-ins/gfig/gfig.c:39
59
#: plug-ins/gfig/gfig.c:4
106
plug-ins/gfig/gfig.c:44
5
3
#: plug-ins/gfig/gfig.c:45
36
plug-ins/gfig/gfig.c:50
88
#: plug-ins/gflare/gflare.c:24
6
7 plug-ins/gflare/gflare.c:33
76
#: plug-ins/gflare/gflare.c:34
77
plug-ins/gfli/gfli.c:859
#: plug-ins/gap/gap_resi_dialog.c:158 plug-ins/gfig/gfig.c:39
38
#: plug-ins/gfig/gfig.c:4
085
plug-ins/gfig/gfig.c:443
2
#: plug-ins/gfig/gfig.c:45
15
plug-ins/gfig/gfig.c:50
67
#: plug-ins/gflare/gflare.c:247
4
plug-ins/gflare/gflare.c:33
83
#: plug-ins/gflare/gflare.c:34
84
plug-ins/gfli/gfli.c:859
#: plug-ins/gfli/gfli.c:928 plug-ins/gimpressionist/gimpressionist.c:491
#: plug-ins/gimpressionist/orientmap.c:640
#: plug-ins/gimpressionist/presets.c:400 plug-ins/gimpressionist/sizemap.c:499
...
...
@@ -197,7 +197,7 @@ msgstr "OK"
#: plug-ins/rcm/rcm_dialog.c:748 plug-ins/sel2path/sel2path.c:356
#: plug-ins/sgi/sgi.c:657 plug-ins/sinus/sinus.c:755
#: plug-ins/struc/struc.c:263 plug-ins/webbrowser/webbrowser.c:295
#: plug-ins/winsnap/winsnap.c:90
6
plug-ins/xjt/xjt.c:802
#: plug-ins/winsnap/winsnap.c:9
2
0 plug-ins/xjt/xjt.c:802
msgid "Cancel"
msgstr "Abbrechen"
...
...
@@ -266,7 +266,7 @@ msgstr "Kosinus"
#: plug-ins/FractalExplorer/Dialogs.c:778
#: plug-ins/FractalExplorer/Dialogs.c:819 plug-ins/common/CML_explorer.c:167
#: plug-ins/common/align_layers.c:447 plug-ins/common/align_layers.c:480
#: plug-ins/common/ps.c:2
385
plug-ins/common/ps.c:2
398
#: plug-ins/common/ps.c:2
577
plug-ins/common/ps.c:2
590
#: plug-ins/common/psp.c:460 plug-ins/common/tiff.c:1489
#: plug-ins/fits/fits.c:1048 plug-ins/gap/gap_mov_dialog.c:276
#: plug-ins/print/print.c:1644
...
...
@@ -441,13 +441,14 @@ msgstr "
#: plug-ins/common/blinds.c:362 plug-ins/common/bumpmap.c:828
#: plug-ins/common/curve_bend.c:1523 plug-ins/common/destripe.c:597
#: plug-ins/common/emboss.c:762 plug-ins/common/exchange.c:313
#: plug-ins/common/fractaltrace.c:759 plug-ins/common/nlfilt.c:586
#: plug-ins/common/polar.c:964 plug-ins/common/ps.c:2597
#: plug-ins/common/sharpen.c:567 plug-ins/common/spheredesigner.c:2258
#: plug-ins/common/tileit.c:426 plug-ins/common/waves.c:593
#: plug-ins/common/whirlpinch.c:847 plug-ins/flame/flame.c:1060
#: plug-ins/gfig/gfig.c:3982 plug-ins/gflare/gflare.c:2492
#: plug-ins/gflare/gflare.c:3500 plug-ins/gimpressionist/orientmap.c:502
#: plug-ins/common/fractaltrace.c:759 plug-ins/common/mapcolor.c:596
#: plug-ins/common/nlfilt.c:586 plug-ins/common/polar.c:964
#: plug-ins/common/ps.c:2789 plug-ins/common/sharpen.c:567
#: plug-ins/common/spheredesigner.c:2258 plug-ins/common/tileit.c:426
#: plug-ins/common/waves.c:593 plug-ins/common/whirlpinch.c:847
#: plug-ins/flame/flame.c:1060 plug-ins/gfig/gfig.c:3961
#: plug-ins/gflare/gflare.c:2499 plug-ins/gflare/gflare.c:3507
#: plug-ins/gimpressionist/orientmap.c:502
#: plug-ins/gimpressionist/preview.c:106 plug-ins/gimpressionist/sizemap.c:402
#: plug-ins/ifscompose/ifscompose.c:912
#: plug-ins/imagemap/imap_edit_area_info.c:287
...
...
@@ -506,9 +507,9 @@ msgstr "Schritt heraus"
#.
#. * Scales
#.
#: plug-ins/FractalExplorer/Dialogs.c:437 plug-ins/gflare/gflare.c:2
895
#: plug-ins/gflare/gflare.c:373
6
plug-ins/gflare/gflare.c:38
46
#: plug-ins/gflare/gflare.c:39
88
#: plug-ins/FractalExplorer/Dialogs.c:437 plug-ins/gflare/gflare.c:2
902
#: plug-ins/gflare/gflare.c:37
4
3 plug-ins/gflare/gflare.c:38
53
#: plug-ins/gflare/gflare.c:39
95
msgid "Parameters"
msgstr "Parameter"
...
...
@@ -586,7 +587,7 @@ msgstr ""
#: plug-ins/FractalExplorer/Dialogs.c:536 plug-ins/common/CML_explorer.c:1241
#: plug-ins/common/gqbist.c:705 plug-ins/common/spheredesigner.c:2333
#: plug-ins/gfig/gfig.c:353
7
#: plug-ins/gfig/gfig.c:353
6
msgid "Load"
msgstr "ffnen"
...
...
@@ -609,7 +610,7 @@ msgstr "Auf Standardwerte zur
#: plug-ins/FractalExplorer/Dialogs.c:553 plug-ins/common/CML_explorer.c:1234
#: plug-ins/common/gqbist.c:713 plug-ins/common/spheredesigner.c:2340
#: plug-ins/gfig/gfig.c:39
5
3 plug-ins/gfig/gfig.c:53
22
#: plug-ins/gfig/gfig.c:393
2
plug-ins/gfig/gfig.c:53
01
#: plug-ins/imagemap/imap_menu.c:218 plug-ins/imagemap/imap_toolbar.c:112
msgid "Save"
msgstr "Sichern"
...
...
@@ -659,7 +660,7 @@ msgstr "Lambda"
msgid "Sierpinski"
msgstr "Sierpinski"
#: plug-ins/FractalExplorer/Dialogs.c:637
plug-ins/common/mapcolor.c:349
#: plug-ins/FractalExplorer/Dialogs.c:637
#: plug-ins/imagemap/imap_preferences.c:542 plug-ins/sinus/sinus.c:910
#: plug-ins/sinus/sinus.c:928 plug-ins/sinus/sinus.c:1014
msgid "Colors"
...
...
@@ -848,8 +849,8 @@ msgstr "<Image>/Filter/Render/Muster/Fraktal Exlorer..."
msgid "Rendering Fractal..."
msgstr "Berechne Fraktal..."
#: plug-ins/FractalExplorer/FractalExplorer.c:735 plug-ins/gfig/gfig.c:50
79
#: plug-ins/gflare/gflare.c:33
6
7
#: plug-ins/FractalExplorer/FractalExplorer.c:735 plug-ins/gfig/gfig.c:50
58
#: plug-ins/gflare/gflare.c:337
4
#, c-format
msgid ""
"Are you sure you want to delete\n"
...
...
@@ -863,9 +864,9 @@ msgid "Delete Fractal"
msgstr "Fraktal lschen"
#: plug-ins/FractalExplorer/FractalExplorer.c:744
#: plug-ins/FractalExplorer/FractalExplorer.c:1403 plug-ins/gfig/gfig.c:355
7
#: plug-ins/gfig/gfig.c:50
88
plug-ins/gflare/gflare.c:310
0
#: plug-ins/gflare/gflare.c:33
76
plug-ins/gimpressionist/presets.c:648
#: plug-ins/FractalExplorer/FractalExplorer.c:1403 plug-ins/gfig/gfig.c:355
6
#: plug-ins/gfig/gfig.c:50
67
plug-ins/gflare/gflare.c:310
7
#: plug-ins/gflare/gflare.c:33
83
plug-ins/gimpressionist/presets.c:648
#: plug-ins/ifscompose/ifscompose.c:801 plug-ins/imagemap/imap_cmd_delete.c:53
#: plug-ins/imagemap/imap_selection.c:175
msgid "Delete"
...
...
@@ -906,7 +907,7 @@ msgid "Choose Fractal by double-clicking on it"
msgstr "Durch Doppelklick ein Fracktal auswhlen"
#. Put buttons in
#: plug-ins/FractalExplorer/FractalExplorer.c:1393 plug-ins/gfig/gfig.c:352
6
#: plug-ins/FractalExplorer/FractalExplorer.c:1393 plug-ins/gfig/gfig.c:352
5
msgid "Rescan"
msgstr "Neuer Scan"
...
...
@@ -961,7 +962,7 @@ msgstr "Benutze Environmentmapping"
msgid "Enable/disable environment mapping (reflection)"
msgstr "Environment-mapping (Reflexionen) an/ausschalten"
#: plug-ins/Lighting/lighting_ui.c:428
#: plug-ins/Lighting/lighting_ui.c:428
plug-ins/MapObject/mapobject_ui.c:565
msgid "Transparent Background"
msgstr "Transparenter Hintergrund"
...
...
@@ -1078,7 +1079,7 @@ msgstr "Position"
#: plug-ins/MapObject/mapobject_ui.c:1040
#: plug-ins/MapObject/mapobject_ui.c:1084 plug-ins/common/flarefx.c:745
#: plug-ins/common/nova.c:494 plug-ins/common/papertile.c:283
#: plug-ins/gap/gap_mov_dialog.c:1554 plug-ins/gflare/gflare.c:28
74
#: plug-ins/gap/gap_mov_dialog.c:1554 plug-ins/gflare/gflare.c:28
81
#: plug-ins/ifscompose/ifscompose.c:512
msgid "X:"
msgstr "X:"
...
...
@@ -1096,7 +1097,7 @@ msgstr "X-Koordinate der Lichtquelle im XYZ-Raum"
#: plug-ins/MapObject/mapobject_ui.c:1189 plug-ins/common/flarefx.c:763
#: plug-ins/common/nova.c:512 plug-ins/common/papertile.c:292
#: plug-ins/common/xbm.c:1237 plug-ins/gap/gap_mov_dialog.c:1572
#: plug-ins/gflare/gflare.c:28
7
8 plug-ins/ifscompose/ifscompose.c:526
#: plug-ins/gflare/gflare.c:288
5
plug-ins/ifscompose/ifscompose.c:526
msgid "Y:"
msgstr "Y:"
...
...
@@ -1234,7 +1235,7 @@ msgstr "Umgebungs-Bild:"
#. Options section
#: plug-ins/Lighting/lighting_ui.c:1014 plug-ins/MapObject/mapobject_ui.c:1314
#: plug-ins/common/lic.c:1036 plug-ins/common/ripple.c:620
#: plug-ins/gfig/gfig.c:40
36
plug-ins/maze/maze_face.c:338
#: plug-ins/gfig/gfig.c:40
15
plug-ins/maze/maze_face.c:338
msgid "Options"
msgstr "Einstellungen"
...
...
@@ -1299,10 +1300,6 @@ msgstr "Kugel"
msgid "Type of object to map to"
msgstr "Art des Objektes, auf das abgebildet wird"
#: plug-ins/MapObject/mapobject_ui.c:565
msgid "Transpararent Background"
msgstr "Transparenter Hintergrund"
#: plug-ins/MapObject/mapobject_ui.c:575
msgid "Make image transparent outside object"
msgstr "Bild auerhalb des Objektes transparent machen"
...
...
@@ -1328,7 +1325,7 @@ msgid "Object Z position in XYZ space"
msgstr "Z-Koordinate des Objektes im XYZ-Raum"
#. Rotation
#: plug-ins/MapObject/mapobject_ui.c:1072 plug-ins/common/ps.c:2
559
#: plug-ins/MapObject/mapobject_ui.c:1072 plug-ins/common/ps.c:2
751
#: plug-ins/gdyntext/gdyntext_ui.c:388
msgid "Rotation"
msgstr "Rotation"
...
...
@@ -1404,7 +1401,7 @@ msgstr "Gr
#: plug-ins/MapObject/mapobject_ui.c:1272 plug-ins/common/despeckle.c:763
#: plug-ins/common/nlfilt.c:421 plug-ins/common/nova.c:399
#: plug-ins/common/unsharp.c:819 plug-ins/common/whirlpinch.c:898
#: plug-ins/gfig/gfig.c:316
6
plug-ins/gflare/gflare.c:29
09
#: plug-ins/gfig/gfig.c:316
5
plug-ins/gflare/gflare.c:29
16
#: plug-ins/imagemap/imap_circle.c:273
msgid "Radius:"
msgstr "Radius:"
...
...
@@ -1441,51 +1438,51 @@ msgstr "Zeige/Verberge Vorschau-Drahtgitter"
#. memory mapped file data
#. must check file size
#: plug-ins/bmp/bmpread.c:5
3
plug-ins/common/CEL.c:268
#: plug-ins/bmp/bmpread.c:5
4
plug-ins/common/CEL.c:268
#: plug-ins/common/gbr.c:284 plug-ins/common/gifload.c:304
#: plug-ins/common/hrz.c:340 plug-ins/common/jpeg.c:748
#: plug-ins/common/pat.c:263 plug-ins/common/pcx.c:318
#: plug-ins/common/pix.c:329 plug-ins/common/png.c:414
#: plug-ins/common/png.c:416 plug-ins/common/pnm.c:416
#: plug-ins/common/psd.c:170
7
plug-ins/common/sunras.c:443
#: plug-ins/common/psd.c:170
8
plug-ins/common/sunras.c:443
#: plug-ins/common/tga.c:430 plug-ins/common/tiff.c:440
#: plug-ins/common/xbm.c:675 plug-ins/common/xpm.c:326
#: plug-ins/common/xwd.c:4
57
plug-ins/faxg3/faxg3.c:191
#: plug-ins/common/xwd.c:4
48
plug-ins/faxg3/faxg3.c:191
#: plug-ins/gfli/gfli.c:471 plug-ins/sgi/sgi.c:331 plug-ins/sgi/sgi.c:333
#: plug-ins/xjt/xjt.c:3253
#, c-format
msgid "Loading %s:"
msgstr "ffne %s:"
#: plug-ins/bmp/bmpread.c:6
5
#: plug-ins/bmp/bmpread.c:6
6
#, c-format
msgid "%s: can't open \"%s\"\n"
msgstr "%s: kann \"%s\" nicht ffnen\n"
#: plug-ins/bmp/bmpread.c:7
3
#: plug-ins/bmp/bmpread.c:7
4
#, c-format
msgid "%s: not a valid BMP file %s\n"
msgstr "%s: keine gltige BMP-Datei %s\n"
#: plug-ins/bmp/bmpread.c:8
1
plug-ins/bmp/bmpread.c:99
#: plug-ins/bmp/bmpread.c:1
2
2
#: plug-ins/bmp/bmpread.c:8
2
plug-ins/bmp/bmpread.c:99
#: plug-ins/bmp/bmpread.c:1
09 plug-ins/bmp/bmpread.c:13
2
#, c-format
msgid "%s: error reading BMP file header\n"
msgstr "%s: Fehler beim Lesen des BMP-headers\n"
#: plug-ins/bmp/bmpread.c:1
4
5
#: plug-ins/bmp/bmpread.c:1
5
5
#, c-format
msgid "%s: too many colors: %u\n"
msgstr "%s: zu viele Farben: %u\n"
#: plug-ins/bmp/bmpread.c:2
3
5
#: plug-ins/bmp/bmpread.c:2
4
5
#, c-format
msgid "%s: bad colormap\n"
msgstr "%s: fehlerhafte Palette\n"
#. Create an indexed-alpha layer to hold the image...
#: plug-ins/bmp/bmpread.c:2
8
8 plug-ins/bmp/bmpread.c:
29
7
#: plug-ins/bmp/bmpread.c:3
0
4 plug-ins/common/CEL.c:306
#: plug-ins/bmp/bmpread.c:2
9
8 plug-ins/bmp/bmpread.c:
30
7
#: plug-ins/bmp/bmpread.c:3
1
4 plug-ins/common/CEL.c:306
#: plug-ins/common/blinds.c:399 plug-ins/common/compose.c:545
#: plug-ins/common/decompose.c:446 plug-ins/common/film.c:1007
#: plug-ins/common/gbr.c:346 plug-ins/common/gifload.c:848
...
...
@@ -1494,14 +1491,14 @@ msgstr "%s: fehlerhafte Palette\n"
#: plug-ins/common/pat.c:306 plug-ins/common/pcx.c:349
#: plug-ins/common/pcx.c:355 plug-ins/common/pix.c:373
#: plug-ins/common/png.c:545 plug-ins/common/pnm.c:504
#: plug-ins/common/psd.c:208
8
plug-ins/common/smooth_palette.c:237
#: plug-ins/common/psd.c:208
9
plug-ins/common/smooth_palette.c:237
#: plug-ins/common/sunras.c:921 plug-ins/common/tga.c:1015
#: plug-ins/common/tiff.c:650 plug-ins/common/tile.c:264
#: plug-ins/common/winclipboard.c:513 plug-ins/common/wmf.c:2358
#: plug-ins/common/xbm.c:811 plug-ins/faxg3/faxg3.c:443
#: plug-ins/fits/fits.c:522 plug-ins/gfig/gfig.c:284
8
#: plug-ins/gfig/gfig.c:317
6
plug-ins/sgi/sgi.c:379 plug-ins/twain/twain.c:72
3
#: plug-ins/winsnap/winsnap.c:12
01
#: plug-ins/fits/fits.c:522 plug-ins/gfig/gfig.c:284
7
#: plug-ins/gfig/gfig.c:317
5
plug-ins/sgi/sgi.c:379 plug-ins/twain/twain.c:72
2
#: plug-ins/winsnap/winsnap.c:12
42
msgid "Background"
msgstr "Hintergrund"
...
...
@@ -1519,13 +1516,13 @@ msgstr "kann %s nicht
#: plug-ins/common/gbr.c:390 plug-ins/common/gif.c:937
#: plug-ins/common/gpb.c:785 plug-ins/common/gpb.c:825
#: plug-ins/common/gtm.c:248 plug-ins/common/hrz.c:478
#: plug-ins/common/jpeg.c:119
4
plug-ins/common/pat.c:345
#: plug-ins/common/jpeg.c:119
6
plug-ins/common/pat.c:345
#: plug-ins/common/pcx.c:564 plug-ins/common/pix.c:535
#: plug-ins/common/png.c:721 plug-ins/common/png.c:723
#: plug-ins/common/pnm.c:788 plug-ins/common/ps.c:
842
#: plug-ins/common/pnm.c:788 plug-ins/common/ps.c:
944
#: plug-ins/common/sunras.c:526 plug-ins/common/tga.c:1197
#: plug-ins/common/tiff.c:1224 plug-ins/common/xbm.c:959
#: plug-ins/common/xpm.c:643 plug-ins/common/xwd.c:5
61
#: plug-ins/common/xpm.c:643 plug-ins/common/xwd.c:5
52
#: plug-ins/fits/fits.c:473 plug-ins/gfli/gfli.c:691 plug-ins/sgi/sgi.c:549
#: plug-ins/sgi/sgi.c:551 plug-ins/xjt/xjt.c:1635
#, c-format
...
...
@@ -2125,7 +2122,7 @@ msgstr "Sichtbare Ebenen anordnen"
#: plug-ins/common/emboss.c:572 plug-ins/common/engrave.c:246
#: plug-ins/common/gauss_iir.c:364 plug-ins/common/gauss_rle.c:361
#: plug-ins/common/glasstile.c:249 plug-ins/common/illusion.c:329
#: plug-ins/common/jpeg.c:165
5
plug-ins/common/lic.c:1089
#: plug-ins/common/jpeg.c:165
7
plug-ins/common/lic.c:1089
#: plug-ins/common/max_rgb.c:277 plug-ins/common/nlfilt.c:400
#: plug-ins/common/noisify.c:345 plug-ins/common/nova.c:376
#: plug-ins/common/oilify.c:474 plug-ins/common/pixelize.c:301
...
...
@@ -2157,7 +2154,7 @@ msgid "Fill (right to left)"
msgstr "Fllen (von rechts nach links)"
#: plug-ins/common/align_layers.c:455 plug-ins/common/align_layers.c:488
#: plug-ins/gfig/gfig.c:339
6
#: plug-ins/gfig/gfig.c:339
5
msgid "Snap to Grid"
msgstr "Am Gitter ausrichten"
...
...
@@ -2170,7 +2167,7 @@ msgid "Left Edge"
msgstr "Linker Rand"
#: plug-ins/common/align_layers.c:468 plug-ins/common/align_layers.c:501
#: plug-ins/gap/gap_mov_dialog.c:263 plug-ins/gflare/gflare.c:286
2
#: plug-ins/gap/gap_mov_dialog.c:263 plug-ins/gflare/gflare.c:286
9
msgid "Center"
msgstr "Mitte"
...
...
@@ -2229,7 +2226,7 @@ msgstr "Animation abspielen: "
#: plug-ins/dbbrowser/dbbrowser_utils.c:174
#: plug-ins/gap/gap_navigator_dialog.c:2852
#: plug-ins/gdyntext/charmap_window.c:140 plug-ins/gdyntext/gdyntext_ui.c:518
#: plug-ins/gfig/gfig.c:196
7
plug-ins/gfig/gfig.c:202
7
#: plug-ins/gfig/gfig.c:196
6
plug-ins/gfig/gfig.c:202
6
#: plug-ins/helpbrowser/helpbrowser.c:790
#: plug-ins/ifscompose/ifscompose.c:1249 plug-ins/imagemap/imap_menu.c:227
msgid "Close"
...
...
@@ -2308,11 +2305,11 @@ msgstr "Mache Umgebung transparent"
msgid "Lens Refraction Index:"
msgstr "Brechungsindex der Linse:"
#: plug-ins/common/autocrop.c:
6
7
#: plug-ins/common/autocrop.c:7
1
msgid "
<Image>
/Image/Transforms/Autocrop"
msgstr "
<Image>
/Image/Transformationen/AutoZuschneiden"
#: plug-ins/common/autocrop.c:1
0
5
#: plug-ins/common/autocrop.c:1
1
5
msgid "Cropping..."
msgstr "Schneide Bild zu..."
...
...
@@ -2351,7 +2348,7 @@ msgid "Vertical"
msgstr "Vertikal"
#: plug-ins/common/blinds.c:406 plug-ins/common/fractaltrace.c:785
#: plug-ins/common/papertile.c:378 plug-ins/gfig/gfig.c:284
7
#: plug-ins/common/papertile.c:378 plug-ins/gfig/gfig.c:284
6
#: plug-ins/gimpressionist/general.c:240
msgid "Transparent"
msgstr "Transparent"
...
...
@@ -2371,7 +2368,7 @@ msgstr "<Image>/Filter/Weichzeichnen/Weichzeichnen..."
#: plug-ins/common/blur.c:657 plug-ins/common/plasma.c:324
#: plug-ins/common/randomize.c:745 plug-ins/common/snoise.c:556
#: plug-ins/gflare/gflare.c:410
0
plug-ins/sinus/sinus.c:862
#: plug-ins/gflare/gflare.c:410
7
plug-ins/sinus/sinus.c:862
msgid "Random Seed:"
msgstr "Zufllige Init-Zahl:"
...
...
@@ -2453,7 +2450,7 @@ msgstr "Y-Versatz:"
msgid "Waterlevel:"
msgstr "Wasserhhe:"
#: plug-ins/common/bz2.c:26
8
plug-ins/common/bz2.c:37
2
#: plug-ins/common/bz2.c:26
9
plug-ins/common/bz2.c:37
3
msgid "bz2: can't open bzip2ed file without a sensible extension\n"
msgstr ""
"bz2: Kann bzip2-gepackte Datei nicht ffnen, wenn sie sinnvolle\n"
...
...
@@ -2507,8 +2504,8 @@ msgstr "F
msgid "Colorify"
msgstr "Einfrben"
#: plug-ins/common/colorify.c:344 plug-ins/common/colortoalpha.c:4
29
#: plug-ins/common/ps.c:2
370
plug-ins/common/xpm.c:431
#: plug-ins/common/colorify.c:344 plug-ins/common/colortoalpha.c:4
34
#: plug-ins/common/ps.c:2
562
plug-ins/common/xpm.c:431
#: plug-ins/gap/gap_mov_dialog.c:251 plug-ins/gimpressionist/color.c:51