applied gimp-simon-20000403-0 provided by Simon Budig that

makes those scripts use SF-ADJUSTMENTS instead of SF-VALUES
and fixes a few bugs.


--Sven
This commit is contained in:
Sven Neumann 2000-04-03 11:08:20 +00:00
parent 5e088c445b
commit 604de61a3f
21 changed files with 165 additions and 137 deletions

View File

@ -1,3 +1,23 @@
2000-04-03 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/scripts/3d-outline.scm
* plug-ins/script-fu/scripts/camo.scm
* plug-ins/script-fu/scripts/chip-away.scm
* plug-ins/script-fu/scripts/coffee.scm
* plug-ins/script-fu/scripts/color-cycling.scm
* plug-ins/script-fu/scripts/hsv-graph.scm
* plug-ins/script-fu/scripts/i26-gunya2.scm
* plug-ins/script-fu/scripts/land.scm
* plug-ins/script-fu/scripts/mkbrush.scm
* plug-ins/script-fu/scripts/news-text.scm
* plug-ins/script-fu/scripts/pupi-button.scm
* plug-ins/script-fu/scripts/select_to_brush.scm
* plug-ins/script-fu/scripts/sphere.scm
* plug-ins/script-fu/scripts/spinning_globe.scm:
applied gimp-simon-20000403-0, a patch by Simon Budig that makes
those scripts use SF-ADJUSTMENTS instead of SF-VALUES and fixes a
few bugs.
2000-04-03 Michael Natterer <mitch@gimp.org>
* app/gimpdnd.[ch]
@ -40,13 +60,14 @@ Sun Apr 2 15:59:25 PDT 2000 Manish Singh <yosh@gimp.org>
menu so the menu gets smaller
2000-04-02 Nick Lamb <njl195@zepler.org.uk>
* plug-ins/common/png.c
* plug-ins/common/png.c:
Brown paper bag version, 1.2.1 -- that'll teach me to hurry
the testing process. This should fix it all image types.
2000-04-02 Garry R. Osgood <gosgood@idt.net>
* gimp/app/colormap_dialog.i.c
* gimp/app/colormap_dialog.i.c:
As Mr. Lamb, report originator noted, an easy
fix. in ipal_set_image() line 688
Reorganized the initialization of the

View File

@ -89,9 +89,9 @@
SF-STRING _"Text" "The Gimp"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-VALUE _"Outline Blur Radius" "5"
SF-VALUE _"Shadow Blur Radius" "10"
SF-VALUE _"Bumpmap (Alpha Layer) Blur Radius" "5"
SF-ADJUSTMENT _"Outline Blur Radius" '(5 1 200 1 10 0 1)
SF-ADJUSTMENT _"Shadow Blur Radius" '(10 1 200 1 10 0 1)
SF-ADJUSTMENT _"Bumpmap (Alpha Layer) Blur Radius" '(5 1 200 1 10 0 1)
SF-TOGGLE _"Default Bumpmap Settings" TRUE
SF-VALUE _"Shadow X Offset" "0"
SF-VALUE _"Shadow Y Offset" "0")
SF-ADJUSTMENT _"Shadow X Offset" '(0 0 200 1 5 0 1)
SF-ADJUSTMENT _"Shadow Y Offset" '(0 0 200 1 5 0 1))

View File

@ -90,7 +90,7 @@
"28th April 1998"
"Chris Gutteridge / ECS @ University of Southampton, England"
""
SF-VALUE _"Image Size" "256"
SF-ADJUSTMENT _"Image Size" '(256 10 1000 1 10 0 1)
SF-ADJUSTMENT _"Granularity (0 - 15)" '(7 0 15 1 1 0 0)
SF-COLOR _"Color 1" '(33 100 58)
SF-COLOR _"Color 2" '(170 170 60)

View File

@ -122,8 +122,8 @@
SF-STRING _"Text" "Sloth"
SF-FONT _"Font" "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(200 2 1000 1 10 0 1)
SF-VALUE _"Chip Amount" "30"
SF-VALUE _"Blur Amount" "3"
SF-ADJUSTMENT _"Chip Amount" '(30 0 250 1 10 0 1)
SF-ADJUSTMENT _"Blur Amount" '(3 1 100 1 10 1 0)
SF-TOGGLE _"Invert" FALSE
SF-TOGGLE _"Drop Shadow" TRUE
SF-TOGGLE _"Keep Bump Layer" FALSE

