updated INSTALL removed color-cycling script applied gimp-simon-20000417-0

updated INSTALL
removed color-cycling script
applied gimp-simon-20000417-0


--Sven
This commit is contained in:
Sven Neumann 2000-04-18 12:09:47 +00:00
parent fca88457a8
commit 93e043e966
14 changed files with 82 additions and 406 deletions

View File

@ -1,3 +1,26 @@
2000-04-18 Sven Neumann <sven@gimp.org>
* INSTALL: we require gtk+-1.2.6 and we would like to have the
freefont package installed.
( This change is not gimp-cornwell-000415-0, since IMHO this patch
makes things worse. )
* plug-ins/script-fu/scripts/Makefile.am
* plug-ins/script-fu/scripts/color-cycling.scm: removed since it
didn't work at all and even after fixing it the effect wasn't
worth distributing it
* plug-ins/script-fu/scripts/3dTruchet.scm
* plug-ins/script-fu/scripts/addborder.scm
* plug-ins/script-fu/scripts/blended-logo.scm
* plug-ins/script-fu/scripts/comic-logo.scm
* plug-ins/script-fu/scripts/crystal-logo.scm
* plug-ins/script-fu/scripts/fade-outline.scm
* plug-ins/script-fu/scripts/fuzzyborder.scm
* plug-ins/script-fu/scripts/lava.scm:
applied gimp-simon-20000417-0, a patch by Simon Budig, which makes
more scripts use SF-ADJUSTMENT instead of SF-VALUE.
2000-04-18 Sven Neumann <sven@gimp.org>
* plug-ins/FractalExplorer/Dialogs.c: i18n fix

14
INSTALL
View File

@ -1,15 +1,19 @@
There are six basic steps to building and installing the
GIMP:
1. You need to have installed GTK version 1.2.1 or better
1. You need to have installed GTK version 1.2.6 or better. We strongly
recommend you use 1.2.7 or better.
2. You may want to install other third party libraries or programs that
are needed for some of the available plugins: TIFF, PNG, JPEG, MPEG,
perl, etc.
3. Configure the GIMP by running the `configure' script.
3. You may want to install the freefont package so you have the fonts
most scripts use by default.
Grab it from ftp://ftp.gimp.org/pub/gimp/fonts/
4. Configure the GIMP by running the `configure' script.
You may want to pass some options to it, see below.
4. Build the GIMP by running `make'.
5. Install the GIMP by running `make install' or `make install-strip'.
6. Optionally install the separate gimp-data-extras package.
5. Build the GIMP by running `make'.
6. Install the GIMP by running `make install' or `make install-strip'.
7. Optionally install the separate gimp-data-extras package.
Please make sure you don't have any old GTK, jpeg, etc. libraries lying
around on your system, otherwise configure will fail to find the new

View File

@ -163,12 +163,12 @@
"Adrian Likins"
"1997"
""
SF-VALUE _"Block Size" "64"
SF-VALUE _"Thickness" "12"
SF-ADJUSTMENT _"Block Size" '(64 5 1000 1 10 0 1)
SF-ADJUSTMENT _"Thickness" '(12 2 100 1 10 0 1)
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Start Blend" '(0 0 0)
SF-COLOR _"End Blend" '(255 255 255)
SF-TOGGLE _"Supersample" TRUE
SF-VALUE _"Number of X Tiles" "5"
SF-VALUE _"Number of Y Tiles" "5"
SF-ADJUSTMENT _"Number of X Tiles" '(5 1 1000 1 10 0 1)
SF-ADJUSTMENT _"Number of Y Tiles" '(5 1 1000 1 10 0 1)
)

View File

@ -36,7 +36,6 @@ scriptdata_DATA = \
circuit.scm \
clothify.scm \
coffee.scm \
color-cycling.scm \
comic-logo.scm \
coolmetal-logo.scm \
copy-visible.scm \

View File

@ -170,7 +170,8 @@
"RGB*"
SF-IMAGE "Input Image" 0
SF-DRAWABLE "Input Drawable" 0
SF-VALUE _"Border X Size" "12"
SF-VALUE _"Border Y Size" "12"
SF-ADJUSTMENT _"Border X Size" '(12 1 250 1 10 0 1)
SF-ADJUSTMENT _"Border Y Size" '(12 1 250 1 10 0 1)
SF-COLOR _"Border Color" '(38 31 207)
SF-VALUE _"Delta Value on Color" "25")
SF-ADJUSTMENT _"Delta Value on Color" '(25 1 255 1 10 0 1)
)

View File

