1
0
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:
Paul Licameli
2018-03-27 14:47:47 -04:00
parent e1b60916b7
commit 842025aeb3
15 changed files with 153 additions and 52 deletions

View File

@@ -17,9 +17,18 @@ $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 type (_ "Fade type") choice ((_ "Constant Gain") (_ "Constant Power 1") (_ "Constant Power 2") (_ "Custom Curve")) 0
$control type (_ "Fade type") choice (
("ConstantGain" (_ "Constant Gain"))
("ConstantPower1" (_ "Constant Power 1"))
("ConstantPower2" (_ "Constant Power 2"))
("CustomCurve" (_ "Custom Curve"))
) 0
$control curve (_ "Custom curve") real "" 0 0 1
$control direction (_ "Fade direction") choice ((_ "Automatic") (_ "Alternating Out / In") (_ "Alternating In / Out")) 0
$control direction (_ "Fade direction") choice (
(_ "Automatic")
("OutIn" (_ "Alternating Out / In"))
("InOut" (_ "Alternating In / Out"))
) 0
(defun crossfade (type dir curve)