View File

@ -66,6 +66,6 @@
"RGB*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE _"Stains" "3"
SF-ADJUSTMENT _"Stains" '(3 1 10 1 1 0 0)
SF-TOGGLE _"Darken Only\n(Better, but only for Images with alot of White)" TRUE
)

View File

@ -129,6 +129,7 @@
(redfrequencyshift (/ (- endredfrequency startredfrequency) num-frames))
(greenfrequencyshift (/ (- endgreenfrequency startgreenfrequency) num-frames))
(bluefrequencyshift (/ (- endbluefrequency startbluefrequency) num-frames))
(image (car (gimp-channel-ops-duplicate img))))
(gimp-image-undo-disable image)
@ -169,6 +170,9 @@
redinvert2
greeninvert2
blueinvert2)
; Huh ? way too much arguments???
; Why does no STATUS_CALLING_ERROR occur?
(set! remaining-frames (- remaining-frames 1))
(set! redphase (+ redphase redphaseshift))
@ -218,31 +222,31 @@
"RGB*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE _"Number of Frames" "10"
SF-VALUE _"Start: Red Intensity Factor (max. 128)" "128"
SF-VALUE _"Start: Green Intensity Factor (max. 128)" "128"
SF-VALUE _"Start: Blue Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Red Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Green Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Blue Intensity Factor (max. 128)" "128"
SF-VALUE _"Red Color Mode (sin:0/cos:1/none:2)" "0"
SF-VALUE _"Green Color Mode (sin:0/cos:1/none:2)" "0"
SF-VALUE _"Blue Color Mode (sin:0/cos:1/none:2)" "0"
SF-ADJUSTMENT _"Number of Frames" '(10 2 100 1 10 0 1)
SF-ADJUSTMENT _"Start: Red Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"Start: Green Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"Start: Blue Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"End: Red Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"End: Green Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"End: Blue Intensity Factor" '(128 0 128 1 10 0 1)
SF-ADJUSTMENT _"Red Color Mode (sin:0/cos:1/none:2)" '(0 0 2 1 1 0 1)
SF-ADJUSTMENT _"Green Color Mode (sin:0/cos:1/none:2)" '(0 0 2 1 1 0 1)
SF-ADJUSTMENT _"Blue Color Mode (sin:0/cos:1/none:2)" '(0 0 2 1 1 0 1)
SF-TOGGLE _"Red Inversion before Transformation" FALSE
SF-TOGGLE _"Green Inversion before Transformation" FALSE
SF-TOGGLE _"Blue Inversion before Transformation" FALSE
SF-VALUE _"Start: Red Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Green Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Blue Phase Displacement (RAD)" "0"
SF-VALUE _"End: Red Phase Displacement (RAD)" "0"
SF-VALUE _"End: Green Phase Displacement (RAD)" "0"
SF-VALUE _"End: Blue Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Red Frequency (> 0)" "1"
SF-VALUE _"Start: Green Frequency (> 0)" "1"
SF-VALUE _"Start: Blue Frequency (> 0)" "1"
SF-VALUE _"End: Red Frequency (> 0)" "1"
SF-VALUE _"End: Green Frequency (> 0)" "1"
SF-VALUE _"End: Blue Frequency (> 0)" "1"
SF-ADJUSTMENT _"Start: Red Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"Start: Green Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"Start: Blue Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"End: Red Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"End: Green Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"End: Blue Phase Displacement (RAD)" '(0 0 6.28 0.05 1 2 1)
SF-ADJUSTMENT _"Start: Red Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-ADJUSTMENT _"Start: Green Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-ADJUSTMENT _"Start: Blue Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-ADJUSTMENT _"End: Red Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-ADJUSTMENT _"End: Green Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-ADJUSTMENT _"End: Blue Frequency (> 0)" '(1 0.01 5 0.05 1 2 1)
SF-TOGGLE _"Red Inversion after Transformation" FALSE
SF-TOGGLE _"Green Inversion after Transformation" FALSE
SF-TOGGLE _"Blue Inversion after Transformation" FALSE)

