-
Notifications
You must be signed in to change notification settings - Fork 4
/
template.txt
12170 lines (11690 loc) · 535 KB
/
template.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#NAME:Template (edit-me)
; NOTE: this is the best starting point for making a new langpack.
; As you translate a string, remove the ; from the beginning of the
; line. If the line begins with ;^, then it is an optional string,
; and you should only modify that line if the definition in [common]
; is not accurate for that context.
[common]
;042F4DCA75E1BE47=16 bit
;CC85D146650F3E66=24 bit
;5188BC03D80E2D31=32 bit
;D858BC186B3FE51D=Hz
;B5431ED426EE5CA5=Input Device:
;DA38E298C189302F=Input channels:
;A7BA0064C3A88716=Output Device:
;C6FA709C7A5DB354=Output channels:
;081F5207A6D5AA8E=Sample Format:
;F97A12BF98D450CF=Samplerate:
;E8589A5C2472187A=samples
;08325007B4EB10C5=x
;3E83534995169108=Request block size:
;0FF98CDC4588805A=Request sample rate:
;8F5EC83B8413B57D=REAPERVirtWndDlgHost
;16464B290024A7A0=Audio device settings
;BAC64C1B2E060EE5=Close
;C01085DD37178417=File info:
;3BF92ABFA8425D90=Filename:
;9BC67B482921A263=About REAPER
;71C25F1D72929445=Tab1
;6D0FDC8D1C9C5504=+0.0 dB
;C6AD52C994C055E0=- or -
;D7323C887B0A2951=Apply
;0738C1B2009346F6=BPM:
;A2D4EB52B7EE75E1=Beat click length:
;F685FB3A91025549=Browse...
;F09E4B5C35AA14B9=Cancel
;82881FCAB4663FE9=First beat sample:
;89548F9D01B6F500=Frequency of first beat:
;18462807588A7AB2=Hz / subsequent beats:
;D840E3186B2B9581=OK
;80194C173B470AF3=Save as default
;649ECB151A2B4705=Slider1
;3A0B093282EA17AC=Subsequent beat:
;6B4AECC021E5686A=ms, start shape:
;223F4865B99B73B0=Output file
;FDE95463547E83EB=Render status
;511EAD28BA4AE493=format spec
;E1CA5A9A5CE93078=not rendering, ETA infinity
;309B13D6E0AC1A0F=Length:
;08329907B4EB8CD0=/
;F8E8A9C19CDE7A59=Project Settings
;99FA828F906D3EE4=Find
;F19F199E8BEFFBD6=Tree1
;92CE2821A4E6C1EE=Format...
;D3E64988F293BA3A=Recording
;5565002CCE1DFBC7=Prompt to save/delete/rename new files:
;DDCECC683DEC9D6A=on punch-out/play
;52BC569ACECFA886=on stop
;E99EBA7FF6970DBB=...
;18E4377E5DDC2B7A=Add
;D9B12705AD844C62=List1
;F812C7145E261C23=Remove
;A27E076F9E7EA1E3=Progress1
;6D0BCBC7DDDC55E7=Type:
;D8B3B3186B8C817F=ms
;11FA427DAF625F63=edit cursor
;62C49C467C0C15D3=Load...
;28450354F52CB7AE=Reset
;925B2CEB12D2D978=Save...
;ABEC79059CAD0B0E=Alias name:
;44D4B9BC3E717FAC=Channel:
;4D5B21719C8D85CE=Browse for file...
;866FE917BA950796=The file:
;89C0342F7627AB40=Theme element finder
;08329D07B4EB939C=+
;0922F78BE865FE0C=Param
;D66D409D600C2D04=Mixer
;D82BED186B194A75=UI
;E9B5F27ED466AEF5=ins
;F8E6A0B81A77C5E9=Reset all MIDI devices
;1EEF91D385882BBE=Plug-ins
;D8D27C186BA6D499=dB
;B90A279A7257C793=Edit
;C7A89083E6E728EB=Project Directory Cleanup
;AF756CE2EA8B8DF5=100%
;611FB91949657A10=Track Channels:
;3BEB0AE437FA2F12=center
;8C2AEE7E9FE91BE0=to:
;F9519A70026F7B52=Position:
;6D27CBDC5943D7B6=Shape:
;5892A20D9BBBE54A=Value:
;6AE6A7774B25EDEB=Edit Marker
;D405917E36F95CF8=ID:
;48D899DD92FBC032=Name:
;E6B5A6A65044C93D=Reset color
;941DEA15C4817EEC=Set color...
;E5566C4604653F75=Undo History
;18C90F7E5DC51FCA=All
;61B7599A40AF0062=End:
;79DCBE1CDE37B4F3=Entire project
;2112CF591DBD3A60=Mono
;2555373B75AA89B2=Output
;0629736B3FAE9E4C=Process
;E19CAC48E2E6EA85=Sample rate:
;720CB39E31676E27=Start:
;97D6D411868C112C=Time selection
;CA2A325DBD0A1A47=Custom1
;EE28FE89D1A7A151=Edit Region
;7CE6FE4C74542BB2=Region Manager...
;5C973D1CB80B0D9F=Render...
;61946358B1034B76=Mute
;96E5C67E1437194E=Pan
;61EB857EEC517894=Record arm
;8FC86C263760ACB9=Volume
;C3EB4B7A6BCD5F3C=New name:
;09939A2A8DB73EDE=Performance Meter
;33212EA04B36D7AA=Routing/Grouping Matrix
;EA615A5997239616=Edit FX Comment
;B6B81D96FFFC1FA4=Edit Time Signature Marker
;D99EA6A0E05B0BEC=Transport
;C644A2EBFF26E843=Automation mode:
;4E5F93B30C786CEB=Track Envelopes
;B8EA9A061D794748=Navigator
;59111F850FAE5C14=Enable snapping
;10EC54E7BB0B3282=pixels
;57CA523AA910C686=Gain compensation (boost pans)
;2B4E18A3D5201CFA=Pan Law
;A5AE0B33DF6191F1=Pan mode:
;8EA91D57270468E0=Pan law:
;756B500741E261D4=Import license key...
;AF3196AD6B727ABC=Delete
;598D95450BED5823=ReWire
;1EB556E18D613E28=Add...
;E9991E9C69A2E870=Envelopes
;3390D94D34F06461=None
;698028640C29E8A9=Enable locking
;D35AD13842A55DEA=Markers
;3896D8BF3E72ED2C=Regions
;7E11B9683132FA9E=Keyboard
;CA95C3C55E05662B=Reverse
;D91FCBB42B5B9077=Docker
;05F21CB15F5F944B=Auto trim/split items
;C44624AFE5B908A4=Fade pad
;D92F489AE81E13F2=Hysteresis:
;0D2DD411CE90EA28=Leading pad:
;46F1486DB9B6A7A6=Mode:
;0703625BF4AB8440=Split grouped items at times of selected item splits
;927D36CE7B695660=Threshold:
;1E386FB5FE43C9CC=Trailing pad:
;8C66AD45F2B879B1=Quantize to:
;850C45978587FBF4=notes
;2ACDE9B48ED97A15=Static
;E217E1085C7ED06D=Searching...
;077D2C59054EE61C=name
;122368E92DE6E29F=Reset to defaults
;D85ED6186B447CF9=FX
;D26FE1B4C8988F96=Muted
;C54C5E311372A994=Notes
;2B7EEDEAE2DA5D5C=Enable metronome
;E97ABAF631B4841C=aux sends
;0B61CC7E6E2E017D=MIDI channel:
;3D9702905AC5B44C=Virtual MIDI keyboard
;38F9B35CED04D04D=Big Clock
;DDD50B6B9C96D4AA=Enable only when effect configuration is focused
;542A194EAA789AB0=Enable only when track or item is selected
;41BAD65DE621E179=Soft takeover (absolute mode only)
;67EF32DE1BAE7097=Channels:
;86C526176585552D=Output format:
;5B664677E1A91155=Start
;865773BF0F30AC16=Screensets/Layouts
;AE0E8F593F20484B=Docker selected tab
;A620AF611680A051=Items
;A61CBD25C6796002=Layouts
;5BD67845F0F0360D=Main window position
;99B8B53D72CFEE9F=Mixer flags
;CE00C3235E535EAA=Save
;EE914AABB985B447=Tool window positions
;DDDAF906972AD14A=Horizontal zoom
;08A2AD9AC1632C1B=Track cursor position
;849FA7BAC58F3097=Track scroll positions
;C30D5E2CF003330F=Merge source tempo map to project tempo map at
;1E894CD06766E128=octaves
;0832A307B4EB9DCE=%
;576D3C1F8C34C670=Strength:
;3D05B40BFC6A1E40=External Timecode Synchronization
;2ACB121355B0007A=Playback
;84225D657EA873E2=Device name:
;30EF57A27EDFC686=(none)
;6B4795AB9EC37475=Input:
;3AEE47F8880725BF=Scale:
;F67F48495D3866C3=Consolidating...
;744B2F6CFBA0A242=Actions
;F10F4B1B4D6DC250=Clear
;83CEDDAC8FB7324E=Copy
;5F8BE96FAB61772F=Custom actions:
;C39132F1A8047E9F=Edit...
;D43B88702E996ED9=Filter:
;F70C14BE35114F9B=New...
;87DB547E0C57B4B8=Run
;3F0C4A774B49AF33=Run/close
;3A39C76003695360=Section:
;D9B12605AD844AAF=List2
;16780B33F0A62D18=Remove selected
;D7B51CFC5837E755=Rename
;E53622684802B745=Master
;66D8B92631859FE9=Rename...
;10D0E37E59744608=BPM
;386EB65EE2979317=Load
;6B921CBA018B2EE0=No additional resource loaded
;A43D5AFECAA46489=Preview
;FA779BCA02DBA08E=Reduce envelope points
;4F32BF040299F0AA=Enable input for control messages
;6174C6969402A488=Open project in new tab
;AF427D96E302B145=Customized menu:
;38EAAB594661F05F=Default menu:
;E0A7E8E6C8588D64=Directory:
;7B21C9863AA04D13=Dither
;C1F07AAFF4522636=File name:
;1D5AC868CE7FE785=Noise shaping
;5493EE7052DCF71B=Options
;1B0AFEE5F92D9181=Presets
;928212AC32CC584E=Resample mode (if needed):
;3BF0AA22A506F11A=Wildcards
;6A003F23022A1E47=Add edge points when moving envelope points
;561C816EA4AE16DF=Add edge points when ripple editing or inserting time
;B61E6643CE61DA4C=Envelopes and Automation
;20BAEAD47F4513A4=Reduce envelope point data when recording or drawing automation
;83C05BCE6E0BA462=semitones
;7DA8EA3426CA11D3=Description
;C065E9FEE11B2862=(current project)
;397E19C8F7486840=Project Bay
;3C63123253BCD74E=Usage
;D89CC7186B79C49A=to
;383F243464148105=Transient Detection Settings
;EA7EDFD029F80877=Nudge left
;2E287BE9B3A7F568=Nudge right
;3CF04EFDC66C18B2=Snap to unit
;275DD07EF79CAC80=by:
;C31088838B9A533C=Rendering PiP contents...
;A1C5EC4ACA9C56C0=Freeze
;0226D05EC331BD27=List
;A2BF58A6DFD853DC=Project
;D2714B0ED9D27FB1=Track Manager
;2F799723962762C7=Stop
;1A8015E802ECC562=Item mix behavior:
;3868AB5EE29314B8=Lock
;BEE3F1BDC2A992A1=Media Item Properties
;18D0284FCA66EF48=Take FX...
;A1A721902449610D=Take media source
;ADFC12BF930BBFC9=Take properties
;268986373F235EF0=beats
;E0B104299A7A8E2E=time
;BD7850245F5A79EE=Import
;B36DBB640BD652AA=Notes:
;200265593F330955=Scale Finder
;87D8D79D63721460=Open render queue...
;5D33EA2A7EBEF63C=Region Manager
;043FBD1700F7067B=Render Warning
;DF2472EC2AB0BAFB=Download Python
;2C626DCBF2E2019A=ReaScript
;6BE8B83EA0A1A15E=&Actions
;386DCB7A24A75D67=&Edit
;3AF66241CE595B8C=&Envelopes
;DB25337315BFD655=&File
;F5E3E68D409A3A52=&Group
;AA9942DEC0F6DBEA=&Insert
;1686A8969AFE3B9F=&Options
;459EE41012553C16=&Paste
;CE7E80ACF252CB16=&Reverse items as new take
;BE1A8478FCC1F1FA=&Track
;E194E0BBB250B47E=&Trim items to selected area
;87B550EB3F37F8CE=&View
;BE39148270D11909=(comp list)
;350E0F395B7F1C85=(take list)
;3A390528F4DCEC5D=(track template list)
;08329707B4EB896A=1
;D97FFC186C3A63EE=10
;D97FFD186C3A65A1=11
;D97FFA186C3A6088=12
;D97FFB186C3A623B=13
;D98000186C3A6ABA=14
;D98001186C3A6C6D=15
;D97FFE186C3A6754=16
;08329607B4EB87B7=2
;08329507B4EB8604=3
;08329407B4EB8451=4
;08329307B4EB829E=5
;08329207B4EB80EB=6
;08329107B4EB7F38=7
;08329007B4EB7D85=8
;08328F07B4EB7BD2=9
;CF7AF55DCCD92445=Allow anticipative FX
;BEDDCB0B40FD59A2=Allow media buffering
;3E1E032211F699E5=Auto-crossfade media items when editing
;9CF0A9142899CF43=Auto-reposition items in free item positioning mode
;C09170FD3E752A38=Automatically scroll view during playback
;BA7A79B4D3479176=Beats (position only)
;A5D5B4E847F44008=Beats (position, length, rate)
;919D1A7A385C125C=Bezier
;DB9EF3622F4C4895=Built-in MIDI editor
;40B42F5B4E7F894C=Clear envelope
;844E1C381BAED81D=Comps
;210B23F21E3171CA=Convert active take MIDI to .mid file reference
;00BF6D212D40163B=Convert active take MIDI to in-project source data
;050AAAF896F25359=Crop list to active comp
;CAAB5CC146E0FC0B=Crop to active take
;DB0FEB13427E7035=Custom track colors
;9F786D12D8FA61CD=Custom track icons
;AB2A3D4EF1C9D1A8=Default
;6D2EC5D738690CA9=Delete active take
;522F483C3BDD4C72=Do not link track volume/pan to MIDI
;9824DEB0C15FC0F5=Duplicate active take
;23590995D822F51C=Duplicate tracks
;0E71DF4467DEE5F6=Dynamic split items...
;5A3FF93A190E0F6B=Empty item
;0CE78C3702CE687F=Enable track free item positioning
;22890C70F0007984=Envelope point selection follows time selection
;943A1A47FCEE5EEE=Explode MIDI item by note row (pitch)
;66F59CEEAE4451AB=Explode all takes (in order)
;0B76FEDD4B488DD6=Explode all takes (in place)
;32A8CD94B8E9F86E=Explode all takes to new tracks
;D1E4A1A455A36989=Explode multichannel audio or MIDI items to new one-channel items
;420377F78A3E1841=FX Browser
;DB6FC995D09C7078=Fast end
;BC24D1B6349B5A89=Fast start
;78957C8454DBB75F=Freeze tracks to mono (render pre-fader, save/remove items and online FX)
;79AA43061BD49154=Freeze tracks to multichannel (render pre-fader, save/remove items and online FX)
;54DADE4C7B95FC5C=Freeze tracks to stereo (render pre-fader, save/remove items and online FX)
;FB90AE71C9284F3A=Glue items
;B7169EEC02C8D8FC=Glue items within time selection
;7E2DF1630E77106E=Group items
;FF07D0ECF3A0E53D=Heal splits in items
;9C51079A90B5736A=Hours:Minutes:Seconds:Frames
;F2E31CE8AE28842A=Implode items across tracks into items on one track
;CA142F03B9CABB64=Implode items across tracks into takes
;EFC8CD9D920B916F=Implode items on same track into takes
;FBBD098069A14870=Import media cues from items as project markers
;6E9C1F47AE0AB01B=Insert new track
;EB6AC1D6BBE0A433=Insert new track at end of track list
;14AB75DE2C24FEF3=Insert track from template
;A6F3EA432AA410A4=Insert virtual instrument on new track...
;92665005797F0930=Invert phase
;595D1609A802357B=Invert selected points
;A6E8B961172A2EDC=Ite&m
;E1E348931CD6C233=Item &properties...
;0ED5B16414C9FBEC=Item and take colors
;18A490C172DBF9BB=Item processing
;BA6CAA916A3AEE75=Item settings
;CBED1547C6300197=Latch
;CA47517BDEFA4232=Linear
;66E5DC632BAFC67F=Link track volume/pan to MIDI channel
;5C6FB2DCFD68EEF7=Link track volume/pan to all MIDI channels
;8EAF0AA09346C8D7=Lock item
;7EA6B0652E5346C4=Lock to active take
;F96490112D1B162F=Lock track controls
;EC752CC2DB12686D=Loop item source
;ADB9958ED73C94F7=Loop section of item source
;C524AA04CA044305=MIDI track controls
;90AF657379F9511D=Marker
;DDDBC4B59922776E=Master Track
;79D6347556189739=Measures.Beats
;EC6669A655FB6232=Measures.Beats / Minutes:Seconds
;DAB01B50C7660150=Metronome enabled
;3E62FFC31E48DC5F=Minutes:Seconds
;555922281DE5343B=Move active comp to top lane
;21F4EDEE5D02BA27=Move envelope points with media items
;60BCFF25EB54665C=Move items to source preferred position
;9D4AE82B2A6E582F=Multichannel track metering
;385A68019D9A9A61=New project tab
;F65CD38614815711=Next take
;AF8FB722E2FC29EA=Normalize items
;B622D171EE197539=Normalize items (common gain)
;423DD25A37AD7A79=Nudge/set items...
;65CA689C377C5655=Offset template items by edit cursor
;B3572B5D80DF7B79=Open all track MIDI in last focused editor
;6E2BF94AF99A0CD2=Open all track MIDI in new editor
;AAB1F0BA33F2CA9C=Open copies in editor
;B49A3DAD17186E2A=Open copies in secondary editor
;619AF06BCC66D00F=Open in editor
;B897F27761564A3A=Open in editor (set default behavior in preferences)
;2E3DECABF5FD3B44=Open in inline editor
;E607CAC0E0F5BB14=Open in last focused editor, clear editor first
;64BFDFCE78C5294D=Open in last focused editor, preserve editor contents
;90AB4F33F7105841=Open in new editor
;8991F36B7822B489=Open in secondary editor
;4C6F30285576EE3F=Open items in editor
;D9CD3B25D255019B=Open template...
;8657A2F07751612A=Paste to takes in items
;88344341B9A154CA=Play all takes
;88FE80D1430C4312=Preserve pitch when changing playrate
;B6616B85587122F2=Prevent anticipative FX
;8A09A75D01EDDA59=Prevent media buffering
;5CCBCB0963EC10AD=Previous take
;26C7502E02B01288=Project timebase
;1AAC225BC2D18F76=Quantize item positions to grid...
;BB1FF02F46CC14C3=Read
;CAC4592C4D4DD57A=Record mode: auto-punch selected items
;2A861A976C38C3D4=Record mode: normal
;71CB5040464F5BC3=Record mode: time selection auto punch
;92C3E890C5EC8E5D=Remove FX for active take
;F9E04376D3B7E6DE=Remove active comp from list
;186444C1EA089313=Remove items
;0A6A186FCB4E720A=Remove items from group
;D2F88B0EF54D2211=Remove track icon
;FDFA2E97CD8FDE19=Remove tracks
;586B2A0EC026812A=Render items as new take
;62060BAC51213CA3=Render tracks to mono stem tracks (and mute originals)
;6B80ADA8054A1976=Render tracks to multichannel stem tracks (and mute originals)
;9BF0024003286A6E=Render tracks to stereo stem tracks (and mute originals)
;BB2ECD751C866045=Render/freeze tracks
;20EE79BDD1264889=Reset selected points to zero/center
;1598EBACCB0F49EA=Reverse active take
;BD80D7F68741D41A=Samples
;931D2CD599D2FEC9=Save tracks as track template...
;27A8F35A732CC6E6=Save/rename active comp...
;F0920ED4F28AEEBC=Seconds
;86891682F6F2D16C=Select all
;60EE028014F5398C=Select all items in group
;47B6B0240DC76A6B=Select all points
;6E708F217D28443C=Select points in time selection
;807AD2DC48AC8DC8=Set active takes to custom color...
;0704D964EA4B33E0=Set active takes to default color
;EB6A3F98C6F7C92A=Set active takes to one random color
;628E594012CC7C5B=Set all takes of selected items to default color
;47C303DD6766CBE5=Set envelope default point shape
;11458E9C9EF4BE2E=Set item timebase to beats (position only)
;EC375DCC4CE39240=Set item timebase to beats (position, length, rate)
;9D60E5E1B749E8D5=Set item timebase to project/track default
;0EB8F3CE4C772566=Set item timebase to time
;020D3467C33B79B0=Set items to custom color...
;31DD29D6185E7EC8=Set items to default color
;6C8CB6E8F2159B02=Set items to one random color
;A68ABA1C0EA6CE27=Set items to random colors
;BA7DD3138B41C153=Set shape for selected points
;1D84015D83B05998=Set track automation mode
;648DC6218B71EAE3=Set track icon...
;88C3EA6A227D6CF4=Set track layout
;2E50A636B3040F96=Set track timebase
;2A155A1A970AC2FE=Set tracks to custom color...
;639DD13915D0BDD2=Set tracks to default color
;27450F3A019ACFE8=Set tracks to one random color
;AB902561E815401D=Set tracks to random colors
;0A6FCB87E138A3AF=Show FX chain for active take
;FC08989D53C1D223=Show MIDI track control panel
;A0CB20A955DAF552=Show action list...
;257731EBCA5EBF0E=Show grid
;593D5AC384550ADA=Show recent actions
;6A05662E2A1E77AC=Slow start/end
;FD06ABC366DA801A=Smooth seeking (seeks at end of measure)
;0814EFA066F6B891=Source &properties...
;1F4C50B930F9D6C8=Split items at cursor
;90B859A4F328EBB9=Split items at time selection
;AF908AD98D533548=Square
;94D8EC714ED10E14=Synchronization enabled
;1589D28CD62A7BF0=Synchronization settings...
;A726FC321D37D0F0=T&ake
;5601B9A57A757ADB=Take channel mode: Normal
;2BE60748A665DAFB=Take mute envelope
;1BF73E10831BC659=Take pan envelope
;4A2B58135C235086=Take pitch envelope
;E871F70D1F455842=Take volume envelope
;B98A031D9BEEF64E=Time
;6EEA4E6D1C299C1E=Toggle &pan active
;E29A8B5D1C16061F=Toggle &volume active
;171CD8B223DA2025=Toggle pan (pre-FX) active
;5137806840344CAF=Toggle pan (pre-FX) visible
;124E3F58D9D38C02=Toggle pan visible
;13D77626487877AE=Toggle volume (pre-FX) active
;EDAADDAE852D16DE=Toggle volume (pre-FX) visible
;22BB6337A73E9205=Toggle volume visible
;9A96C7D5CB612D76=Toolbar Docker
;83EA05809A680356=Touch
;D0C04B9E79D271AE=Track
;6478144A3C4FB7D2=Track grouping enabled
;1002920B25015351=Track grouping parameters...
;08C4A189ED06CFFA=Track performance options
;3A2761697FE8C69E=Trim content behind media items when editing
;E80224910029CDEC=Trim/Read
;EE5CF20F98160706=Unfreeze tracks (restore previous items and FX)
;58EB14692B28F25A=Unselect all points
;D3B242D430A5DB6C=Virtual MIDI Keyboard
;C9D51236E5A04162=Write
;62473318FFD2829F=[recording settings]
;29AC56D2B3AB95DD=&Copy selected FX\tCtrl+C
;2F3C98801E1D176D=&FX
;0EE7D967B88BFC63=&FX Plug-ins settings...
;ED9D4CD707DD43C6=&Paste FX\tCtrl+V, Ctrl+Insert
;A7702CFDA3C1F8E6=&Remove selected FX\tDelete
;5B982DEEA8952FF4=Auto-float new FX windows
;C7317FFF2A84005C=Build 16 channels of MIDI routing to this track
;84FADFAA8CD497E1=Build multichannel routing for output of selected FX...
;A564BFA603B3928B=C&ut selected FX\tCtrl+X
;BC328CB03B0D078E=Copy &all FX\tCtrl+Shift+C
;CC1F02E05223C02F=Dock FX window in Docker
;F07B8BF09056DBC7=Freeze track
;B9450FA5B73E0242=Freeze track to mono, up to last non-offline FX
;4A24DE7EC5D70EE4=Freeze track to mono, up to last selected FX
;822C0ABE515442BB=Freeze track to multichannel, up to last non-offline FX
;C8A3EF986B3A45BF=Freeze track to multichannel, up to last selected FX
;E4EB1F77E012E753=Freeze track to stereo, up to last non-offline FX
;9CADE133F3BF88B7=Freeze track to stereo, up to last selected FX
;C4E5E30C8A3E3BDF=Remove all FX\tShift+Delete
;E67F0BA2C154FA57=Rename FX instance\tF2
;CD9DE212764F150E=Save selected FX as chain...
;10AA715E679A1188=Send all keyboard input to plug-in
;3821C0F763D1850D=Toggle selected FX bypass\tCtrl+B
;685BE17D4DA686FC=Toggle selected FX offline\tCtrl+Alt+B
;43EF57CE3ADA8A28=Unfreeze track
;907F0944C42611FB=Window float selected FX\t(doubleclick)
;3683BEB2CD7D7896=&Edit JS FX...
;6EFA7E4EF87CA485=Auto-clear search field on close
;4018D271D54282D1=Auto-clear search field on folder change
;D6DB6AF3F0039A90=Create new &JS FX...
;146E11E319517217=Dock FX browser in Docker
;A3049D07A88CF98A=Show VST folders
;111F67D1C0E01057=Show default FX presets
;F1707CB9030B35E0=Automatic record-arm when track selected
;691C4B8E09709260=Copy loop of selected area of items
;914F5B81FECF32F5=Copy selected area of items
;5F08AD67C9135573=Crop project to selection
;48E3EE852F14F202=Insert empty space in selection
;5710F0FC06226D7D=Remove contents of selection (moving later items)
;F2F9B74A2243D03F=Set project tempo from time selection (detect tempo)
;EA21659EDE25DB0A=Set project tempo from time selection (new time signature)...
;271F989089915585=Arm envelope for recording
;051CA74B46992E79=Bypass envelope
;A6EF93273B597A8D=Clear or remove envelope...
;0D521319E895BADD=Copy points
;32A5F32C7000598C=Cut points
;F1C5C2EC7C56CF0D=Delete points in time selection
;CD674FEA536FDABD=Hide envelope
;21E4A0FB10179834=Reduce number of points...
;2504EFBB70A00BF0=Reset points to zero/center
;C038339424CBD482=Select envelope (env name)
;727B7F2EB869FFD5=Show envelope in lane
;7C92092A41B00EDC=Latch (record fader movements after first movement)
;DEF52717C4E7101F=Read (play faders with armed envelopes)
;5A6DE0CA99B71E37=Show all active track envelopes
;E73F4D99E9F274CB=Touch (record fader movements to armed envelopes)
;A23B66B5439758A9=Write (record fader positions to armed envelopes)
;C004CD40F2057E29=FX chains
;5121A85C07CE50F8=Apply playrate to current BPM
;006B733C62729272=Decrease by ~0.6% (ten cents)
;62A207FF54858A9C=Decrease by ~6% (one semitone)
;62DCD9FD78BC002A=Increase by ~0.6% (ten cents)
;BC1BCCE6A4775AF4=Increase by ~6% (one semitone)
;EDA2EFF8719B8390=Playrate fader range: 0.25-4.0 (default)
;5A097A1E8E23E204=Playrate fader range: 0.5-2.0
;460AFFF6D99D0DD1=Playrate fader range: 0.75-1.5
;BD6665EE0A2BDB92=Playrate fader range: 0.9-1.1
;D7121E5A0710CF4F=Preserve pitch in audio items when changing master playrate
;4EEB564BBD876EAB=Set to 1.0
;3E6F5B4FF4F5BC43=Create new folder...
;E485FC63E796EFFA=Move down
;A35385C769502F3F=Move up
;20C9E44247CBCC07=Rename folder...
;BC3F5623627FE3E9=Add FX Chain
;12D1E2F79FD7BDB8=Rename FX instance
;5D5B152A913BF2D1=Go to end of project
;E4053920A9B5A25A=Go to start of project
;DD8F228BCFA37CFF=Pause
;3D9CBC3C216900AD=Play
;D4FDE496446E78EF=Playrate
;F0EBC9DF5B847ED6=Record
;3E38EF62B047CD38=Repeat
;3E7CD7C393BEE92F=Use ruler time unit
;A66F5FD1FF70F568=Attach Docker to main window
;C5531D0DEE1F0D0D=Input
;B814E3BFB72A607B=Delete preset
;37E1C985732EDDC1=Save preset...
;82EE5475CB6FCE9F=Close window
;3D90226E6ACF7B65=Toggle FX bypass
;0A406B52D72D3189=Toggle track mute
;7C52DE0969C08A82=Buggy plug-in compatibility mode
;674FB3DE1B272051=Channel 1
;B38F0368237C04D3=Channel 10
;B38F0268237C0320=Channel 11
;B38F0568237C0839=Channel 12
;B38F0468237C0686=Channel 13
;B38F0768237C0B9F=Channel 14
;B38F0668237C09EC=Channel 15
;B38F0968237C0F05=Channel 16
;674FB0DE1B271B38=Channel 2
;674FB1DE1B271CEB=Channel 3
;674FB6DE1B27256A=Channel 4
;674FB7DE1B27271D=Channel 5
;674FB4DE1B272204=Channel 6
;674FB5DE1B2723B7=Channel 7
;674FAADE1B271106=Channel 8
;674FABDE1B2712B9=Channel 9
;A2AD8A8A1376F812=Compatibility settings
;B9ABDBF036490D44=Export preset library (.rpl)...
;1E031E71B52167CD=Import preset library (.rpl)...
;7F8BE88D07D058A1=Link to MIDI program change
;DF45382BC646671C=No link
;9590CA1D43A60188=Plug-in state data size: 0 kB
;888CF2A8F9990B9E=Rename preset...
;C35B6227A5807B01=Save minimal undo states
;77D4606E1E255B38=Save preset as default...
;54BE0C4F3DB86B76=Save state as VST bank (default)
;5F00BE84E91B6C9B=Go to previous marker
;94D3B132B355DDD4=Use transport home/end for markers
;51B4B159DD69FD3B=Go to next marker
;76EE6BE79431DD36=Ignore selection\tShift
;0420AF237D97ECB8=Solo
;4324C9C893B102F6=Insert
;A354AA07A4DF9BBD=Enable grouping
;09A01E8714A0B688=Comment
;DCEF2B4D03DE723C=Name
;FE0BBBB916484A16=New project bay window
;9F31623C59553158=Path
;BB0EF92F46BDB0DB=Redo
;0E28C6126A0CF889=Undo
;D86C7175F627BC38=Select all items
;271D7187C80C7F43=MIDI Editor
;2D64A463B95C3074=Media Explorer
;C685A28B8DBF7F8B=Folder
;FC55E4C505C541DE=Parameter
;C35BB11D6C364CCC=Parameter modulation
;FA08A03DC81EC720=Plug-in name
;DD0CE22D75D36ED1=Track name
;978AC938BDD65877=Track number
;772CECA01AD73CB4=Value
;8A3F14717826D8D1=Width
;20AFB48FFE418F4F=Select
;6037A596D672320D=Shortcut
;B762E77EB85D7B6C=off
;D8ADC6186B88361A=on
;1A236FDD7E5FF32C=Custom
;02194DA19CF34ECD=Edit: Redo
;DBE0EEA73EA7A24B=Edit: Undo
;01262900CB9ABE4B=Loop points: Remove loop points
;F8D05E3085FD2B41=Loop points: Set end point
;B0BD565E6246F228=Loop points: Set start point
;FDFF2C38C037D04E=No-op (no action)
;887AC55D66DDCCA9=Options: MIDI editor mouse modifier preferences...
;4F54BFB1FE7FA7B1=Send all notes off to all MIDI outputs/plug-ins
;DCFEAB8BD451EB5C=Show action list
;E9D9A68C20EC04ED=Time selection: Remove time selection
;D2BA30B556C02C0A=Time selection: Remove time selection and loop point selection
;23CA90FBC72F010D=Toggle show master track and tempo envelope
;12C3FAD652693FD1=Toolbar: Open MIDI toolbar 1 at mouse cursor
;BBE9B04C60CAD394=Toolbar: Open MIDI toolbar 2 at mouse cursor
;BF0E1DB8639E5D8F=Toolbar: Open MIDI toolbar 3 at mouse cursor
;4A717A29C667E83A=Toolbar: Open MIDI toolbar 4 at mouse cursor
;B12DCB764FB6F550=Transport: Pause
;EE7C68EF6C212F98=Transport: Play
;46E68D57893F0D5D=Transport: Play/pause
;82CD794FA2EDD475=Transport: Play/stop
;A4419DE98AC6632E=Transport: Stop
;61DB5FFF400740A5=Transport: Toggle repeat
;4C2711165B524E16=Unselect all tracks/items/envelope points
;16A0B50E20E429AB=View: Move edit cursor to mouse cursor
;7807E6A469856A94=View: Move edit cursor to play cursor
;60FDC47CC49E565A=View: Scroll view down
;00A326BE1D4B4B0F=View: Scroll view left
;3CAB5198F069B180=View: Scroll view right
;EF2E4D6B32E12F9F=View: Scroll view up
;293D4AED6CD88FF6=View: toggle show MIDI editor windows
;0832A507B4EBA134=#
;73532F71FB46906C=(not connected)
;0EC28D42C155A657=---- User Presets (.rpl) ----
;11B3B66593F236CF=Confirm Preset Delete
;93244D3BB94E6F33=No preset
;17B3AE10A9CC3695=Plug-in state data size:
;3B0F03168DFDAFF8=Rename Preset
;274E7C84B3E58DB8=Reset to factory default
;2B74B8A9175B98AD=Save Preset
;D8C1A6186B98A8C4=in
;B7290B7EB82C4051=out
;F420AC1723391ECE=Master track
;629548803B048F00= -
;2430BBE52E3FC625=Comp %d
;2A6ED1B48E88BCC9=Status
;9EC3E20500624AAF=Error
;BABD655B2A5AED87=Select a directory:
;EE1268CA4B845A22=# FX
;9747AB7E1489B5C8=PDC
;4B1F235812EEE9D6=MUTE
;480A73B43C308366= (folder)
;65971737BB8DFA2C=Send Envelopes
;A74298433E1F4B3D=Track Channel
;C499FEFB8CC28F79=Filter
;09D15F38080A7701=Media
;5D4FC446DED74611=Output Channel
;322690F7CBF0FD23=Pitch:
;F6D1FCEB6389AD81=REAPERMediaExplorerMainwnd
;F3D409ED59BA245F=pause
;682ABD4822D9748D=play
;745797F93833F418=repeat
;5A07982F9797D6A7=stop
;AF4AD46D7AA10118=Add current folder to shortcut list
;E953387880EB6BCA=Always show waveform peaks for selected media
;56908A585EF50FEA=Auto-advance to next file after preview (requires repeat off)
;7A61C83EDD568392=Auto-stop preview after adding media
;51811BBAD22BC48D=Default action (double-click, or enter key)
;33B126F31D7ADF8D=Display preview position in tenths of seconds
;AADC236C38D60A97=Do nothing
;A646042E5765A52A=Dock media explorer in Docker
;A990E39726BBA83A=Insert media on new track
;F38FF5A9EE6E2C5B=Insert media on selected track
;C5546E0DD81AFC44=Insert media or open project
;5B745260C3493F34=Insert projects as media
;0B35824C72FB30DC=Open projects in current tab
;44F0FFC2E0D387C7=Open projects in new tab
;EB15808B1540C1AC=Preserve pitch when tempo-matching
;8845CB59F1A758F9=Preview REAPER projects (.RPP)
;1E0BA4E5C4151116=Show all files
;6EC0EDC21D60E9B9=Start preview
;E3BFB2365BCB9521=Unload current preview media
;E1B082D02E99FD1E=Use Windows Explorer for browsing
;51C47435D113C016=Show source properties for current preview media
;9A01878F90736611=File
;2D126F1D4BD6B8C7=Type
;2C078B30A2995EDB=ReaRoute Output
;4789C5332441688D=Error finding an unused filename for output. Source file:\r\n\t
;6A8323D4A2DF56E0=Explode multichannel media
;A1BB777BE5203666=Open Copy Error
;835886E70395249C=Add FX Envelope
;1C9976E435832BEB=Bypass
;17E7264672EB4EC9=FX comment for:
;67D35DD28653A00A=bypassed
;82E42D2FF8D25A8D=Could not get channel info for effects (are they multichannel?)
;BA1A25DF2A11E99B=Rename Folder
;915C69C77F31F221=Envelope:
;D726E2A6E8466B26=Create new MIDI file:
;6208D6BE485CCB06=Group
;C92094118C504736=Rename Group
;08323B07B4EAED16=M
;08323507B4EAE2E4=S
;1EBBCAFED2D3BA25=master
;37B990D4112E1A98=Move marker
;44BE2B196101CBBE=Move region
;AB92A9DAC365A96B=A single loopable media item
;5267FAD4364EECB7=Adjust media to project tempo
;356FEEC423F176E6=Beat slices that dynamically adjust to tempo changes
;15C4666BD022F937=Import media at source tempo
;57F28E456CC0FEEB=Pitch
;140944783E61BE8D=Rate:
;2C5B8309D9FC8004=Take
;DD491F831B629F78=item
;63ACD193C4316F68=Normal
;64835E1E0CE30E3B=(empty lane)
;7C21CDD2AEBBA4D6=Enclosed items replace enclosing items
;5BA4387FA574D390=Items always mix
;DD2984E0D3995E66=Items always replace earlier items
;94DEF1C233373209=Project default
;AD6ADC4BDE973BA3=Select replacement file:
;E1CA4E1B0C5C2DB6=Can't open Reamote UDP port!
;E6A55E1F24BD208C=Choose ReaperConfigZip to import
;A4C0C852A5B25572=Confirmation
;C93417DD40352E1B=Error saving
;D52782E5368E8EA1=Error writing to MIDI file
;F7CD69D31E23F2C7=File already exists:
;A752FB9BC4EC6C8C=Initializing...
;33A5C54D35029E6F=Note
;D790926420BA2EB7=Notice
;BBA33ABA3D67B8AA=REAPER Error
;05A130B04362C768=REAPER Note
;E7C1CFE2A0C69AD8=ReaScript error
;E83CE539DBB569A7=Stop recording before rendering...
;5945AF9182806811=You must stop recording before importing configuration (as configuration import will require a restart)
;BA8A5EA843F33060=Can't redo
;99B80DC023AB26F6=Can't undo
;83BDD8AC8FA8B69C=Comp
;BA0039FB59D95325=MASTER
;4EC7F7461DF2D993=&Note:
;7026A011104B1446=&Value:
;742F5D29C7564242=&Velocity:
;01DA63B41FEE389F=<no patch file loaded>
;F3238895531F739E=Channel
;FEAA833C7533B5D0=File not found
;53BE875D82C65B2C=MIDI Filter
;0B3E0029A01A16F4=Media item
;430304A419B0E574=Note Properties
;C645D4DB5297312E=Poly Aftertouch
;2ADD7A879D22FA5C=Position
;9ED6EEF5EE379522=Song Select
;46526B6C96E7851A=Source
;073F0BD84FB2C598=Velocity
;90803304EBE7C40E=track
;97D314BE6757F16B=Grid:
;2ACA9A5D3E5720F8=Transpose:
;366298521A7B6338=&Channel:
;E2071FAD9CE62FAB=&Length:
;CEEE8377C1EF8C86=&Position:
;12848776E53AAD00=Use + -* / for relative changes in any field.\r\nUse +1o2 to add 1 octave and 2 semitones.
;B80BE35FC002073A=Bank/Program Select
;B376015F8643AFD1=Program:
;02E6C28F6CC5D246=Velocity:
;8B359EC8CE2EF66C=Parameter:
;09CFC77E55F475C5=Cut
;2568C8EFB386D909=Delete notes
;694685A90529A559=Insert note at edit cursor
;A9D378925393ED86=Insert note at mouse cursor
;F15A7C7042D0D2C2=Join notes
;F1B40A37A3CA1D37=Mute events
;1AA6DE3444DD65AC=Note channel
;A3E22CDD7E92648A=Note properties...
;13A51C8BEEDFCE52=Paste
;4AAE40A08510E47F=Paste preserving position in measure
;F70F33492CF99E39=Select all notes
;00DE45DC2B1BE514=Select all notes with same note value
;0A80E4A5D91679BC=Select next note
;25B7D38F71473F57=Select next note with same note value
;06031C90037D1F1C=Select previous note
;CCDED5029CC82837=Select previous note with same note value
;3AECB68ED5632B6C=Split notes
;E2DC5AE969186DD5=&Export to new MIDI file...
;B817B56070E01709=<MIDI media item list>
;478CB748FDBE3CCC=Add next note to selection
;84D4D5DA0837EE21=Add note nearest cursor to selection
;71AFE5DB5650A1AC=Add previous note to selection
;A89552543AB2CDD5=Always snap notes to the left when snap enabled
;581FB0AB97CF5030=Auto-select CC when moving/copying within project time selection
;84DBA574F27F3A00=Automatically correct overlapping notes
;76CD8A8C7B0631AB=Automatically save modified file on close
;382FD4F0FD467B41=Clear all note names
;D6FAC22FB212CB64=Clear color map (use default)
;8D9454B5ACC4065B=Clear editor when changing active media item (shift toggles)
;F3E22CD65444C138=Close active media item
;4EF8C853781760C8=Close all inactive MIDI media items
;725966964817F84F=Close all inactive media items
;DA3A13552E571A48=Close the active MIDI media item
;AAD780F2936DFA0C=Color notes by
;5479D7FA9A2ADB81=Contents
;91E3DBF71C5D78E4=Customize menus/toolbar...
;D57975D16046D5B2=Customize note colors
;5DCA5705AA5A2FCE=Customize note names
;F77DBFF425C7412D=Delete events
;458E371D81F5AF00=Diamonds (drum mode)
;CBA3F4617B7ED4EB=Drawing or selecting a note sets the new note length
;22F2CC2A38A97EDC=Event properties...
;0B0113E292076F0C=Filter events...
;EFEE658757CE9229=Freeze quantization
;DBDB8690C26086AF=Hide unused and unnamed note rows
;EC7AC3AA42C4D72E=Hide unused note rows
;97A35548BE7EAAB4=Humanize...
;1D4EDA35A99AEFAE=Insert note
;DFBC279E68B89582=Load color map from file...
;5EF7E5C1AEA8878B=Load note names from file...
;67D1CB88D6D1EB6C=MIDI editor mouse modifiers...
;404B3253FA5D1109=Measures.Beats.100ths
;54BEE420D92D3721=Measures.Beats.MIDI_ticks
;9FFBE5433EFE0406=Mode: event list
;5BF8CF14CD14864A=Mode: named notes
;FF666E7FCCA22D1A=Mode: piano roll
;6607D5713D480284=Move cursor down one note
;C49755DA0BFA8192=Move cursor left by grid
;CAD1ABE1EFE17F39=Move cursor right by grid
;44AFE395C08B577F=Move cursor up one note
;E3F7820C74DA6C74=Move edit cursor to start of selection
;AF43535681296117=Multiple media items
;331179D476F216EC=Navigate
;DFB842604B04659A=Piano roll notes
;AC73D1BFD8821FC1=Piano roll timebase
;1C7C45FBC54D62E7=Preview notes on add/edit
;08A04EC237FB2661=Project beats
;8CFE0E2A8D9A34F6=Project synced
;2B9FBBB7B42D2295=Project time
;094D37BBB2035D08=Quantize
;809D9AA3B4306FA0=Quantize position to grid
;3410CCD7F87501B1=Quantize using last settings
;596C077CE46E04EE=Quantize...
;6F5879A58A373F2D=Rectangles
;E075349CF7FE45D8=Remove selected duplicate notes
;A38F6B757E6A088D=Rename MIDI take...
;4D2D5A1140F47C5C=Rename current note
;E97016D7BAEA01EB=Save note names to file...
;E15DF529704AB25D=Select all events
;2E4824657E9919FB=Select note nearest cursor
;7CE9611BE854D12E=Set note ends to start of next note
;F63AE8DA71068B90=Show all note rows
;B7F8226EA3A3E4D4=Show color selector at bottom of editor
;B3A278DCD3CFC6D2=Show note names on notes
;8D4D0B4B0B6A41EE=Show velocity handles on notes
;F2C5D93EA511931D=Show velocity numbers on notes
;0349058E1C6FCD22=Show/hide note rows
;B0D208726D814CEB=Snap note ends to grid when snap enabled
;8881802479A8CAAF=Source beats
;1A360D9AC072403B=Source, using color map
;CC5C392366BA1F24=Split note under mouse cursor
;92B3E3433F0904A6=Switch the active media item by double-clicking an inactive note
;7311049CDCA4C175=Sync editor transport to project transport
;0B32ABB1DB8D2C46=Time format for ruler, transport, event properties
;62C6BA8296D6CBAC=Timebase help...
;7CFDC5E4E1F4B4C0=Transpose...
;22E2AB4758B4B1A6=Triangles (drum mode)
;5F02ABE17A3B29CB=Unquantize
;19A497F8ACEBBCD9=Use F1-F12 for step recording
;1EF9DD5F05BC8D89=Use all MIDI inputs for step recording
;C2EA750B659102CA=View
;0E44CD2EEA4BA863=Humanize notes...
;C0647C0C15A70DB9=Dock editor
;B9E01E945963FBE3=Revert (.mid source only)
;C52E96757D127F12=Save (.mid source only)
;8BD3DE8B5B83C01C=Snap to grid
;8AF60DF50912755E=Select all events in lane
;C0ABC9951CF45E7F=Unselect all events in lane
;4C121E685B2BF818=Double length of MIDI (repeating contents)
;5FCC35227BCB6C5D=Invert selection
;3595163B199DC483=Select all CC events
;B1403E623CE3075B=Split notes on grid
;9EBC00F62F9F9F8C=Unselect all CC events
;0A8BAF4C6945400F=Length
;0C364228BCD76FE0=(Unknown action)
;F5EF50B6945EBD84=Edit note velocity
;4979490C7DD5AF71=Erase note
;AEC62239D2186066=Erase notes
;362F40DC93DD9F89=Split Items
;619D4CDD3C442997=Toggle item mute
;114DD782C0C098CF=Toggle track solo
;F1645A05AF505BE7=Unknown
;F9AA9CDDCDB641C6=Edit loop points
;B3E3EB828D92742C=Set time selection
;08323607B4EAE497=R
;436541C52DD92FA4=1 cent
;409F65C60F8CB038=1 semitone
;114DBCE49FB5ED08=10 cent
;6F4D3FBD428960E0=25 cent
;ECD95980EE3502F8=5 cent
;77FCCED98127C864=50 cent
;A159C77E1AA46F0C=Off
;79DF6C21E88B8F28=Show the last user action in REAPER's menu bar. Clicking the action will open the undo window.
;B726931672EE1B2F=Above Normal
;FC0E6CF88C55D677=Time Critical
;BE8A32189AE58F83=Edit cursor
;747DCF8B8F0D8AE4=-inf..+0dB
;85D1498B98DE6886=-inf..+6dB
;A97DAA4FBD1778A5=(default)
;37CA03251A2D7A8B=Buffering
;08A52B89A26D4975=Device
;3DC3C3589C65D706=MIDI
;D9B22A6B63054364=Enabled
;1FF9566969CABE07=Post-Fader (Post-Pan)
;F378819F0E95F1B9=Pre-FX
;ADA3EA2F08216BCF=Pre-Fader (Post-FX)
;AF63BD4C8601B7DF=
;AFCA4361EC2D09C2=Show/hide columns:
;B3D2C76823B56BAB=Channel %d
;081CECC31B65E0C4=Set track automatic record-arm when selected
;F7B45F7E4B7A392C=End
;8BEB3C381FB2F1CE=Color
;8B6AF9AC93B99233=Chan
;D8D5C8186BA98B94=ch
;1978358DE99DE2C5=Receives
;4A47B5FB012F8EBE=Sends
;43632077D6FCDE72= - NOT FULLY CONNECTED
;6B562789A5A9817F=Close Window
;FC57ED035694C1B9=Global automation override
;DD8A091DA2BE9107=Move envelope to media lane
;4A3C8E6E015918A1=Unfreeze tracks
;24962B4247630C73=MIDI output
;1D883542B837B976=Multiple changes
[DLG_102] ; IDD_MAIN
;246546A2AD3EB0B4=REAPER (initializing)
;7C817796156B22C3=REAPERwnd
;360EA1C1D674566F=trackview
;9320B43CE8F50284=timeline
[DLG_103] ; IDD_CFG_WAVEOUT
;87581AC5D2800078=Buffers:
;^042F4DCA75E1BE47=16 bit
;^CC85D146650F3E66=24 bit
;^5188BC03D80E2D31=32 bit
;^E8589A5C2472187A=samples
;^B5431ED426EE5CA5=Input Device:
;^081F5207A6D5AA8E=Sample Format:
;^F97A12BF98D450CF=Samplerate:
;^D858BC186B3FE51D=Hz
;^08325007B4EB10C5=x
;^A7BA0064C3A88716=Output Device:
;^DA38E298C189302F=Input channels:
;^C6FA709C7A5DB354=Output channels:
[DLG_104] ; IDD_CFG_ASIO
;079C56F9CD13F6B5=Enable inputs:
;8FECF2FB07698C41=ASIO Configuration...
;E03433B4BCCBB5D9=Pre-zero output buffers, useful on some hardware (higher CPU use)
;C454DD4172CEBF46=Ignore ASIO reset messages (needed for some buggy drivers)
;1FA658ADC1732D9B=ASIO Driver:
;FDB97B20FF12B77B=Output range:
;7B252F5391C4399B=first
;7194096AEB85F79F=last
;ED7D207F6EC85E77=ASIO thread priority:
;^0FF98CDC4588805A=Request sample rate:
;^3E83534995169108=Request block size:
[DLG_110] ; IDD_CHANNELVIEW
;^8F5EC83B8413B57D=REAPERVirtWndDlgHost
[DLG_118] ; IDD_PREFS_AUDIOCONFIG
;0314604C3913412E=Audio system:
;E9C70EA3B03F0A91=Allow projects to override device sample rate
;^16464B290024A7A0=Audio device settings
[DLG_120] ; IDD_MISCSRCINFO
;7E57903FDA4E3E8E=Media File Properties
;^3BF92ABFA8425D90=Filename: