-
Notifications
You must be signed in to change notification settings - Fork 4
/
template_2015-03-23.ReaperLangPack
14890 lines (14322 loc) · 648 KB
/
template_2015-03-23.ReaperLangPack
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.
; You can enlarge windows using 5CA1E00000000000=scale, for example:
; [DLG_218] ; IDD_LOCKSETTINGS
; 5CA1E00000000000=1.2
; This makes the above dialog 1.2x wider than default.
[common]
;042F4DCA75E1BE47=16 bit
;CC85D146650F3E66=24 bit
;5188BC03D80E2D31=32 bit
;D858BC186B3FE51D=Hz
;DA38E298C189302F=Input channels:
;9324D41856E3D6C5=Input device:
;C6FA709C7A5DB354=Output channels:
;CD3ECB2096970F76=Output device:
;E600874BD6CA4B2E=Sample format:
;F97A12BF98D450CF=Samplerate:
;E8589A5C2472187A=samples
;08325007B4EB10C5=x
;3E83534995169108=Request block size:
;0FF98CDC4588805A=Request sample rate:
;D9B12705AD844C62=List1
;DCEF2B4D03DE723C=Name
;87DB547E0C57B4B8=Run
;5B664677E1A91155=Start
;772CECA01AD73CB4=Value
;16464B290024A7A0=Audio device settings
;BAC64C1B2E060EE5=Close
;C01085DD37178417=File info:
;3BF92ABFA8425D90=Filename:
;9BC67B482921A263=About REAPER
;71C25F1D72929445=Tab1
;DA1E84CE6CE89AC1=(beat pattern help)
;6D0FDC8D1C9C5504=+0.0 dB
;C6AD52C994C055E0=- or -
;D7323C887B0A2951=Apply
;A2D4EB52B7EE75E1=Beat click length:
;FAFEDF2AD7647CED=Beat pattern:
;F685FB3A91025549=Browse...
;F09E4B5C35AA14B9=Cancel
;9779134B67DD9400=Frequency of primary beat:
;D840E3186B2B9581=OK
;41A6CA9D8495660D=Primary beat sample:
;0F26BD416D677121=Primary beat volume:
;80194C173B470AF3=Save as default
;6EB36A3171C83722=Secondary beat gain:
;C02439CCED984101=Secondary beat:
;649ECB151A2B4705=Slider1
;6B4AECC021E5686A=ms, start shape:
;223F4865B99B73B0=Output file
;FDE95463547E83EB=Render status
;BDB7990C53BBB742=Show in explorer...
;511EAD28BA4AE493=format spec
;E1CA5A9A5CE93078=not rendering, ETA infinity
;309B13D6E0AC1A0F=Length:
;8D96C4FE778D9CA7=Source properties...
;08329907B4EB8CD0=/
;F8E8A9C19CDE7A59=Project Settings
;99FA828F906D3EE4=Find
;F19F199E8BEFFBD6=Tree1
;003BD938FD8D368D=(not set)
;D3E64988F293BA3A=Recording
;5565002CCE1DFBC7=Prompt to save/delete/rename new files:
;DDCECC683DEC9D6A=on punch-out/play
;52BC569ACECFA886=on stop
;E99EBA7FF6970DBB=...
;18E4377E5DDC2B7A=Add
;F812C7145E261C23=Remove
;5AEDD7C14E3CAEC2=Clear filter
;A27E076F9E7EA1E3=Progress1
;6D0BCBC7DDDC55E7=Type:
;49EB3CF2EE728EFF=Stop playback at end of loop if repeat is disabled
;D8B3B3186B8C817F=ms
;3BF0AA22A506F11A=Wildcards
;80BE1395BCF8C169=Download language packs
;11FA427DAF625F63=edit cursor
;62C49C467C0C15D3=Load...
;28450354F52CB7AE=Reset
;925B2CEB12D2D978=Save...
;ABEC79059CAD0B0E=Alias name:
;4D5B21719C8D85CE=Browse for file...
;81F584F9FDAE6C4F=Show in 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
;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:
;21D9AFD3561EE5AB=Stereo
;97D6D411868C112C=Time selection
;C32C641180B224AC=Frame rate:
;CA2A325DBD0A1A47=Custom1
;895BB684C276CD93=Preset name:
;EE28FE89D1A7A151=Edit Region
;7CE6FE4C74542BB2=Region Manager...
;70F01048EA75C03D=Amplitude scaling
;61946358B1034B76=Mute
;96E5C67E1437194E=Pan
;61EB857EEC517894=Record arm
;89325B4900977A87=Tracks
;8FC86C263760ACB9=Volume
;C3EB4B7A6BCD5F3C=New name:
;09939A2A8DB73EDE=Performance Meter
;BB1D7DBC1BA8233C=Routing Matrix
;10D0E37E59744608=BPM
;92AE98DDC402CEB8=Tempo:
;D99EA6A0E05B0BEC=Transport
;C644A2EBFF26E843=Automation mode:
;4E5F93B30C786CEB=Track Envelopes
;9F89BC3C59A0401C=Pan:
;1008A7CF2A029751=Width:
;B8EA9A061D794748=Navigator
;59111F850FAE5C14=Enable snapping
;3470CDBB0C544765=Media items
;00F8AF1A6A14D288=Snap settings
;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
;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:
;927D36CE7B695660=Threshold:
;1E386FB5FE43C9CC=Trailing pad:
;8C66AD45F2B879B1=Quantize to:
;850C45978587FBF4=notes
;2ACDE9B48ED97A15=Static
;E217E1085C7ED06D=Searching...
;077D2C59054EE61C=name
;122368E92DE6E29F=Reset to defaults
;1CF5D45574BE7FCD=Item Properties
;D26FE1B4C8988F96=Muted
;272E5D69D552CDA7=Not muted
;C54C5E311372A994=Notes
;2B7EEDEAE2DA5D5C=Enable metronome
;B420EF3AC9B07180=Pre-roll
;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:
;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
;D847A2186B3145BC=MB
;2ED640682AB36744=Windows
;1E894CD06766E128=octaves
;0832A307B4EB9DCE=%
;1EBC977984499408=Format
;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...
;3F0C4A774B49AF33=Run/close
;3A39C76003695360=Section:
;D9B12605AD844AAF=List2
;16780B33F0A62D18=Remove selected
;D7B51CFC5837E755=Rename
;E53622684802B745=Master
;3390D94D34F06461=None
;66D8B92631859FE9=Rename...
;5C973D1CB80B0D9F=Render...
;386EB65EE2979317=Load
;6B921CBA018B2EE0=No additional resource loaded
;FA779BCA02DBA08E=Reduce envelope points
;4F32BF040299F0AA=Enable input for control messages
;6174C6969402A488=Open project in new tab
;AF427D96E302B145=Customized menu:
;38EAAB594661F05F=Default menu:
;AA0C81725300640C=Import...
;E0A7E8E6C8588D64=Directory:
;7B21C9863AA04D13=Dither
;C1F07AAFF4522636=File name:
;1D5AC868CE7FE785=Noise shaping
;5493EE7052DCF71B=Options
;1B0AFEE5F92D9181=Presets
;928212AC32CC584E=Resample mode (if needed):
;6A003F23022A1E47=Add edge points when moving envelope points
;561C816EA4AE16DF=Add edge points when ripple editing or inserting time
;04F8C491E59F6D16=Reset to default
;BDB27E5D914EF9E2=Video
;7DA8EA3426CA11D3=Description
;C065E9FEE11B2862=(current project)
;397E19C8F7486840=Project Bay
;B23C47F019452299=Volume:
;3C63123253BCD74E=Usage
;D89CC7186B79C49A=to
;821B3CD32107333D=Track color
;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
;155268E8DDFB481C=Curve:
;1A8015E802ECC562=Item mix behavior:
;3868AB5EE29314B8=Lock
;BEE3F1BDC2A992A1=Media Item Properties
;18D0284FCA66EF48=Take FX...
;A1A721902449610D=Take media source
;ADFC12BF930BBFC9=Take properties
;268986373F235EF0=beats
;3BEB0AE437FA2F12=center
;E0B104299A7A8E2E=time
;BD7850245F5A79EE=Import
;AD510FC22D6EECAC=Active MIDI item follows selection changes in arrange view
;05E07D2942EFF739=Only MIDI items on the same track as the active item are editable
;90803304EBE7C40E=track
;B36DBB640BD652AA=Notes:
;200265593F330955=Scale Finder
;87D8D79D63721460=Open render queue...
;2227C3C30D911E85=Region/Marker Manager
;043FBD1700F7067B=Render Warning
;83C05BCE6E0BA462=semitones
;FA363E82A44BE9CC=Help
;DF2472EC2AB0BAFB=Download Python
;2C626DCBF2E2019A=ReaScript
;1616D990C579771C=seconds
;2715653EC997D088=Automation
;20BAEAD47F4513A4=Reduce envelope point data when recording or drawing automation
;CC14188D4AC6BB5D=Project settings...
;DDFC41E99D604844=Crossfade Editor
;D8CD3036A319B54F=Solo track
;F031DD957D5C1B56=Continue
;BF7C871A52628C99=Warning
;EA970E9D488A99CB=Render Queue Delay
;9261BE522DCF754F=Some sampler plugins may require initialization time to ensure all samples are loaded before starting to render output.
;01BF66E624968F18=REAPER Query
;0832A807B4EBA64D=
;BE72ADED52927C3E=Last active project
;F47146FFAED94D96=New project
;5E103081C90DF414=New project (ignore default template)
;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
;9DD55224C5C829FC=Absolute Frames
;24D0A5D8C38FD778=Add stretch marker at current position
;1E2BFE3FE36F5A1C=Add stretch markers at time selection
;CF7AF55DCCD92445=Allow anticipative FX
;BEDDCB0B40FD59A2=Allow media buffering
;B4177AFBBA909492=Apply track/take FX to items as new take
;B9A64123FC8187D3=Apply track/take FX to items as new take (MIDI output)
;84630E171AD9A159=Apply track/take FX to items as new take (mono output)
;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
;40B42F5B4E7F894C=Clear envelope
;0C670376C4015406=Click source
;196CA70C1D9D93A4=Close all projects
;A092E5D2A26EFA9C=Close project
;844E1C381BAED81D=Comps
;98178F3A662231C3=Continuous scrolling
;210B23F21E3171CA=Convert active take MIDI to .mid file reference
;00BF6D212D40163B=Convert active take MIDI to in-project source data
;691C4B8E09709260=Copy loop of selected area of items
;050AAAF896F25359=Crop list to active comp
;CAAB5CC146E0FC0B=Crop to active take
;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
;02ABE37861D00256=Enable track metering
;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
;9A01878F90736611=File
;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
;6208D6BE485CCB06=Group
;7E2DF1630E77106E=Group items
;AF8A1AC00E231ACB=Grouping Matrix
;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
;4324C9C893B102F6=Insert
;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
;B2BB1E7719F22B98=Item
;E1E348931CD6C233=Item &properties...
;0ED5B16414C9FBEC=Item and take colors
;18A490C172DBF9BB=Item processing
;68B57E0793CA5AE1=Item properties...
;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
;F19FF1FD1885ACEF=Measures.Beats (minimal)
;E06B596FB29109DC=Measures.Beats (minimal) / Minutes:Seconds
;EC6669A655FB6232=Measures.Beats / Minutes:Seconds
;09D15F38080A7701=Media
;DAB01B50C7660150=Metronome enabled
;3E62FFC31E48DC5F=Minutes:Seconds
;555922281DE5343B=Move active comp to top lane
;21F4EDEE5D02BA27=Move envelope points with media items
;6C68672E04A0F906=Move items to source preferred position (BWF)
;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
;F1032E62ED81A0C4=Open associated project in new tab
;AAB1F0BA33F2CA9C=Open copies in editor
;B49A3DAD17186E2A=Open copies in secondary editor
;C00C9ED3E1843E69=Open in built-in MIDI editor (set default behavior in preferences)
;619AF06BCC66D00F=Open in editor
;2E3DECABF5FD3B44=Open in inline editor
;8991F36B7822B489=Open in secondary editor
;4C6F30285576EE3F=Open items in editor
;C83C5309F0D5EEC0=Open project...
;D9CD3B25D255019B=Open template...
;13A51C8BEEDFCE52=Paste
;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
;D62932A5C72ACCBB=Propagate item to all similarly-named items
;D475F7AB7314098E=Propagate item to similarly-named items on track
;3C4653C38684563B=Propagate take to all similarly-named active takes
;C5C24397EF0DB674=Propagate take to similarly-named active takes on track
;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
;BB0EF92F46BDB0DB=Redo
;ECD8A7FC74B3A45A=Region Render Matrix
;92C3E890C5EC8E5D=Remove FX for active take
;F9E04376D3B7E6DE=Remove active comp from list
;EB460E40E884E6A2=Remove all stretch markers
;186444C1EA089313=Remove items
;0A6A186FCB4E720A=Remove items from group
;E6900C087FAF308F=Remove stretch markers within time selection
;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
;3C80DA00A78511C2=Reverse items as new take
;BD80D7F68741D41A=Samples
;D13A2D9F38411FDF=Save project
;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)
;D7313691278B1346=Snap stretch markers to grid
;BFBEAFF46F14B630=Snap stretch markers within time selection to grid
;0814EFA066F6B891=Source &properties...
;1F4C50B930F9D6C8=Split items at cursor
;90B859A4F328EBB9=Split items at time selection
;AF908AD98D533548=Square
;F84E1DFB577DA637=Stretch markers
;94D8EC714ED10E14=Synchronization enabled
;1589D28CD62A7BF0=Synchronization settings...
;A726FC321D37D0F0=T&ake
;71E0871D72ABD5CC=Take
;5601B9A57A757ADB=Take channel mode: Normal
;417B1A7081B07295=Take envelopes...
;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
;8DF30F24527A956A=Toggle pan active
;124E3F58D9D38C02=Toggle pan visible
;13D77626487877AE=Toggle volume (pre-FX) active
;EDAADDAE852D16DE=Toggle volume (pre-FX) visible
;6909129551C0263B=Toggle volume active
;22BB6337A73E9205=Toggle volume visible
;9A96C7D5CB612D76=Toolbar Docker
;83EA05809A680356=Touch
;D0C04B9E79D271AE=Track
;6478144A3C4FB7D2=Track grouping enabled
;1002920B25015351=Track grouping parameters...
;E8F72322AC27C447=Track icon
;08C4A189ED06CFFA=Track performance options
;3A2761697FE8C69E=Trim content behind media items when editing
;CDF129916A7161CA=Trim items to selected area
;E80224910029CDEC=Trim/Read
;0E28C6126A0CF889=Undo
;EE5CF20F98160706=Unfreeze tracks (restore previous items and FX)
;58EB14692B28F25A=Unselect all points
;C4930ADECE6F49DA=Use tonal optimized mode
;C2EA750B659102CA=View
;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
;4BB3333A13123CE6=Add FX...
;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
;82EE5475CB6FCE9F=Close window
;BC328CB03B0D078E=Copy &all FX\tCtrl+Shift+C
;F3F5886C1F6A6C85=Copy all FX
;932563A1D4D9236F=Copy selected FX
;51B6457C06E865F4=Cut selected FX
;CC1F02E05223C02F=Dock FX window in Docker
;D85ED6186B447CF9=FX
;91C05340E1D72E6F=FX Plug-ins settings...
;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
;45D48DA7AFD8FF18=Paste FX
;D15DD369C1DD169E=Remove all FX
;C4E5E30C8A3E3BDF=Remove all FX\tShift+Delete
;7B8D571E4E2F8276=Remove selected FX
;12D1E2F79FD7BDB8=Rename FX instance
;E67F0BA2C154FA57=Rename FX instance\tF2
;2A7E68360937F521=Replace FX...
;CD9DE212764F150E=Save selected FX as chain...
;10AA715E679A1188=Send all keyboard input to plug-in
;90788E770202C34E=Toggle selected FX bypass
;3821C0F763D1850D=Toggle selected FX bypass\tCtrl+B
;64F4A9D95C4E316D=Toggle selected FX offline
;685BE17D4DA686FC=Toggle selected FX offline\tCtrl+Alt+B
;43EF57CE3ADA8A28=Unfreeze track
;024457DEEDAF4C2C=Window float selected FX
;907F0944C42611FB=Window float selected FX\t(doubleclick)
;3683BEB2CD7D7896=&Edit JS FX...
;D86FE1186B5302DD=AU
;191E307E5E0D97DC=AUi
;6EFA7E4EF87CA485=Auto-clear search field on close
;4018D271D54282D1=Auto-clear search field on folder change
;F1288C037F484D01=Cockos
;D6DB6AF3F0039A90=Create new &JS FX...
;D1015785000960A4=Create new JS FX...
;D865D2186B4A94DB=DX
;FF98B17E4FBAAA76=DXi
;146E11E319517217=Dock FX browser in Docker
;2A31DB0B5883713A=Edit JS FX...
;F98A75D77CD68109=FX Chains
;EFDD0AC32D858D23=Instruments
;D851E3186B3A08B4=JS
;44914FDF8A0DA00C=Recent
;CC9253BC8BC18E8D=Rename FX...
;A179E53BE5D2EC67=Scan for new plugins
;C38B9A2C2E8AF67B=Show JSFX filenames and descriptions
;17B1F5D0189AC98B=Show JSFX filenames instead of descriptions
;111F67D1C0E01057=Show default FX presets
;DD4C8B57B6C4F338=Show in left pane list
;6388A67DF74AFA94=VST
;40B8E8A7530FEAA1=VST folders
;6C2D8F0B3467E9C5=VST3
;3953BC0A0C920F44=VST3i
;6C2DE50B34687BE7=VSTi
;F1707CB9030B35E0=Automatic record-arm when track selected
;914F5B81FECF32F5=Copy selected area of items
;349F55EF86232987=Create measure from time selection (detect tempo)
;4B37D6054E63E942=Create measure from time selection (new time signature)...
;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
;D471352EB3F51E49=Add FX chain
;476CA46F5CC9791B=Remove send
;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
;CF4149897EC941E3=Connect
;0B76DAB9034D4C25=Disconnect
;B814E3BFB72A607B=Delete preset
;37E1C985732EDDC1=Save preset...
;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
;4D7E1F0F4DFA5B57=Export VST patch/bank file (.fxp/.fxb)...
;B9ABDBF036490D44=Export preset library (.rpl)...
;A323B989757B042A=Import VST patch/bank file (.fxp/.fxb)...
;1E031E71B52167CD=Import preset library (.rpl)...
;18A8E487E05046F8=Inform plug-in when track channel count changes
;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
;3460E53D021E70FE=Close all projects but current
;213CDB1B65EA8A91=Monitoring FX...
;41BED5570D76889B=Remove Marker
;591C4FE46C7B0E21=Remove Region
;C5B3CE5C6E29439A=Edit time signature marker...
;D65885774203EA34=Remove time signature marker
;4C5A9B01CD346DD0=Exclusive solo
;51B57BB98FEF688B=Ignore selection
;76EE6BE79431DD36=Ignore selection\tShift
;0420AF237D97ECB8=Solo
;BCB3C3B4A1794FDC=Unsolo all
;B348AEAE3BC8702E=Exclusive mute
;2A10B822A0A5485E=Unmute all
;09CFC77E55F475C5=Cut
;A354AA07A4DF9BBD=Enable grouping
;09A01E8714A0B688=Comment
;FE0BBBB916484A16=New project bay window
;9F31623C59553158=Path
;1A6E49AB086243F9=MIDI 1
;1A6E46AB08623EE0=MIDI 2
;1A6E47AB08624093=MIDI 3
;1A6E4CAB08624912=MIDI 4
;1A6E4DAB08624AC5=MIDI 5
;1A6E4AAB086245AC=MIDI 6
;1A6E4BAB0862475F=MIDI 7
;1A6E50AB08624FDE=MIDI 8
;8C591324B04C3AED=MIDI piano roll toolbar
;7C3B88238C71DAA1=Main toolbar
;27C488257589FFA9=Toolbar 1
;1CF2F0A6B97D50FB=Toolbar 10
;1CF2EFA6B97D4F48=Toolbar 11
;1CF2F2A6B97D5461=Toolbar 12
;1CF2F1A6B97D52AE=Toolbar 13
;1CF2F4A6B97D57C7=Toolbar 14
;1CF2F3A6B97D5614=Toolbar 15
;1CF2F6A6B97D5B2D=Toolbar 16
;27C485257589FA90=Toolbar 2
;27C486257589FC43=Toolbar 3
;27C48B25758A04C2=Toolbar 4
;27C48C25758A0675=Toolbar 5
;27C48925758A015C=Toolbar 6
;27C48A25758A030F=Toolbar 7
;27C48F25758A0B8E=Toolbar 8
;27C49025758A0D41=Toolbar 9
;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
;8A3F14717826D8D1=Width
;514129849A113DA0=(unknown)
;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
;0832A507B4EBA134=#
;73532F71FB46906C=(not connected)
;0EC28D42C155A657=---- User Presets (.rpl) ----
;11B3B66593F236CF=Confirm Preset Delete
;0A98866C997B323D=MIDI Bus %d
;93244D3BB94E6F33=No preset
;17B3AE10A9CC3695=Plug-in state data size:
;274E7C84B3E58DB8=Reset to factory default
;D8C1A6186B98A8C4=in
;B7290B7EB82C4051=out
;F420AC1723391ECE=Master track
;629548803B048F00= -
;7110EEEF2B77963B=Duration
;463D73C293F60F91=Unknown Error
;9EC3E20500624AAF=Error
;2430BBE52E3FC625=Comp %d
;2A6ED1B48E88BCC9=Status
;BABD655B2A5AED87=Select a directory:
;EE1268CA4B845A22=# FX
;9747AB7E1489B5C8=PDC
;43855E7B817F2992=ReaMote
;D9220AE04A08F86B=Error opening file
;09A3E92731A691E1=Length: %s
;AF63BD4C8601B7DF=
;4B1F235812EEE9D6=MUTE
;AEF53FB432FD3810=Tempo map
;480A73B43C308366= (folder)
;65971737BB8DFA2C=Send Envelopes
;A74298433E1F4B3D=Track Channel
;C499FEFB8CC28F79=Filter
;5D4FC446DED74611=Output Channel
;0DBD7F7EE933458C=end
;1B262DDE53BE63B5=start
;322690F7CBF0FD23=Pitch:
;F3D409ED59BA245F=pause
;682ABD4822D9748D=play
;745797F93833F418=repeat
;5A07982F9797D6A7=stop
;ACF539B15A75BF74=(no path)
;E321075F38B5E684=+/- 12 semitones
;CEEC86A957312AA9=+/- 2 semitones
;CD9C9586B6C680BD=+/- 6 semitones
;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
;A50F76D2156ADF7C=Continuous
;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
;F59487584435052D=Pitch shift knob behavior (shift toggles)
;B2579E00120F065C=Pitch shift knob range
;EB15808B1540C1AC=Preserve pitch when tempo-matching
;8845CB59F1A758F9=Preview REAPER projects (.RPP)
;2F74CCDD701B9BA8=Quarter tones
;18B2EB557BCF81C7=Reset pitch when changing media
;E3B4DC554BBF6002=Semitones
;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
;2D126F1D4BD6B8C7=Type
;ACE17ED77A0CFB39=Insert into project
;D204E3D46BB8DD12=Open project
;A43D5AFECAA46489=Preview
;2C078B30A2995EDB=ReaRoute Output
;4789C5332441688D=Error finding an unused filename for output. Source file:\r\n\t
;6A8323D4A2DF56E0=Explode multichannel media
;A1BB777BE5203666=Open Copy Error
;FEAA833C7533B5D0=File not found
;1091E0FE22106AFC=Channels: %d
;CD2E4AA3231DEC4D=File not opened
;71831478CADD789A=File offline
;439CE51FC4707DDD=Length:
;9570937682166424=Samplerate: %d
;D730907ADC00D444=Unknown error/status
;1C9976E435832BEB=Bypass
;17E7264672EB4EC9=FX comment for:
;67D35DD28653A00A=bypassed
;524E96E1AA7F8E60=Add FX
;82E42D2FF8D25A8D=Could not get channel info for effects (are they multichannel?)
;915C69C77F31F221=Envelope:
;D726E2A6E8466B26=Create new MIDI file:
;C92094118C504736=Rename Group
;08323B07B4EAED16=M
;08323507B4EAE2E4=S
;1EBBCAFED2D3BA25=master
;11769ACBDEF004CC=Edit tempo/time signature marker
;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
;80E92B8E090EA373=render
;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:
;7C0BD7F6D6C1126C=Code error
;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
;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
;DB927D2B0D27A97F=Primary
;D4C05341A170A81B=Secondary
;4EC7F7461DF2D993=&Note:
;7026A011104B1446=&Value:
;742F5D29C7564242=&Velocity:
;B817B56070E01709=<MIDI media item list>
;01DA63B41FEE389F=<no patch file loaded>
;D3D2747652BD318E=All channels
;F3238895531F739E=Channel
;E4DA54B8178F9F4F=Edit Sysex Event
;F7B45F7E4B7A392C=End
;5EF7E5C1AEA8878B=Load note names from file...
;430304A419B0E574=Note Properties
;C54C973113730A6F=Note:
;C645D4DB5297312E=Poly Aftertouch
;2ADD7A879D22FA5C=Position
;B376015F8643AFD1=Program:
;9ED6EEF5EE379522=Song Select
;02E6C28F6CC5D246=Velocity:
;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
;B16F3BCB9C49D151=Add to selection
;62D61C82DFC06ED3=High
;34256B9EEE178D2F=Invert
;8B359EC8CE2EF66C=Parameter:
;D21C990ADFD61587=Show only events that pass filter
;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...
;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...
;6F87B4883474F043=(Hold shift key to merge note names)
;6BFE2688487DD768=<recent note name files>
;478CB748FDBE3CCC=Add next note to selection
;84D4D5DA0837EE21=Add note nearest cursor to selection
;71AFE5DB5650A1AC=Add previous note to selection
;6B25D8449FD79DF4=Allow MIDI note edit to extend the media item
;A958A4ED6B3FE77D=Always snap notes/CC to the left
;581FB0AB97CF5030=Auto-select CC when moving/copying within project time selection
;84DBA574F27F3A00=Automatically correct overlapping notes
;76CD8A8C7B0631AB=Automatically save modified file on close
;8AEA4F30E06A7A87=Behavior for \"open items in built-in MIDI editor\"
;AE1C4652DA3C4CFB=CC events in multiple media items