mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-27 15:50:10 +01:00
Naming conventions for Nyquist choice controls too...
... see previous commit comment. Also some i18n-hints
This commit is contained in:
@@ -17,13 +17,23 @@ $copyright (_ "Released under terms of the GNU General Public License version 2"
|
||||
;; For information about writing and modifying Nyquist plug-ins:
|
||||
;; https://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Reference
|
||||
|
||||
$control delay-type (_ "Delay type") choice ((_ "regular") (_ "bouncing ball") (_ "reverse bouncing ball")) 0
|
||||
$control delay-type (_ "Delay type") choice (
|
||||
(_ "Regular")
|
||||
("BouncingBall" (_ "Bouncing Ball"))
|
||||
("ReverseBouncingBall" (_ "Reverse Bouncing Ball"))
|
||||
) 0
|
||||
$control dgain (_ "Delay level per echo (dB)") real "" -6 -30 1
|
||||
$control delay (_ "Delay time (seconds)") real "" 0.3 0 5
|
||||
$control pitch-type (_ "Pitch change effect") choice ((_ "Pitch/Tempo") (_ "LQ Pitch Shift")) 0
|
||||
$control pitch-type (_ "Pitch change effect") choice (
|
||||
("PitchTempo" (_ "Pitch/Tempo"))
|
||||
("LQPitchShift" (_ "Low-quality Pitch Shift"))
|
||||
) 0
|
||||
$control shift (_ "Pitch change per echo (semitones)") real "" 0 -2 2
|
||||
$control number (_ "Number of echoes") int "" 5 1 30
|
||||
$control constrain (_ "Allow duration to change") choice ((_ "Yes") (_ "No")) 0
|
||||
$control constrain (_ "Allow duration to change") choice (
|
||||
(_ "Yes")
|
||||
(_ "No")
|
||||
) 0
|
||||
|
||||
|
||||
;; The default pitch shift effect is a simple resampling,
|
||||
|
||||
Reference in New Issue
Block a user