@ -7,7 +7,8 @@
(define (scale size percent) (* size percent))
(define (script-fu-blended-logo blend-mode text size font bg-color text-color blend-fg blend-bg)
;(define (script-fu-blended-logo blend-mode text size font bg-color text-color blend-fg blend-bg)
(define (script-fu-blended-logo text size font bg-color text-color bg-gradient)
(let* ((img (car (gimp-image-new 256 256 RGB)))
(b-size (scale size 0.1))
(b-size-2 (scale size 0.05))
@ -24,7 +25,8 @@
(drop-shadow-layer (car (gimp-layer-new img width height RGBA_IMAGE "Drop Shadow" 100 MULTIPLY)))
(dsl-layer-mask (car (gimp-layer-create-mask drop-shadow-layer BLACK-MASK)))
(old-fg (car (gimp-palette-get-foreground)))
(old-bg (car (gimp-palette-get-background))))
(old-bg (car (gimp-palette-get-background)))
(old-grad (car (gimp-gradients-get-active))))
(gimp-image-undo-disable img)
(gimp-image-resize img width height 0 0)
(gimp-image-add-layer img shadow-layer 1)
@ -34,6 +36,7 @@
(gimp-selection-none img)
(gimp-edit-clear text-shadow-layer)
(gimp-edit-clear drop-shadow-layer)
(gimp-edit-clear blend-layer)
(gimp-palette-set-foreground text-color)
(gimp-layer-set-preserve-trans text-layer TRUE)
(gimp-edit-fill text-layer FG-IMAGE-FILL)
@ -54,9 +57,10 @@
(gimp-palette-set-foreground '(255 255 255))
(gimp-blend text-shadow-layer FG-BG-RGB NORMAL SHAPEBURST-ANGULAR 100 0 REPEAT-NONE FALSE 0 0 0 0 1 1)
(gimp-selection-none img)
(gimp-palette-set-foreground blend-fg)
(gimp-palette-set-background blend-bg)
(gimp-blend blend-layer blend-mode NORMAL LINEAR 100 0 REPEAT-NONE FALSE 0 0 0 0 width 0)
; (gimp-palette-set-foreground blend-fg)
; (gimp-palette-set-background blend-bg)
(gimp-gradients-set-active bg-gradient)
(gimp-blend blend-layer CUSTOM NORMAL LINEAR 100 0 REPEAT-NONE FALSE 0 0 0 0 width 0)
(gimp-layer-translate text-layer (- b-size-2) (- b-size-2))
(gimp-layer-translate blend-layer (- b-size) (- b-size))
(gimp-layer-translate text-shadow-layer (- ts-size) (- ts-size))
@ -70,6 +74,7 @@
(gimp-layer-set-name text-layer text)
(gimp-palette-set-foreground old-fg)
(gimp-palette-set-background old-bg)
(gimp-gradients-set-active old-grad)
(gimp-image-undo-enable img)
(gimp-display-new img)))
@ -80,11 +85,13 @@
"Spencer Kimball"
"1996"
""
SF-VALUE _"Blend Mode" "FG-BG-RGB"
; SF-VALUE _"Blend Mode" "FG-BG-RGB"
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Text Color" '(124 174 255)
SF-COLOR _"Start Blend" '(22 9 129)
SF-COLOR _"End Blend" '(129 9 82))
SF-GRADIENT _"Background Gradient" "Golden"
; SF-COLOR _"Start Blend" '(22 9 129)
; SF-COLOR _"End Blend" '(129 9 82)
)

View File

@ -1,253 +0,0 @@
; **********************************************************************
; * Color cycling animation script
; * Daniel Cotting (cotting@mygale.org)
; **********************************************************************
; * Official homepages: http://www.mygale.org/~cotting
; * http://cotting.citeweb.net
; * http://village.cyberbrain.com/cotting
; **********************************************************************
; Makes a copy of your image and creates an animation of the active layer
; with the help of the alienmap plug-in. The animation may be saved with
; the gif-plug-in.
; **********************************************************************
; It is recommended to start the alienmap plug-in, to fiddle about with
; the parameters until you have found optimal start va lues. Then put
; these values in the appropriate edit fields in the animation dialog.
; Now you can change the values in the alienmap plug-in to find interes-
; ting end values. After you have inserted these new values in the cor-
; responding fields of the animation script, you can start the calcula-
; tion of the animation. The script will create a new picture with a la-
; yer for each animation frame. With each new frame the start values
; will gradually turn into the specified end values, creating an amazing
; effect of color cycling.
; **********************************************************************
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
;
; **********************************************************************
; Original file:
; waves-anim.scm version 1.00 09/04/97
; Copyright (C) 1997 Sven Neumann (neumanns@uni-duesseldorf.de)
; **********************************************************************
;
;
(define (script-fu-colorcycling-anim img
drawable
num-frames
startredstretch
startgreenstretch
startbluestretch
endredstretch
endgreenstretch
endbluestretch
redmode
greenmode
bluemode
redinvert
greeninvert
blueinvert
startredphase
startgreenphase
startbluephase
endredphase
endgreenphase
endbluephase
startredfrequency
startgreenfrequency
startbluefrequency
endredfrequency
endgreenfrequency
endbluefrequency
redinvert2
greeninvert2
blueinvert2)
(let* ((startredstretch (max 0 startredstretch))
(startgreenstretch (max 0 startgreenstretch))
(startbluestretch (max 0 startbluestretch))
(startredstretch (min 128 startredstretch))
(startgreenstretch (min 128 startgreenstretch))
(startbluestretch (min 128 startbluestretch))
(endredstretch (max 0 endredstretch))
(endgreenstretch (max 0 endgreenstretch))
(endbluestretch (max 0 endbluestretch))
(endredstretch (min 128 endredstretch))
(endgreenstretch (min 128 endgreenstretch))
(endbluestretch (min 128 endbluestretch))
(redmode (max 0 redmode))
(redmode (min 2 redmode))
(greenmode (max 0 greenmode))
(greenmode (min 2 greenmode))
(bluemode (max 0 bluemode))
(bluemode (min 2 bluemode))
(startredfrequency (max 0 startredfrequency))
(startgreenfrequency (max 0 startgreenfrequency))
(startbluefrequency (max 0 startbluefrequency))
(endredfrequency (max 0 endredfrequency))
(endgreenfrequency (max 0 endgreenfrequency))
(endbluefrequency (max 0 endbluefrequency))
(num-frames (max 1 num-frames))
(remaining-frames num-frames)
(redstretch startredstretch)
(greenstretch startgreenstretch)
(bluestretch startbluestretch)
(redphase startredphase)
(greenphase startgreenphase)
(bluephase startbluephase)
(redfrequency startredfrequency)
(greenfrequency startgreenfrequency)
(bluefrequency startbluefrequency)
(redstretchshift (/ (- endredstretch startredstretch) num-frames))
(greenstretchshift (/ (- endgreenstretch startgreenstretch) num-frames))
(bluestretchshift (/ (- endbluestretch startbluestretch) num-frames))
(redphaseshift (/ (- endredphase startredphase) num-frames))
(greenphaseshift (/ (- endgreenphase startgreenphase) num-frames))
(bluephaseshift (/ (- endbluephase startbluephase) num-frames))
(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)
; (if (= invert TRUE)
; (set! phaseshift (- 0 phaseshift)))
(set! source-layer (car (gimp-image-get-active-layer image)))
(while (> remaining-frames 1)
(set! alienmap-layer (car (gimp-layer-copy source-layer TRUE)))
(gimp-layer-set-preserve-trans alienmap-layer FALSE)
(gimp-image-add-layer image alienmap-layer -1)
(set! layer-name (string-append "Frame "
(number->string
(- (+ num-frames 2)
remaining-frames) 10)))
(gimp-layer-set-name alienmap-layer layer-name)
(plug-in-alienmap 1
image
alienmap-layer
redstretch
greenstretch
bluestretch
redmode
greenmode
bluemode
redinvert
greeninvert
blueinvert
redphase
greenphase
bluephase
redfrequency
greenfrequency
bluefrequency
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))
(set! greenphase (+ greenphase greenphaseshift))
(set! bluephase (+ bluephase bluephaseshift))
(set! redfrequency (+ redfrequency redfrequencyshift))
(set! greenfrequency (+ greenfrequency greenfrequencyshift))
(set! bluefrequency (+ bluefrequency bluefrequencyshift))
(set! redstretch (+ redstretch redstretchshift))
(set! greenstretch (+ greenstretch greenstretchshift))
(set! bluestretch (+ bluestretch bluestretchshift))
)
(gimp-layer-set-name source-layer "Frame 1")
(plug-in-alienmap 1
image
source-layer
redstretch
greenstretch
bluestretch
redmode
greenmode
bluemode
redinvert
greeninvert
blueinvert
redphase
greenphase
bluephase
redfrequency
greenfrequency
bluefrequency
redinvert2
greeninvert2
blueinvert2)
(gimp-image-undo-enable image)
(gimp-display-new image)))
(script-fu-register "script-fu-colorcycling-anim"
_"<Image>/Script-Fu/Animators/Color Cycling..."
"Creates an animation with the help of the alienmap plug-in"
"Daniel Cotting (cotting@mygale.org)"
"Daniel Cotting"
"December 1997"
"RGB*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 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-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

@ -92,6 +92,6 @@
SF-ADJUSTMENT _"Font Size (pixels)" '(85 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-tribeca-*-i-*-*-24-*-*-*-p-*-*-*"
SF-GRADIENT _"Gradient" "Incandescent"
SF-VALUE _"Outline Size" "5"
SF-ADJUSTMENT _"Outline Size" '(5 1 100 1 10 0 1)
SF-COLOR _"Outline Color" '(255 255 255)
SF-COLOR _"Background Color" '(255 255 255))

View File

@ -27,7 +27,7 @@
((<= brush-size 13) "Circle (13)")
((<= brush-size 15) "Circle (15)")
((<= brush-size 17) "Circle (17)")
(else "Circle Fuzzy (19)")))
((> brush-size 17) "Circle Fuzzy (19)")))
(define (shadows val)
(/ (* 0.96 val) 2.55))
@ -193,7 +193,7 @@
"Spencer Kimball"
"1997"
""
SF-VALUE _"Chrome Factor" "1.0"
SF-ADJUSTMENT _"Chrome Factor" '(1.0 0.2 4 0.1 1 1 0)
SF-STRING _"Text" "Crystal"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Engraver-*-r-*-*-24-*-*-*-p-*-*-*"