View File

@ -280,10 +280,10 @@
(gimp-brushes-set-opacity 70)
(gimp-display-new gimg)
(while (< index limit)
(set! rgb (car (gimp-color-picker drawable
(set! rgb (car (gimp-color-picker img drawable
(+ beg-x (* x-len (/ index limit)))
(+ beg-y (* y-len (/ index limit)))
TRUE FALSE)))
TRUE FALSE 0 0)))
(fill-color-band gimg clayer index scale x-base 40 rgb)
(rgb-to-hsv rgb hsv)
(plot-hsv gimg hsv-layer index scale x-base y-base hsv)

View File

@ -80,6 +80,7 @@
(gimp-brushes-set-brush old-brush)
(gimp-brushes-set-paint-mode old-paint-mode)
(gimp-image-set-active-layer img dist-text-layer)
(gimp-selection-none img)
(gimp-image-undo-enable img)
(gimp-image-delete distortion-img)
(gimp-display-new img)))
@ -92,11 +93,11 @@
"Shuji Narazaki"
"1997"
""
SF-STRING _"Text" "The GIMP"
SF-COLOR _"Text Color" '(255 0 0)
SF-COLOR _"Frame Color" '(0 34 255)
SF-FONT _"Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-STRING _"Text" "The GIMP"
SF-COLOR _"Text Color" '(255 0 0)
SF-COLOR _"Frame Color" '(0 34 255)
SF-FONT _"Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE _"Frame Size" "2")
SF-ADJUSTMENT _"Frame Size" '(2 1 20 1 5 0 1))
;;; i26-gunya2.scm ends here

View File

@ -58,7 +58,7 @@
;(plug-in-c-astretch 1 img layer-two)
; uncomment the next lie if you wnat to keep a selrction of the "land"
; uncomment the next line if you want to keep a selection of the "land"
(gimp-selection-none img)
(gimp-display-new img)
@ -72,12 +72,12 @@
"Adrian Likins"
"1997"
""
SF-VALUE _"Image Width" "256"
SF-VALUE _"Image Height" "256"
SF-VALUE _"Random Seed" "32"
SF-VALUE _"Detail Level" "4"
SF-VALUE _"Land Height" "60"
SF-VALUE _"Sea Septh" "4"
SF-VALUE _"Scale X" "4.0"
SF-VALUE _"Scale Y" "4.0"
SF-GRADIENT _"Gradient" "Land_1")
SF-ADJUSTMENT _"Image Width" '(256 10 1000 1 10 0 1)
SF-ADJUSTMENT _"Image Height" '(256 10 1000 1 10 0 1)
SF-ADJUSTMENT _"Random Seed" '(32 0 15000000 1 10 0 1)
SF-ADJUSTMENT _"Detail Level" '(4 1 15 1 5 0 0)
SF-ADJUSTMENT _"Land Height" '(60 1 65 1 10 0 1)
SF-ADJUSTMENT _"Land Height" '(4 1 65 1 10 0 1)
SF-ADJUSTMENT _"Scale X" '(4 0.1 16 1 5 0.1 0)
SF-ADJUSTMENT _"Scale Y" '(4 0.1 16 1 5 0.1 0)
SF-GRADIENT _"Gradient" "Land_1")

View File

