forked from sonic-pi-net/sonic-pi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonic-pi_ru.ts
2560 lines (2555 loc) · 110 KB
/
sonic-pi_ru.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ru_RU">
<context>
<name>MainWindow</name>
<message>
<location filename="../mainwindow.cpp" line="204"/>
<location filename="../mainwindow.cpp" line="4372"/>
<location filename="../mainwindow.cpp" line="4400"/>
<source>Sonic Pi</source>
<translation>Sonic Pi</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="353"/>
<source>Welcome to Sonic Pi</source>
<translation>Добро пожаловать в Sonic Pi</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="481"/>
<source>Preferences</source>
<translation>Параметры</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="615"/>
<source>Log</source>
<translation>Журнал</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="692"/>
<source>Help</source>
<translation>Помощь</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1083"/>
<source>Indenting selection...</source>
<translation>Отступ выделения...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1089"/>
<source>Indenting line...</source>
<translation>Отступ линии...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="871"/>
<source>Full screen mode off.</source>
<translation>Выключить полноэкранный режим.</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="4732"/>
<source>Visit http://sonic-pi.net to download new version</source>
<translation>Посетить http://sonic-pi.net чтобы скачать новую версию</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1301"/>
<source>Toggle selection comment...</source>
<translation>(Рас)комментирование выделенного кода...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="621"/>
<source>Cues</source>
<translation>Сигналы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="627"/>
<source>Link Metronome & Global Time Warp</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1307"/>
<source>Toggle line comment...</source>
<translation>(Рас)комментирование строки кода...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2973"/>
<source>Toggle information about Sonic Pi</source>
<translation>Показать информацию о Sonic Pi</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="4760"/>
<source>Enabling MIDI input...</source>
<translation>Включение MIDI ввода...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="4768"/>
<source>Disabling MIDI input...</source>
<translation>Отлючение MIDI ввода...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="4786"/>
<source>No connected input devices</source>
<translation>Нет подключённых устройств ввода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="4787"/>
<source>No connected output devices</source>
<translation>Нет подключённых устройств вывода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="603"/>
<source>Scope</source>
<translation>Осциллограф</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="751"/>
<source>Playing Sample...</source>
<translation>Проигрывается пример...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1438"/>
<source>Audio Inputs Enabled. Restart Sonic Pi for this setting to take effect...</source>
<translation>Аудиовходы включены. Перезапустите Sonic Pi, чтобы эта настройка вступила в силу...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1440"/>
<source>Audio Inputs Disabled. Restart Sonic Pi for this setting to take effect...</source>
<translation>Аудиовходы отключены. Перезапустите Sonic Pi, чтобы эта настройка вступила в силу...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1542"/>
<source>Apologies, unable to start...
</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1544"/>
<source>Sorry, Sonic Pi is having issues booting:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1548"/>
<source>Please consider reporting a bug at</source>
<translation>Подумайте о том, чтобы отправить отчёт об ошибке на</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1706"/>
<location filename="../mainwindow.cpp" line="1708"/>
<location filename="../mainwindow.cpp" line="1724"/>
<location filename="../mainwindow.cpp" line="1726"/>
<source>Buffer files</source>
<translation>Файлы буфера</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1708"/>
<source>Load Sonic Pi Buffer</source>
<translation>Загрузить буфер Sonic PI</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1708"/>
<location filename="../mainwindow.cpp" line="1726"/>
<source>Text files</source>
<translation>Текстовые файлы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1708"/>
<location filename="../mainwindow.cpp" line="1726"/>
<source>Ruby files</source>
<translation>Ruby файлы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1708"/>
<location filename="../mainwindow.cpp" line="1726"/>
<source>All files</source>
<translation>Все файлы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1726"/>
<source>Save Current Buffer</source>
<translation>Сохранить Текущий Буфер</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1855"/>
<source>Running Code...</source>
<translation>Выполнение Кода...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1860"/>
<source>Zooming In...</source>
<translation>Увеличение масштаба...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1867"/>
<source>Zooming Out...</source>
<translation>Уменьшение масштаба...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1874"/>
<source>Beautifying...</source>
<translation>Украшение...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1900"/>
<source>Reloading...</source>
<translation>Перезагрузка...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1908"/>
<source>Checking for updates...</source>
<translation>Проверка обновлений...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1916"/>
<source>Enabling update checking...</source>
<translation>Активирование проверки обновлений...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1924"/>
<source>Disabling update checking...</source>
<translation>Отключение проверки обновлений...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1932"/>
<source>Enabling Mixer HPF...</source>
<translation>Активирование Микшера ВЧФ...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1941"/>
<source>Disabling Mixer HPF...</source>
<translation>Отключение Микшера ВЧФ...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1949"/>
<source>Enabling Mixer LPF...</source>
<translation>Активирование Микшера НЧФ...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1958"/>
<source>Disabling Mixer LPF...</source>
<translation>Отключение Микшера НЧФ...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1966"/>
<source>Enabling Inverted Stereo...</source>
<translation>Активирование Инвертированного Стерео...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1974"/>
<source>Enabling Standard Stereo...</source>
<translation>Активирование Стандартного Стерео...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1982"/>
<source>Mono Mode...</source>
<translation>Моно Режим...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1990"/>
<source>Stereo Mode...</source>
<translation>Стерео Режим...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="1999"/>
<source>Stopping...</source>
<translation>Остановка...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2044"/>
<source>Hiding about window...</source>
<translation>Скрываю окно `о программе`...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2050"/>
<source>Showing about window...</source>
<translation type="unfinished">Отображаю окно `о программе`...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2069"/>
<source>Hiding help...</source>
<translation>Скрываю окно 'помощь'...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2075"/>
<source>Showing help...</source>
<translation>Отображаю окно 'помощь'...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2138"/>
<source>Updating System Volume...</source>
<translation>Обновление системной громкости...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2303"/>
<source>Log Auto Scroll on...</source>
<translation>Автопрокрутка журнала вкл...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2307"/>
<source>Log Auto Scroll off...</source>
<translation>Автопрокрутка журнала выкл...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2372"/>
<source>Colour Theme: </source>
<translation>Цветовая схема: </translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2544"/>
<source>Auto Indent mode enabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2546"/>
<source>Auto Indent mode disabled</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2608"/>
<source>Show autocompletion on</source>
<translation>Включить автодополнение кода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2612"/>
<source>Show autocompletion off</source>
<translation>Выключить автодополнение кода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2630"/>
<source>Show context on</source>
<translation>Включить показ контекста</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2639"/>
<source>Show context off</source>
<translation>Выключить показ контекста</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2655"/>
<source>Hiding preferences...</source>
<translation>Закрытие настроек...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2661"/>
<source>Showing preferences...</source>
<translation>Открытие настроек...</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2934"/>
<location filename="../mainwindow.cpp" line="3272"/>
<source>Comment/Uncomment code</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2935"/>
<location filename="../mainwindow.cpp" line="3276"/>
<source>Transpose Characters</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2936"/>
<source>Shift Line or Selection Up</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2937"/>
<source>Shift Line or Selection Down</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2938"/>
<source>Move Cursor Down</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2939"/>
<source>Move Cursor Up</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2940"/>
<source>Move Cursor Down 10 Lines</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2941"/>
<source>Move Cursor Up 10 Lines</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2942"/>
<source>Cut to the end of the line</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2943"/>
<source>Copy the current selection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2944"/>
<source>Cut the current selection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2945"/>
<source>Paste the current selection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2946"/>
<source>Move Cursor Right</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2947"/>
<source>Move Cursor Left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2948"/>
<source>Delete Right</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2949"/>
<source>Delete Left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2950"/>
<source>Move Cursor to Start of Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2951"/>
<source>Move Cursor to End of Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2952"/>
<source>Move Cursor to Start of Document</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2953"/>
<source>Move Cursor to End of Document</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2954"/>
<source>Move Cursor Right by Word</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2955"/>
<source>Move Cursor Left by Word</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2956"/>
<source>Vertially center the caret in the editor</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2957"/>
<source>Undo the last action</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2958"/>
<source>Redo the last undo</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2959"/>
<source>Select all text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2960"/>
<source>Delete word to the right</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2961"/>
<source>Delete word to the left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2962"/>
<source>Uppercase word or selection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2963"/>
<source>Lowercase word or selection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2966"/>
<source>Set a mark in the text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2968"/>
<source>Look up documentation for the current word</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2972"/>
<source>Cycle through the available colour themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2976"/>
<source>Switch to the previous tab</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2977"/>
<source>Switch to the next tab</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2978"/>
<source>Switch to tab 1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2979"/>
<source>Switch to tab 2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2980"/>
<source>Switch to tab 3</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2981"/>
<source>Switch to tab 4</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2982"/>
<source>Switch to tab 5</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2983"/>
<source>Switch to tab 6</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2984"/>
<source>Switch to tab 7</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2985"/>
<source>Switch to tab 8</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2986"/>
<source>Switch to tab 9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2987"/>
<source>Switch to tab 0</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2991"/>
<source>Place focus on the logs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3000"/>
<source>Show or hide the buttons</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3001"/>
<source>Show or hide the cue log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3002"/>
<source>Show or hide the log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3003"/>
<source>Zoom in the log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3004"/>
<source>Zoom out the log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3005"/>
<source>Toggle fullscreen mode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3243"/>
<source>Exit</source>
<translation>Выйти</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3248"/>
<source>Run</source>
<translation>Выполнить</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5232"/>
<source>Sonic Pi - Unable to Write to Home Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5238"/>
<source>Boot Error - Home Dir not writable:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5240"/>
<location filename="../mainwindow.cpp" line="5252"/>
<source>Quick Fix: set the environment variable SONIC_PI_HOME to a directory you have permission to write to.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5244"/>
<location filename="../mainwindow.cpp" line="5256"/>
<source>For the curious among you, Sonic Pi automatically stores the contents of the code buffers, configuration files and logs in a folder called .sonic-pi which typically resides in your home directory.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5245"/>
<source>Unfortunately you don't appear to have permission to write to your home directory:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5246"/>
<location filename="../mainwindow.cpp" line="5258"/>
<source>To fix this you can set the environment variable SONIC_PI_HOME to any directory you have write access to and Sonic Pi will place its .sonic-pi directory within that.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5250"/>
<source>Boot Error - SONIC_PI_HOME not writable:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="5257"/>
<source>Unfortunately it appears you have set the SONIC_PI_HOME environment variable to a directory you don't have permission to write to:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2928"/>
<source>Run the code in the current buffer</source>
<translation>Выполнить код текущего буфера</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3252"/>
<source>Stop</source>
<translation>Остановить</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2929"/>
<source>Stop all running code</source>
<translation>Остановить весь запущенный код</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2931"/>
<source>Save current buffer as an external file</source>
<translation>Сохранить текущий буфер как внешний файл</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3264"/>
<source>Load</source>
<translation>Загрузить</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2932"/>
<source>Load an external file in the current buffer</source>
<translation>Загрузить внешний файл в текущем буфере</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3268"/>
<source>Indent Code Buffer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3370"/>
<source>Code Size Up</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3374"/>
<source>Code Size Down</source>
<translation>Уменьшить размер кода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3378"/>
<source>Show Scopes</source>
<translation type="unfinished">Показать осциллографы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3388"/>
<source>Show Info</source>
<translation>Показать информацию</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3394"/>
<source>Show Help</source>
<translation>Показать окно помощи</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3400"/>
<source>Show Preferences</source>
<translation>Показать настройки</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3463"/>
<source>Show Line Numbers</source>
<translation>Показать номера строк</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3468"/>
<source>Show Code Completion</source>
<translation>Показать автодополнение кода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3473"/>
<source>Show Code Context</source>
<translation>Показать контекст кода</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3478"/>
<source>Enable Audio Inputs</source>
<translation>Включить Аудио Входы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3483"/>
<source>Link Connect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2988"/>
<source>Connect or disconnect the Link Metronome from the network</source>
<translation>Присоединить или отсоединить Метроном от сети</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3488"/>
<source>Tap Tempo</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="2989"/>
<source>Click Link Tap Tempo</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3491"/>
<source>Safe Audio Mode</source>
<translation>Режим Безопасного Звука</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3496"/>
<source>Enforce Timing Guarantees</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3501"/>
<source>Enable External Synths</source>
<translation>Включить Внешние Синтезаторы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3506"/>
<source>Invert Stereo</source>
<translation>Инвертировать Стерео</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3511"/>
<source>Force Mono</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3516"/>
<source>Enable Incoming MIDI Cues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3521"/>
<source>Allow Incoming OSC</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3526"/>
<source>Allow OSC From Other Computers</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3531"/>
<source>Log Cues</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3536"/>
<source>Log Synths</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3541"/>
<source>Clear Logs on Run</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3551"/>
<source>Auto-Scroll Log</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3564"/>
<source>Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3579"/>
<source>Code</source>
<translation>Код</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3621"/>
<source>Audio</source>
<translation>Аудио</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3632"/>
<source>Visuals</source>
<translation type="unfinished">Отображение</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3634"/>
<source>Light</source>
<translation type="unfinished">Светлая</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3639"/>
<source>Dark</source>
<translation type="unfinished">Тёмная</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3644"/>
<source>Pro Light</source>
<translation type="unfinished">Светлая Pro</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3649"/>
<source>Pro Dark</source>
<translation type="unfinished">Тёмная Pro</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3654"/>
<source>High Contrast</source>
<translation type="unfinished">Высококонтрастная</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3659"/>
<source>Show Scope Labels</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3664"/>
<source>Show Titles</source>
<translation type="unfinished">Показать Заголовки</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3669"/>
<source>Hide Menu Bar in Fullscreen Mode</source>
<translation type="unfinished">Спрятать Окно Меню в Полноэкранном Режиме</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3695"/>
<source>Colour Theme</source>
<translation type="unfinished">Цветная тема</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3706"/>
<source>Show Scope Kinds</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3717"/>
<source>IO</source>
<translation type="unfinished">IO</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3725"/>
<source>MIDI Inputs</source>
<translation type="unfinished">Входы MIDI</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3726"/>
<location filename="../mainwindow.cpp" line="4784"/>
<location filename="../mainwindow.cpp" line="4901"/>
<source>No Connected Inputs</source>
<translation type="unfinished">Нет подсоединенных входов</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3727"/>
<source>MIDI Outputs</source>
<translation type="unfinished">Выходы MIDI</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3728"/>
<location filename="../mainwindow.cpp" line="4782"/>
<location filename="../mainwindow.cpp" line="4923"/>
<source>No Connected Outputs</source>
<translation type="unfinished">Нет Присоединенных Выходов</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3730"/>
<source>Default MIDI Out Channel</source>
<translation type="unfinished">MIDI Выходной Канал по Умолчанию</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3732"/>
<source>All Channels</source>
<translation>Все Каналы</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3737"/>
<source>1</source>
<translation>1</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3742"/>
<source>2</source>
<translation>2</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3747"/>
<source>3</source>
<translation>3</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3752"/>
<source>4</source>
<translation>4</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3757"/>
<source>5</source>
<translation>5</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3762"/>
<source>6</source>
<translation>6</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3767"/>
<source>7</source>
<translation>7</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3772"/>
<source>8</source>
<translation>8</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3777"/>
<source>9</source>
<translation>9</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3782"/>
<source>10</source>
<translation>10</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3787"/>
<source>11</source>
<translation>11</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3792"/>
<source>12</source>
<translation>12</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3797"/>
<source>13</source>
<translation>13</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3802"/>
<source>14</source>
<translation>14</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3807"/>
<source>15</source>
<translation>15</translation>
</message>
<message>
<location filename="../mainwindow.cpp" line="3812"/>