forked from jmoenig/Snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang-bg.js
1125 lines (989 loc) · 32.6 KB
/
lang-bg.js
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
/*
lang-bg.js
Bulgarian translation for SNAP!
This file is part of Snap!.
Snap! is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Note to Translators:
--------------------
At this stage of development, Snap! can be translated to any LTR language
maintaining the current order of inputs (formal parameters in blocks).
Translating Snap! is easy:
1. Download
Download the sources and extract them into a local folder on your
computer:
<http://snap.berkeley.edu/snapsource/snap.zip>
Use the German translation file (named 'lang-de.js') as template for your
own translations. Start with editing the original file, because that way
you will be able to immediately check the results in your browsers while
you're working on your translation (keep the local copy of snap.html open
in your web browser, and refresh it as you progress with your
translation).
2. Edit
Edit the translation file with a regular text editor, or with your
favorite JavaScript editor.
In the first non-commented line (the one right below this
note) replace "de" with the two-letter ISO 639-1 code for your language,
e.g.
fr - French => SnapTranslator.dict.fr = {
it - Italian => SnapTranslator.dict.it = {
pl - Polish => SnapTranslator.dict.pl = {
pt - Portuguese => SnapTranslator.dict.pt = {
es - Spanish => SnapTranslator.dict.es = {
el - Greek => => SnapTranslator.dict.el = {
etc. (see <http://en.wikipedia.org/wiki/ISO_639-1>)
3. Translate
Then work through the dictionary, replacing the German strings against
your translations. The dictionary is a straight-forward JavaScript ad-hoc
object, for review purposes it should be formatted as follows:
{
'English string':
'Translation string',
'last key':
} 'last value'
and you only edit the indented value strings. Note that each key-value
pair needs to be delimited by a comma, but that there shouldn't be a comma
after the last pair (again, just overwrite the template file and you'll be
fine).
If something doesn't work, or if you're unsure about the formalities you
should check your file with
<http://JSLint.com>
This will inform you about any missed commas etc.
4. Accented characters
Depending on which text editor and which file encoding you use you can
directly enter special characters (e.g. Umlaut, accented characters) on
your keyboard. However, I've noticed that some browsers may not display
special characters correctly, even if other browsers do. So it's best to
check your results in several browsers. If you want to be on the safe
side, it's even better to escape these characters using Unicode.
see: <http://0xcc.net/jsescape/>
5. Block specs:
At this time your translation of block specs will only work
correctly, if the order of formal parameters and their types
are unchanged. Placeholders for inputs (formal parameters) are
indicated by a preceding % prefix and followed by a type
abbreviation.
For example:
'say %s for %n secs'
can currently not be changed into
'say %n secs long %s'
and still work as intended.
Similarly
'point towards %dst'
cannot be changed into
'point towards %cst'
without breaking its functionality.
6. Submit
When you're done, rename the edited file by replacing the "de" part of the
filename with the two-letter ISO 639-1 code for your language, e.g.
fr - French => lang-fr.js
it - Italian => lang-it.js
pl - Polish => lang-pl.js
pt - Portuguese => lang-pt.js
es - Spanish => lang-es.js
el - Greek => => lang-el.js
and send it to me for inclusion in the official Snap! distribution.
Once your translation has been included, Your name will the shown in the
"Translators" tab in the "About Snap!" dialog box, and you will be able to
directly launch a translated version of Snap! in your browser by appending
lang:xx
to the URL, xx representing your translations two-letter code.
7. Known issues
In some browsers accents or ornaments located in typographic ascenders
above the cap height are currently (partially) cut-off.
Enjoy!
-Jens
*/
/*global SnapTranslator*/
SnapTranslator.dict.bg = {
/*
Special characters: (see <http://0xcc.net/jsescape/>)
, \u00c4, \u00e4
, \u00d6, \u00f6
, \u00dc, \u00fc
§ \u00df
*/
// translations meta information
'language_name':
'Български', // the name as it should appear in the language menu
'language_translator':
'Иван Савов', // your name for the Translators tab
'translator_e-mail':
'[email protected]', // optional
'last_changed':
'2015-11-02', // this, too, will appear in the Translators tab
// GUI
// control bar:
'untitled':
'Без име',
'development mode':
'Режим за програмисти',
// categories:
'Motion':
'Движение',
'Looks':
'Външност',
'Sound':
'Звуци',
'Pen':
'Молив',
'Control':
'Управление',
'Sensing':
'Сензори',
'Operators':
'Оператори',
'Variables':
'Променливи',
'Lists':
'Списъци',
'Other':
'Други',
// editor:
'draggable':
'движимо',
// tabs:
'Scripts':
'Скриптове',
'Costumes':
'Костюми',
'Sounds':
'Звуци',
// names:
'Sprite':
'Спрайт',
'Stage':
'Сцена',
// rotation styles:
'don\'t rotate':
'не се върти',
'can rotate':
'върти се',
'only face left/right':
'само ляво-дясно ориентация',
// new sprite button:
'add a new sprite':
'Добави нов спрайт',
// tab help
'costumes tab help':
'импортирай изображения от друг уеб-сайт\nили от твоя компютър пускайки ги тук',
'import a sound from your computer\nby dragging it into here':
'добави звуци от твоя компютър\nпускайки ги тук ',
// primitive blocks:
/*
Attention Translators:
----------------------
At this time your translation of block specs will only work
correctly, if the order of formal parameters and their types
are unchanged. Placeholders for inputs (formal parameters) are
indicated by a preceding % prefix and followed by a type
abbreviation.
For example:
'say %s for %n secs'
can currently not be changed into
'say %n secs long %s'
and still work as intended.
Similarly
'point towards %dst'
cannot be changed into
'point towards %cst'
without breaking its functionality.
*/
// motion:
'Stage selected:\nno motion primitives':
'Избрана сцена:\nняма блокове с движение',
'move %n steps':
'напред с %n стъпки',
'turn %clockwise %n degrees':
' %clockwise с %n градуса',
'turn %counterclockwise %n degrees':
'завърти %counterclockwise с %n градуса',
'point in direction %dir':
'обърни се в посока %dir',
'point towards %dst':
'обърни се към %dst',
'go to x: %n y: %n':
'премини към x %n y %n',
'go to %dst':
'премини в точка %dst',
'glide %n secs to x: %n y: %n':
'плъзгане %n сек до x %n y %n',
'change x by %n':
'промени х с %n',
'set x to %n':
'настрой х на %n',
'change y by %n':
'промени y с %n',
'set y to %n':
'настрой y на %n',
'if on edge, bounce':
'ако е в края, отблъсни се',
'x position':
'x позиция',
'y position':
'y позиция',
'direction':
'посока',
// looks:
'switch to costume %cst':
'смени костюм с %cst',
'next costume':
'следващия костюм',
'costume #':
'костюм №',
'say %s for %n secs':
'кажи %s за %n сек',
'say %s':
'кажи %s',
'think %s for %n secs':
'мисли %s за %n сек',
'think %s':
'мисли %s',
'Hello!':
'Здрасти!',
'Hmm...':
'Хмм...',
'change %eff effect by %n':
'смени %eff ефект с %n',
'set %eff effect to %n':
'настрой ефект %eff на %n',
'clear graphic effects':
'махни ефектите',
'change size by %n':
'промени размера с %n',
'set size to %n %':
'настрой размера на %n',
'size':
'размер',
'show':
'покажи',
'hide':
'скрий',
'go to front':
'премини най-отпред',
'go back %n layers':
'премини с %n слоя назад',
'development mode \ndebugging primitives:':
'Режим за програмисти \nпримитиви за дебъгиране:',
'console log %mult%s':
'напиши в конзолата %mult%s',
'alert %mult%s':
'предупреждение %mult%s',
// sound:
'play sound %snd':
'пусни звук %snd',
'play sound %snd until done':
'пусни звук %snd до край',
'stop all sounds':
'спри всички звуци',
'rest for %n beats':
'пауза за %n такта',
'play note %n for %n beats':
'пусни нота %n за %n такта',
'change tempo by %n':
'промени темпото с %n',
'set tempo to %n bpm':
'настрой темпо %n удара в мин.',
'tempo':
'темпо',
// pen:
'clear':
'изчисти всичко',
'pen down':
'натисни молива',
'pen up':
'вдигни молива',
'set pen color to %clr':
'избери молив с цвят %clr',
'change pen color by %n':
'промени цвята на молива с %n',
'set pen color to %n':
'избери цвят %n',
'change pen shade by %n':
'промени яркостта с %n',
'set pen shade to %n':
'настрой яркостта на %n',
'change pen size by %n':
'промени размера с %n',
'set pen size to %n':
'ибери молив с размер %n',
'stamp':
'печатче',
// control:
'when %greenflag clicked':
'когато %greenflag е кликнат',
'when %keyHat key pressed':
'когато бутон %keyHat е натиснат',
'when I am clicked':
'когато кликнеш върху мен',
'when I receive %msgHat':
'когато получа %msgHat',
'broadcast %msg':
'изпрати %msg към всички',
'broadcast %msg and wait':
'изпрати %msg към всички и изчакай',
'Message name':
'Име на съобщение',
'wait %n secs':
'изчакай %n сек',
'wait until %b':
'изчакай до %b',
'forever %c':
'завинаги %c',
'repeat %n %c':
'повтори %n %c',
'repeat until %b %c':
'повтори докато %b %c',
'if %b %c':
'ако %b %c',
'if %b %c else %c':
'ако %b %c иначе %c',
'report %s':
'резултат %s',
'stop block':
'спри блока',
'stop script':
'спри скрипта',
'stop all %stop':
'спри всичко %stop',
'run %cmdRing %inputs':
'изпълни %cmdRing %inputs',
'launch %cmdRing %inputs':
'пусни %cmdRing %inputs',
'call %repRing %inputs':
'извикай %repRing %inputs',
'run %cmdRing w/continuation':
'изпълни %cmdRing с продължение',
'call %cmdRing w/continuation':
'извикай %cmdRing с продължение',
'warp %c':
'warp %c',
// sensing:
'touching %col ?':
'допира ли %col ?',
'touching %clr ?':
'допира ли %clr ?',
'color %clr is touching %clr ?':
'цвят %clr допира ли %clr ?',
'ask %s and wait':
'попитай %s и изчакай',
'what\'s your name?':
'как се казваш?',
'answer':
'отговор',
'mouse x':
'мишка x-позиция',
'mouse y':
'мишка y-позиция',
'mouse down?':
'натиснат бутон на мишката?',
'key %key pressed?':
'бутон %key натиснат?',
'distance to %dst':
'растояние до %dst',
'reset timer':
'нулирай таймер',
'timer':
'таймер',
'http:// %s':
'http:// %s',
'filtered for %clr':
'филтър за %clr',
'stack size':
'размер на стека',
'frames':
'рамки',
// operators:
'%n mod %n':
'%n модул %n',
'round %n':
'закръгли %n',
'%fun of %n':
'%fun от %n',
'pick random %n to %n':
'произволно число между %n и %n',
'%b and %b':
'%b и %b',
'%b or %b':
'%b или %b',
'not %b':
'не %b',
'true':
'true',
'false':
'false',
'join %words':
'съедини %words',
'hello':
'здравейте',
'world':
'хора',
'letter %n of %s':
'буква %n от %s',
'length of %s':
'дължина на %s',
'unicode of %s':
'Unicode на %s',
'unicode %n as letter':
'буква с Unicode %n',
'is %s a %typ ?':
'%s от тип %typ ли е ?',
'is %s identical to %s ?':
'%s идентичен с %s ?',
'type of %s':
'тип на %s',
// variables:
'Make a variable':
'Направи променлива',
'Variable name':
'Име на променливата',
'Delete a variable':
'Изтрий променлива',
'set %var to %s':
'настрой %var на стойност %s',
'change %var by %n':
'промени %var с %n',
'show variable %var':
'покажи променлива %var',
'hide variable %var':
'скрий променлива %var',
'script variables %scriptVars':
'променливи на скрипта %scriptVars',
// lists:
'list %exp':
'списък %exp',
'%s in front of %l':
'%s пред %l',
'item %idx of %l':
'елемент %idx от %l',
'all but first of %l':
'всичко осрен първия от %l',
'length of %l':
'дължина на %l',
'%l contains %s':
'%l съдържа %s',
'thing':
'нещо',
'add %s to %l':
'добави %s към %l',
'delete %ida of %l':
'изтрий %ida от %l',
'insert %s at %idx of %l':
'вмъкни %s на позиция %idx в %l',
'replace item %idx of %l with %s':
'замести елемент %idx в %l с %s',
// other
'Make a block':
'Нов блок',
// menus
// snap menu
'About...':
'За Snap!',
'Snap! website':
'Уебсайт на Snap!',
'Download source':
'Издърпай програмния код',
'Switch back to user mode':
'Премини към режим на потребителя',
'disable deep-Morphic\ncontext menus\nand show user-friendly ones':
'изключи deep-Morphic\nконтекст меню',
'Switch to dev mode':
'Премини към режим за порграмисти',
'enable Morphic\ncontext menus\nand inspectors,\nnot user-friendly!':
'включи Morphic\nконтекст менюта\nи инспектори,\nмното сложно!',
// project menu
'Project notes...':
'Записки по проекта...',
'New':
'Нов проект',
'Open...':
'Отвори...',
'Save':
'Запиши',
'Save As...':
'Запиши като...',
'Import...':
'Импорт...',
'file menu import hint':
'Зареди проект,\nблокова библиотека,\nспрайт или звук',
'Export project as plain text...':
'Експорт проекта како текст файл...',
'Export project...':
'Експорт на проект...',
'show project data as XML\nin a new browser window':
'Покажи XML данните на проекта\nв нов прозорец на браузъра',
'Export blocks...':
'Експорт на блокове...',
'show global custom block definitions as XML\nin a new browser window':
'Покажи XML дефинициите на custom блокове\nв нов прозорец на браузъра',
'Import tools':
'Импорт опции',
'load the official library of\npowerful blocks':
'Зареди официалната библиотеката от мощните блокове',
// settings menu
'Language...':
'Език...',
'Blurred shadows':
'Размити сенки',
'uncheck to use solid drop\nshadows and highlights':
'откажи за да използваш плътни\nсенки и очертания',
'check to use blurred drop\nshadows and highlights':
'избери за да използваш плътни\nсенки и очертания',
'Zebra coloring':
'Зеброви цветове',
'check to enable alternating\ncolors for nested blocks':
'избери за да включиш\nалтениращи цветове за блоковете',
'uncheck to disable alternating\ncolors for nested block':
'откажи за да изключиш\nалтениращи цветове за блоковете',
'Dynamic input labels':
'Динамични входни етикети',
'uncheck to disable dynamic\nlabels for variadic inputs':
'откажи за да изключиш динамични входни етикети\nза входни с множество стйности',
'check to enable dynamic\nlabels for variadic inputs':
'избери за да използваш динамични входни етикети\nза входни с множество стйности',
'Prefer empty slot drops':
'Предпочиай несвързани блокове',
'settings menu prefer empty slots hint':
'избери и новите блокове ще\nотместват старите',
'uncheck to allow dropped\nreporters to kick out others':
'откажи за да позволиш новите блокове\nда изместват старите',
'Long form input dialog':
'Дълга форма за входни',
'check to always show slot\ntypes in the input dialog':
'избери за да са покаже типът\nна всички входните',
'uncheck to use the input\ndialog in short form':
'откажи за да използвап кратка форма\nза входни променливи',
'Virtual keyboard':
'Виртуална клавиатура',
'uncheck to disable\nvirtual keyboard support\nfor mobile devices':
'откажи за да изключиш виртуалната клавиатура',
'check to enable\nvirtual keyboard support\nfor mobile devices':
'избери за да изпозваш виртуална\nклавиатура за мобилни устройства',
'Input sliders':
'Слайдери',
'uncheck to disable\ninput sliders for\nentry fields':
'откажи за да изключиш слайдерите\nза входни полета',
'check to enable\ninput sliders for\nentry fields':
'избери за да изпозваш слайдери\nза входни полета',
'Clicking sound':
'Звук на клик',
'uncheck to turn\nblock clicking\nsound off':
'откажи за да изключиш звука\nпри кликване върху блок',
'check to turn\nblock clicking\nsound on':
'избери за да включиш звука\nпри кликване върху блок',
'Animations':
'Aнимации',
'uncheck to disable\nIDE animations':
'откажи за да изключиш\nIDE aнимациите',
'check to enable\nIDE animations':
'избери за да включиш\nIDE aнимациите',
'Thread safe scripts':
'Thread safe скриптове',
'uncheck to allow\nscript reentrancy':
'откажи за да изключиш\nthread safe скриптове',
'check to disallow\nscript reentrancy':
'избери за да включиш\nthread safe скриптове',
// inputs
'with inputs':
'с вход на данни',
'input names:':
'имена на входните данни:',
'Input Names:':
'Имена на входните данни:',
'input list:':
'Вход на списък:',
// context menus:
'help':
'помощ',
// blocks:
'help...':
'помощ...',
'relabel...':
'смени етикета...',
'duplicate':
'дупликация',
'make a copy\nand pick it up':
'копирай\nи вземи',
'only duplicate this block':
'копирай само този блок',
'delete':
'изтрий',
'script pic...':
'изображение на скрипта...',
'open a new window\nwith a picture of this script':
'отвори нов екран\n с изображение на скрипта',
'ringify':
'ringify',
'unringify':
'unringify',
// custom blocks:
'delete block definition...':
'изтрий дефиницията на блока',
'edit...':
'редактирай...',
// sprites:
'edit':
'редактирай',
'export...':
'експорт...',
// stage:
'show all':
'почажи всичко',
// scripting area
'clean up':
'разчисти',
'arrange scripts\nvertically':
'вертикално подреждане на скриптовере',
'add comment':
'добави коментар',
'make a block...':
'нов блок...',
// costumes
'rename':
'Преименуване',
'export':
'Експорт',
'rename costume':
'Преименуване на костюм',
// sounds
'Play sound':
'Пусни звука',
'Stop sound':
'Спри звука',
'Stop':
'Стоп',
'Play':
'Пусни',
'rename sound':
'Преименувай звука',
// dialogs
// buttons
'OK':
'OK',
'Ok':
'Ok',
'Cancel':
'Отмени',
'Yes':
'Да',
'No':
'Не',
// help
'Help':
'Помощ',
// Project Manager
'Untitled':
'Без име',
'Open Project':
'Отвори Проект',
'(empty)':
'(празно)',
'Saved!':
'Записан!',
'Delete Project':
'Изтрий Проект',
'Are you sure you want to delete':
'Сирурен ли си че искаш да изтриеш?',
'rename...':
'Преименуване...',
// costume editor
'Costume Editor':
'Редактор на Костюми',
'click or drag crosshairs to move the rotation center':
'кликни за да преместиш центра на ротацията',
// project notes
'Project Notes':
'Записки по проекта',
// new project
'New Project':
'Нов Проект',
'Replace the current project with a new one?':
'Замени проекта с нов?',
// save project
'Save Project As...':
'Запиши проекта като...',
// export blocks
'Export blocks':
'Експорт на блокове',
'Import blocks':
'Импорт на блокове',
'this project doesn\'t have any\ncustom global blocks yet':
'Този проект не съдъжа\nглобални custom\nблокове',
'select':
'избери',
'all':
'всичко',
'none':
'нищо',
// variable dialog
'for all sprites':
'за вскички спрайтове',
'for this sprite only':
'само за този спрайт',
// block dialog
'Change block':
'Замени блок',
'Command':
'Команда',
'Reporter':
'Репортер',
'Predicate':
'Предикат',
// block editor
'Block Editor':
'Редактор на блокове',
'Apply':
'Приложи',
// block deletion dialog
'Delete Custom Block':
'Изтрий custom блок',
'block deletion dialog text':
'Сигурен ли си че искаш да изтиреш този блок?',
// input dialog
'Create input name':
'Направи нов вход с име',
'Edit input name':
'Редактирай име на вход',
'Edit label fragment':
'Редактирай текста етикет',
'Title text':
'Текст заглавие',
'Input name':
'Име на входа на данни',
'Delete':
'Изтрий',
'Object':
'Обект',
'Number':
'Число',
'Text':
'Tекст',
'List':
'Списък',
'Any type':
'Произволен тип',
'Boolean (T/F)':
'Булев (Т/F)',
'Command\n(inline)':
'Команда\n(inline)',
'Command\n(C-shape)':
'Команда\n(С-форма)',
'Any\n(unevaluated)':
'Произволен\n(unevaluated)',
'Boolean\n(unevaluated)':
'Булев\n(unevaluated)',
'Single input.':
'Единичен вход',
'Default Value:':
'Default стойност:',
'Multiple inputs (value is list of inputs)':
'Множество входни (спиък от данни)',
'Upvar - make internal variable visible to caller':
'Upvar - направи вътрешна променлива видима от извиквача',
// About Snap
'About Snap':
'За Snap!',
'Back...':
'Назад...',
'License...':
'Лиценз...',
'Modules...':
'Модули...',
'Credits...':
'Кредити...',
'Translators...':
'Преводачи',
'License':
'Лиценз',
'current module versions:':
'Версии на модулие',
'Contributors':
'Участници',
'Translations':
'Преводи',
// variable watchers
'normal':
'нормален',
'large':
'голям',
'slider':
'слайдер',
'slider min...':
'слайдер min...',
'slider max...':
'слайдер max...',
'import...':
'импорт...',
'Slider minimum value':
'Слайдер с min стойност',
'Slider maximum value':
'Слайдер с max стойност',
// list watchers
'length: ':
'дължина: ',
// coments
'add comment here...':
'добави коментар тук...',
// drow downs
// directions
'(90) right':
'(90) надясно',
'(-90) left':
'(-90) наляво',
'(0) up':
'(0) нагоре',
'(180) down':
'(180) надолу',
// collision detection
'mouse-pointer':
'курсор на мишката',
'edge':
'край',
'pen trails':
'линии след молива',
// costumes
'Turtle':
'Костенурка',
// graphical effects
'ghost':
'прозрачност',
// keys
'space':
'интервал',
'up arrow':
'стрелка нагоре',
'down arrow':
'стрелка надолу',
'right arrow':
'стрелка надясно',
'left arrow':
'стрелка наляво',