@ -83,10 +83,10 @@
"Seth Burgess"
"1997"
""
SF-STRING _"Description" "Rectangle"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Spacing" "20"
SF-STRING _"Description" "Rectangle"
SF-ADJUSTMENT _"Width" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Height" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Spacing" '(25 1 100 1 10 1 0)
)
@ -136,7 +136,7 @@
(gimp-rect-select img 0 0 width height REPLACE FALSE 0))
)
(gimp-edit-fill drawable BG-IMAGE-FILL)
(file-gbr-save 1 img drawable filename "" 25 desc)
(file-gbr-save 1 img drawable filename "" spacing desc)
(gimp-brushes-refresh)
(gimp-brushes-set-brush desc)
@ -161,11 +161,11 @@
"Seth Burgess"
"1997"
""
SF-STRING _"Description" "Rectangle"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Feathering" "4"
SF-VALUE _"Spacing" "25"
SF-STRING _"Description" "Rectangle"
SF-ADJUSTMENT _"Width" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Height" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Feathering" '(4 1 100 1 10 0 1)
SF-ADJUSTMENT _"Spacing" '(25 1 100 1 10 1 0)
)
(define (script-fu-make-brush-elliptical description width height spacing)
@ -233,9 +233,9 @@
"1997"
""
SF-STRING _"Description" "Ellipse"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Spacing" "25"
SF-ADJUSTMENT _"Width" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Height" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Spacing" '(25 1 100 1 10 1 0)
)
@ -313,8 +313,8 @@
"1997"
""
SF-STRING _"Description" "Ellipse"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Feathering" "4"
SF-VALUE _"Spacing" "25"
SF-ADJUSTMENT _"Width" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Height" '(20 1 200 1 10 0 1)
SF-ADJUSTMENT _"Feathering" '(4 1 100 1 10 0 1)
SF-ADJUSTMENT _"Spacing" '(25 1 100 1 10 1 0)
)

View File

@ -19,13 +19,13 @@
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
(define (script-fu-newsprint-text string font font-size cell-size density text-color bg-color)
(define (script-fu-newsprint-text string font font-size cell-size density blur-radius text-color bg-color)
(let* ((text-ext (gimp-text-get-extents-fontname string font-size PIXELS font))
(wid (+ (car text-ext) 20))
(hi (+ (nth 1 text-ext) 20))
(img (car (gimp-image-new wid hi RGB)))
(bg-layer (car (gimp-layer-new img wid hi RGB_IMAGE "Background" 100 NORMAL)))
(text-layer (car (gimp-layer-new img wid hi RGBA_IMAGE "Text layer" 100 NORMAL)))
(width (+ (car text-ext) 20 blur-radius))
(height (+ (nth 1 text-ext) 20 blur-radius))
(img (car (gimp-image-new width height RGB)))
(bg-layer (car (gimp-layer-new img width height RGB_IMAGE "Background" 100 NORMAL)))
(text-layer (car (gimp-layer-new img width height RGBA_IMAGE "Text layer" 100 NORMAL)))
(text-mask 0)
(grey (/ (* density 255) 100))
(old-fg (car (gimp-palette-get-foreground)))
@ -40,7 +40,7 @@
(gimp-edit-clear text-layer)
(gimp-palette-set-foreground text-color)
(gimp-floating-sel-anchor (car (gimp-text-fontname img text-layer 10 10 string 0 TRUE font-size PIXELS font)))
(gimp-floating-sel-anchor (car (gimp-text-fontname img text-layer (/ (+ 20 blur-radius) 2) (/ (+ 20 blur-radius) 2) string 0 TRUE font-size PIXELS font)))
(set! text-mask (car (gimp-layer-create-mask text-layer ALPHA-MASK)))
(gimp-image-add-layer-mask img text-layer text-mask)
@ -48,11 +48,15 @@
(gimp-selection-layer-alpha text-layer)
(gimp-palette-set-background (list grey grey grey))
(gimp-edit-fill text-mask BG-IMAGE-FILL)
(gimp-selection-clear img)
(if (> blur-radius 0)
(plug-in-gauss-iir 1 img text-mask blur-radius 1 1)
)
(plug-in-newsprint 1 img text-mask cell-size 0 0 45.0 3 45.0 0 45.0 0 45.0 0 3)
(gimp-edit-fill text-layer FG-IMAGE-FILL)
(gimp-image-remove-layer-mask img text-layer APPLY)
; (gimp-selection-clear img)
(gimp-palette-set-foreground old-fg)
(gimp-palette-set-background old-bg)
@ -61,8 +65,8 @@
(gimp-display-new img)))
(script-fu-register "script-fu-newsprint-text"
_"<Toolbox>/Xtns/Script-Fu/Logos/Newsprint Text..."
"Apply a screen to text"
_"<Toolbox>/Xtns/Script-Fu/Logos/Newsprint Text..."
"Apply a screen to text"
"Austin Donnelly"
"Austin Donnelly"
"1998"
@ -70,7 +74,8 @@
SF-STRING _"Text" "Newsprint"
SF-FONT _"Font" "-*-Helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE _"Cell Size (pixels)" "7"
SF-ADJUSTMENT _"Cell Size (pixels)" '(7 1 100 1 10 0 1)
SF-ADJUSTMENT _"Density (%)" '(60 0 100 1 10 0 0)
SF-ADJUSTMENT _"Blur Radius" '(0 0 100 1 5 0 0)
SF-COLOR _"Text Color" '(0 0 0)
SF-COLOR _"Background Color" '(255 255 255))

View File

@ -205,10 +205,10 @@
SF-COLOR _"Upper Color (Active)" '(255 255 0)
SF-COLOR _"Lower Color (Active)" '(128 108 0)
SF-COLOR _"Text Color (Active)" '(0 0 192)
SF-VALUE _"Padding X" "4"
SF-VALUE _"Padding Y" "4"
SF-VALUE _"Bevel Width" "2"
SF-VALUE _"Round Ratio" "1"
SF-ADJUSTMENT _"Padding X" '(4 0 100 1 10 0 1)
SF-ADJUSTMENT _"Padding Y" '(4 0 100 1 10 0 1)
SF-ADJUSTMENT _"Bevel Width" '(2 0 100 1 10 0 1)
SF-ADJUSTMENT _"Round Ratio" '(1 0.05 20 0.05 1 2 1)
SF-TOGGLE _"Not Pressed" TRUE
SF-TOGGLE _"Not Pressed (Active)" TRUE
SF-TOGGLE _"Pressed" TRUE)

View File

@ -1,6 +1,3 @@
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
@ -103,7 +100,6 @@
; SF-STRING "Home directory" "/home/aklikins/"
SF-STRING _"Description" "Brush"
SF-STRING _"Filename" "SlothBrush"
; SF-VALUE "Spacing" "25")
SF-ADJUSTMENT _"Spacing" '(25 0 1000 1 1 1 0))

View File

@ -1,6 +1,3 @@
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
@ -103,7 +100,6 @@
; SF-STRING "Home directory" "/home/aklikins/"
SF-STRING _"Description" "Brush"
SF-STRING _"Filename" "SlothBrush"
; SF-VALUE "Spacing" "25")
SF-ADJUSTMENT _"Spacing" '(25 0 1000 1 1 1 0))