View File

@ -194,9 +194,9 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE _"Border Size" "10"
SF-VALUE _"Fade From (100%-0%)" "100"
SF-VALUE _"Fade To (0%-100%)" "0"
SF-ADJUSTMENT _"Border Size" '(10 1 300 1 10 0 1)
SF-ADJUSTMENT _"Fade From %" '(100 0 100 1 10 0 0)
SF-ADJUSTMENT _"Fade To %" '(0 0 100 1 10 0 0)
SF-TOGGLE _"Use Growing Selection" FALSE
SF-TOGGLE _"Apply Generated Layermask" FALSE
SF-TOGGLE _"Clear Unselected Maskarea" TRUE

View File

@ -157,9 +157,9 @@
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-COLOR _"Color" '(255 255 255)
SF-VALUE _"Border Size" "16"
SF-ADJUSTMENT _"Border Size" '(16 1 300 1 10 0 1)
SF-TOGGLE _"Blur Border" TRUE
SF-VALUE _"Granularity (1 is Low)" "4"
SF-ADJUSTMENT _"Granularity (1 is Low)" '(4 1 16 0.25 5 2 0)
SF-TOGGLE _"Add Shadow" FALSE
SF-ADJUSTMENT _"Shadow Weight (%)" '(100 0 100 1 10 0 0)
SF-TOGGLE _"Work on Copy" TRUE