View File

@ -56,8 +56,8 @@
"Spencer Kimball"
"1996"
""
SF-VALUE _"Radius (pixels)" "100"
SF-VALUE _"Lighting (degrees)" "45"
SF-ADJUSTMENT _"Radius (pixels)" '(100 5 500 1 10 0 1)
SF-ADJUSTMENT _"Lighting (degrees)" '(45 0 360 1 10 0 0)
SF-TOGGLE _"Shadow" TRUE
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Sphere Color" '(255 0 0))

View File

@ -109,11 +109,11 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE _"Frames" "10"
; SF-ADJUSTMENT "Frames:" '(10 1 256 1 10 0 1)
; SF-VALUE _"Frames" "10"
SF-ADJUSTMENT "Frames:" '(10 1 360 1 10 0 1)
SF-TOGGLE _"Turn from Left to Right" FALSE
SF-TOGGLE _"Transparent Background" TRUE
SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
; SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 2 256 1 10 0 1)
; SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 0 256 1 10 0 1)
SF-TOGGLE _"Work on Copy" TRUE
)

View File

@ -109,11 +109,11 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE _"Frames" "10"
; SF-ADJUSTMENT "Frames:" '(10 1 256 1 10 0 1)
; SF-VALUE _"Frames" "10"
SF-ADJUSTMENT "Frames:" '(10 1 360 1 10 0 1)
SF-TOGGLE _"Turn from Left to Right" FALSE
SF-TOGGLE _"Transparent Background" TRUE
SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
; SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 2 256 1 10 0 1)
; SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 0 256 1 10 0 1)
SF-TOGGLE _"Work on Copy" TRUE
)

View File

@ -1,3 +1,7 @@
2000-04-03 Sven Neumann <sven@gimp.org>
* de.po: updates/corrections
2000-04-03 Fellmann Joaquim <joaquim@hrnet.fr>
* fr.po : Updated French translation

View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.1.18\n"
"POT-Creation-Date: 2000-04-02 23:33+0200\n"
"PO-Revision-Date: 2000-04-02 23:45+02:00\n"
"PO-Revision-Date: 2000-04-03 11:46+02:00\n"
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -2224,7 +2224,7 @@ msgstr "Benutze die unterste (unsichtbare) Ebene als Basis"
#: plug-ins/common/align_layers.c:531
msgid "Grid Size:"
msgstr "Gitter Abstand:"
msgstr "Gitter-Abstand:"
#: plug-ins/common/animationplay.c:276
msgid "<Image>/Filters/Animation/Animation Playback..."
@ -2716,15 +2716,15 @@ msgstr "Abschneiden"
#: plug-ins/common/convmatrix.c:194
msgid "<Image>/Filters/Generic/Convolution Matrix..."
msgstr "<Image>/Filter/Generisch/Faltungs-Matrix..."
msgstr "<Image>/Filter/Generisch/Faltungsmatrix..."
#: plug-ins/common/convmatrix.c:267
msgid "Applying convolution"
msgstr "Wende Faltungs-Matrix an"
msgstr "Wende Faltungsmatrix an"
#: plug-ins/common/convmatrix.c:805
msgid "Convolution Matrix"
msgstr "Faltungs-Matrix"
msgstr "Faltungsmatrix"
#: plug-ins/common/convmatrix.c:831
msgid "Matrix"
@ -3544,7 +3544,7 @@ msgstr "Mandelbrot Parameter"
#: plug-ins/common/gauss_iir.c:163
msgid "<Image>/Filters/Blur/Gaussian Blur (IIR)..."
msgstr "<Image>/Filter/Weichzeichnen/Gaussscher Weichzeichner (IIR)..."
msgstr "<Image>/Filter/Weichzeichnen/Gaußscher Weichzeichner (IIR)..."
#: plug-ins/common/gauss_iir.c:236
msgid "gauss_iir: you must specify either horizontal or vertical (or both)"
@ -3555,7 +3555,7 @@ msgstr ""
#: plug-ins/common/gauss_iir.c:286 plug-ins/common/gauss_iir.c:347
#: plug-ins/common/gauss_iir.c:437
msgid "IIR Gaussian Blur"
msgstr "IIR Gaussscher Weichzeichner"
msgstr "IIR Gaußscher Weichzeichner"
#: plug-ins/common/gauss_iir.c:373 plug-ins/common/gauss_rle.c:370
msgid "Blur Horizontally"
@ -3587,7 +3587,7 @@ msgstr "Vertikal:"
#: plug-ins/common/gauss_rle.c:160
msgid "<Image>/Filters/Blur/Gaussian Blur (RLE)..."
msgstr "<Image>/Filter/Weichzeichnen/Gaussscher Weichzeichner (RLE)..."
msgstr "<Image>/Filter/Weichzeichnen/Gaußscher Weichzeichner (RLE)..."
#: plug-ins/common/gauss_rle.c:232
msgid "gauss_rle: you must specify either horizontal or vertical (or both)"
@ -3598,7 +3598,7 @@ msgstr ""
#: plug-ins/common/gauss_rle.c:283 plug-ins/common/gauss_rle.c:344
#: plug-ins/common/gauss_rle.c:434
msgid "RLE Gaussian Blur"
msgstr "RLE Gaussscher Weichzeichner"
msgstr "RLE Gaußscher Weichzeichner"
#: plug-ins/common/gbr.c:402
#, c-format
@ -5547,7 +5547,7 @@ msgstr "<Image>/Filter/Weichzeichnen/Selektiver Weichzeichner..."
#: plug-ins/common/sel_gauss.c:198 plug-ins/common/sel_gauss.c:241
msgid "Selective Gaussian Blur"
msgstr "Selektiver Gauss-Weichzeichner"
msgstr "Selektiver Gaußscher Weichzeichner"
#: plug-ins/common/sel_gauss.c:215
msgid "sel_gauss: Cannot operate on indexed color images"
@ -10087,7 +10087,7 @@ msgstr "Isometrisch"
#: plug-ins/gfig/gfig.c:3300
msgid "Grid Type:"
msgstr "Gitter Typ:"
msgstr "Gittertyp:"
#: plug-ins/gfig/gfig.c:3311
msgid "Darker"
@ -10103,7 +10103,7 @@ msgstr "Sehr Dunkel"
#: plug-ins/gfig/gfig.c:3317
msgid "Grid Color:"
msgstr "Gitter Farbe:"
msgstr "Gitterfarbe:"
#: plug-ins/gfig/gfig.c:3321
msgid "Max Undo:"
@ -10131,7 +10131,7 @@ msgstr "Magnetisches Gitter"
#: plug-ins/gfig/gfig.c:3429
msgid "Grid Spacing:"
msgstr "Gitter Abstand:"
msgstr "Gitter-Abstand:"
#: plug-ins/gfig/gfig.c:3494
msgid "Object"
@ -11721,7 +11721,7 @@ msgstr "Fehler"
#: plug-ins/imagemap/imap_grid.c:143
msgid "Grid Settings"
msgstr "Gitter Einstellungen"
msgstr "Gittereinstellungen"
#: plug-ins/imagemap/imap_grid.c:154
msgid "Snap-To Grid Enabled"
@ -11749,7 +11749,7 @@ msgstr "Feinheit des Gitters"
#: plug-ins/imagemap/imap_grid.c:213
msgid "Grid Offset"
msgstr "Gitter Versatz"
msgstr "Gitterversatz"
#: plug-ins/imagemap/imap_grid.c:224
msgid "pixels from left"