View File

@ -67,8 +67,8 @@
100
NORMAL)))
(gimp-layer-set-offsets lava-layer select-offset-x select-offset-y)
(gimp-image-add-layer image lava-layer -1)
(gimp-layer-set-offsets lava-layer select-offset-x select-offset-y)
(gimp-selection-none image)
(gimp-edit-clear lava-layer)
@ -107,9 +107,9 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE _"Seed" "2"
SF-VALUE _"Size" "10"
SF-VALUE _"Roughness" "7"
SF-ADJUSTMENT _"Seed" '(10 1 30000 1 10 0 1)
SF-ADJUSTMENT _"Size" '(10 0 100 1 10 0 1)
SF-ADJUSTMENT _"Roughness" '(7 3 50 1 10 0 0)
SF-GRADIENT _"Gradient" "German_flag_smooth"
SF-TOGGLE _"Keep Selection" TRUE
SF-TOGGLE _"Separate Layer" TRUE

View File

@ -1,3 +1,7 @@
2000-04-18 Sven Neumann <sven@gimp.org>
* de.po: updated german translation
2000-04-14 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.1.19\n"
"POT-Creation-Date: 2000-04-11 19:00+0200\n"
"PO-Revision-Date: 2000-04-11 18:59+02:00\n"
"POT-Creation-Date: 2000-04-18 14:21+0200\n"
"PO-Revision-Date: 2000-04-18 14:23+02:00\n"
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -205,10 +205,6 @@ msgstr "<Image>/Skript-Fu/Alchimie/Weben..."
msgid "<Image>/Script-Fu/Animators/Blend..."
msgstr "<Image>/Skript-Fu/Animationen/Überblenden..."
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "<Image>/Script-Fu/Animators/Color Cycling..."
msgstr "<Image>/Skript-Fu/Animation/Farben rotieren..."
#: plug-ins/script-fu/scripts/ripply-anim.scm:0
msgid "<Image>/Script-Fu/Animators/Rippling..."
msgstr "<Image>/Script-Fu/Animation/Flattern..."
@ -731,10 +727,14 @@ msgstr "HG Deckkraft"
msgid "Background Color"
msgstr "Hintergrundfarbe"
#: plug-ins/script-fu/scripts/blended-logo.scm:0
msgid "Background Gradient"
msgstr "Hintergrund Farbverlauf"
#: plug-ins/script-fu/scripts/carved-logo.scm:0
#: plug-ins/script-fu/scripts/crystal-logo.scm:0
msgid "Background Image"
msgstr "Hintergrundbild"
msgstr "Hintergrund Bild"
#: plug-ins/script-fu/scripts/alien-glow-bar.scm:0
msgid "Bar Height"
@ -779,18 +779,6 @@ msgstr "Art des Farbverlaufs"
msgid "Block Size"
msgstr "Blockgröße"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Blue Color Mode (sin:0/cos:1/none:2)"
msgstr "Blauer Farbmodus (sin:0/cos:1/kein:2)"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Blue Inversion after Transformation"
msgstr "Blau nach Transformation invertieren"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Blue Inversion before Transformation"
msgstr "Blau vor Transformation invertieren"
#: plug-ins/script-fu/scripts/chip-away.scm:0
msgid "Blur Amount"
msgstr "Stärke des Weichzeichners"
@ -1047,42 +1035,6 @@ msgstr "Ende X"
msgid "End Y"
msgstr "Ende Y"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Blue Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Blue Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Blue Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Green Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Green Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Green Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Red Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Red Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "End: Red Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/textured-logo.scm:0
msgid "Ending Blend"
msgstr ""
@ -1106,12 +1058,12 @@ msgid "Fade Away"
msgstr "Ausblenden"
#: plug-ins/script-fu/scripts/fade-outline.scm:0
msgid "Fade From (100%-0%)"
msgstr "Überblenden von (100%-0%)"
msgid "Fade From %"
msgstr "Überblenden von %"
#: plug-ins/script-fu/scripts/fade-outline.scm:0
msgid "Fade To (0%-100%)"
msgstr "Überblenden nach (0%-100%)"
msgid "Fade To %"
msgstr "Überblenden nach %"
#: plug-ins/script-fu/scripts/mkbrush.scm:0
msgid "Feathering"
@ -1292,18 +1244,6 @@ msgstr "K
msgid "Graph Scale"
msgstr "Graphenskalierung"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Green Color Mode (sin:0/cos:1/none:2)"
msgstr "Grüner Farbmodus (sin:0/cos:1/kein:2)"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Green Inversion after Transformation"
msgstr "Grün nach Transformation invertieren"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Green Inversion before Transformation"
msgstr "Grün vor Transformation invertieren"
#: plug-ins/script-fu/scripts/grid-system.scm:0
msgid "Grids X"
msgstr "Gitterlinien X"
@ -1487,7 +1427,6 @@ msgstr "Anzahl der Farben"
msgid "Number of Copies"
msgstr "Anzahl der Kopien"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
#: plug-ins/script-fu/scripts/ripply-anim.scm:0
#: plug-ins/script-fu/scripts/waves-anim.scm:0
msgid "Number of Frames"
@ -1653,18 +1592,6 @@ msgstr "Init-Zahl f
msgid "Randomness"
msgstr "Zufälligkeit"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Red Color Mode (sin:0/cos:1/none:2)"
msgstr "Roter Farbmodus (sin:0/cos:1/kein:2)"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Red Inversion after Transformation"
msgstr "Rot nach Transformation invertieren"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Red Inversion before Transformation"
msgstr "Rot vor Transformation invertieren"
#: plug-ins/script-fu/scripts/perspective-shadow.scm:0
msgid "Relative Distance of Horizon"
msgstr "Relativer Abstand zum Horizont"
@ -1839,42 +1766,6 @@ msgstr "Start X"
msgid "Start Y"
msgstr "Start Y"
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Blue Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Blue Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Blue Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Green Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Green Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Green Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Red Frequency (> 0)"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Red Intensity Factor"
msgstr ""
#: plug-ins/script-fu/scripts/color-cycling.scm:0
msgid "Start: Red Phase Displacement (RAD)"
msgstr ""
#: plug-ins/script-fu/scripts/textured-logo.scm:0
msgid "Starting Blend"
msgstr ""