View File

@ -1,3 +1,7 @@
2000-04-03 Sven Neumann <sven@gimp.org>
* de.po: updates/corrections
2000-04-03 Fellmann Joaquim <joaquim@hrnet.fr>
* fr.po : Updated French translation

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.1.18\n"
"POT-Creation-Date: 2000-04-02 13:35+0200\n"
"PO-Revision-Date: 2000-04-02 22:44+02:00\n"
"POT-Creation-Date: 2000-04-03 13:01+0200\n"
"PO-Revision-Date: 2000-04-03 13:03+02:00\n"
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -89,7 +89,7 @@ msgstr "Skript-Fu Musterauswahl"
#: plug-ins/script-fu/script-fu-scripts.c:1313
msgid "Script-Fu Gradient Selection"
msgstr "Skript-Fu Gradientenauswahl"
msgstr "Skript-Fu Farbverlaufsauswahl"
#: plug-ins/script-fu/script-fu-scripts.c:1321
msgid "Script-Fu Brush Selection"
@ -183,23 +183,23 @@ msgstr "<Image>/Filters/Weichzeichnen/Kachelbarer Weichzeichner..."
#: plug-ins/script-fu/scripts/clothify.scm:1
msgid "<Image>/Script-Fu/Alchemy/Clothify..."
msgstr "<Image>/Skript-Fu/Alchemie/Stoffmalerei..."
msgstr "<Image>/Skript-Fu/Alchimie/Stoffmalerei..."
#: plug-ins/script-fu/scripts/erase-rows.scm:1
msgid "<Image>/Script-Fu/Alchemy/Erase every other Row..."
msgstr "<Image>/Skript-Fu/Alchemie/Jede zweite Zeile löschen..."
msgstr "<Image>/Skript-Fu/Alchimie/Jede zweite Zeile löschen..."
#: plug-ins/script-fu/scripts/predator.scm:1
msgid "<Image>/Script-Fu/Alchemy/Predator..."
msgstr "<Image>/Skript-Fu/Alchemie/Predator..."
msgstr "<Image>/Skript-Fu/Alchimie/Predator..."
#: plug-ins/script-fu/scripts/unsharp-mask.scm:1
msgid "<Image>/Script-Fu/Alchemy/Unsharp Mask..."
msgstr "<Image>/Skript-Fu/Alchemie/Unscharf maskieren..."
msgstr "<Image>/Skript-Fu/Alchimie/Unscharf maskieren..."
#: plug-ins/script-fu/scripts/weave.scm:1
msgid "<Image>/Script-Fu/Alchemy/Weave..."
msgstr "<Image>/Skript-Fu/Alchemie/Weben..."
msgstr "<Image>/Skript-Fu/Alchimie/Weben..."
#: plug-ins/script-fu/scripts/blend-anim.scm:1
msgid "<Image>/Script-Fu/Animators/Blend..."
@ -721,7 +721,7 @@ msgstr "HG Deckkraft"
#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm:7
#: plug-ins/script-fu/scripts/image-structure.scm:12
#: plug-ins/script-fu/scripts/neon-logo.scm:5
#: plug-ins/script-fu/scripts/news-text.scm:8
#: plug-ins/script-fu/scripts/news-text.scm:9
#: plug-ins/script-fu/scripts/speed-text.scm:7
#: plug-ins/script-fu/scripts/sphere.scm:5
#: plug-ins/script-fu/scripts/starburst-logo.scm:6
@ -805,6 +805,7 @@ msgid "Blur Horizontally"
msgstr "Horizontal weichzeichnen"
#: plug-ins/script-fu/scripts/drop-shadow.scm:4
#: plug-ins/script-fu/scripts/news-text.scm:7
#: plug-ins/script-fu/scripts/perspective-shadow.scm:5
#: plug-ins/script-fu/scripts/round-corners.scm:6
#: plug-ins/script-fu/scripts/swirltile.scm:5
@ -1054,7 +1055,7 @@ msgid "End: Blue Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:8
msgid "End: Blue Intensity Factor (max. 128)"
msgid "End: Blue Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:20
@ -1066,7 +1067,7 @@ msgid "End: Green Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:7
msgid "End: Green Intensity Factor (max. 128)"
msgid "End: Green Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:19
@ -1078,7 +1079,7 @@ msgid "End: Red Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:6
msgid "End: Red Intensity Factor (max. 128)"
msgid "End: Red Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:18
@ -1430,7 +1431,7 @@ msgstr ""
msgid "Keep Selection"
msgstr ""
#: plug-ins/script-fu/scripts/land.scm:6
#: plug-ins/script-fu/scripts/land.scm:6 plug-ins/script-fu/scripts/land.scm:7
msgid "Land Height"
msgstr "Land Höhe"
@ -1745,10 +1746,6 @@ msgstr "Skalierung X"
msgid "Scale Y"
msgstr "Skalierung Y"
#: plug-ins/script-fu/scripts/land.scm:7
msgid "Sea Septh"
msgstr ""
#: plug-ins/script-fu/scripts/lava.scm:2
msgid "Seed"
msgstr ""
@ -1880,7 +1877,7 @@ msgid "Start: Blue Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:5
msgid "Start: Blue Intensity Factor (max. 128)"
msgid "Start: Blue Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:17
@ -1892,7 +1889,7 @@ msgid "Start: Green Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:4
msgid "Start: Green Intensity Factor (max. 128)"
msgid "Start: Green Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:16
@ -1904,7 +1901,7 @@ msgid "Start: Red Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:3
msgid "Start: Red Intensity Factor (max. 128)"
msgid "Start: Red Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:15
@ -1939,7 +1936,7 @@ msgstr "Textfarbe (aktiv)"
#: plug-ins/script-fu/scripts/gimp-headers.scm:16
#: plug-ins/script-fu/scripts/gimp-labels.scm:17
#: plug-ins/script-fu/scripts/i26-gunya2.scm:3
#: plug-ins/script-fu/scripts/news-text.scm:7
#: plug-ins/script-fu/scripts/news-text.scm:8
#: plug-ins/script-fu/scripts/pupi-button.scm:7
#: plug-ins/script-fu/scripts/speed-text.scm:6
msgid "Text Color"
@ -2044,7 +2041,7 @@ msgstr "Pinsel benutzen"
#: plug-ins/script-fu/scripts/lava.scm:8
msgid "Use Current Gradient"
msgstr "Aktuellen Gradienten benutzen"
msgstr "Aktuellen Farbverlauf benutzen"
#: plug-ins/script-fu/scripts/fade-outline.scm:5
msgid "Use Growing Selection"