-
-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathlocalization.ini
4759 lines (4678 loc) · 129 KB
/
localization.ini
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
[*]
action = action
start = start
Run-fast = Run fast
Run-step-by-step = Run step by step
Stop = Stop
Clean = Clean
Showhide-palettes = Show or hide palettes
Help = Help
Load-samples-from-server = Load samples from server
Paste = Paste
Cartesian = Cartesian
Polar = Polar
Delete-all = Delete all
Undo = Undo
turtle = turtle
number = number
flow = flow
sensors = sensors
extras = extras
box = box
text = text
store-in = store in
open-file = open file
back = back
show = show
boolean = boolean
Welcome-to-Turtle-Blocks = Welcome to Turtle Blocks
Palette-buttons = Palette buttons
Click-to-run-the-project-in-fast-mode = Click to run the project in fast mode.
Stop-the-current-project = Stop the current project.
Clear-the-screen-and-return-the-turtles-to-their-initial-positions = Clear the screen and return the turtles to their initial positions.
Show-these-messages = Show these messages.
This-button-opens-a-viewer-for-loading-example-projects = This button opens a viewer for loading example projects.
You-can-also-load-projects-from-the-file-system = You can also load projects from the file system.
Show-or-hide-a-Cartesian-coordinate-grid = Show or hide a Cartesian coordinate grid.
Restore-blocks-from-the-trash = Restore blocks from the trash.
Congratulations = Congratulations.
heading = heading
x = x
y = y
clear = clear
arc = arc
angle = angle
radius = radius
set-heading = set heading
set-xy = set xy
right = right
left = left
forward = forward
begin-fill = begin fill
end-fill = end fill
background = background
color = color
shade = shade
grey = grey
pen-size = pen size
pen-up = pen up
set-pen-size = set pen size
set-hue = set hue
set-shade = set shade
set-grey = set grey
set-color = set color
and = and
or = or
not = not
mod = mod
sqrt = square root
random = random
min = min
max = max
add-1-to = add 1 to
add = add
value = value
name = name
do = do
speak = speak
stop-media = stop media
shell = shell
image = image
obj = object
stop = stop
wait-for = wait for
until = until
while = while
if = if
then = then
else = else
forever = forever
repeat = repeat
unknown = unknown
title = title
wait = wait
print = print
loudness = loudness
time = time
mouse-button = mouse button
keyboard = keyboard
[en]
action = action
start = start
Run-fast = Run fast
Run-step-by-step = Run step by step
Stop = Stop
Clean = Clean
Showhide-palettes = Show or hide palettes
Help = Help
Load-samples-from-server = Load samples from server
Paste = Paste
Cartesian = Cartesian
Polar = Polar
Delete-all = Delete all
Undo = Undo
turtle = turtle
number = number
flow = flow
sensors = sensors
extras = extras
box = box
text = text
store-in = store in
open-file = open file
back = back
show = show
boolean = boolean
Welcome-to-Turtle-Blocks = Welcome to Turtle Blocks
Palette-buttons = Palette buttons
Click-to-run-the-project-in-fast-mode = Click to run the project in fast mode.
Stop-the-current-project = Stop the current project.
Clear-the-screen-and-return-the-turtles-to-their-initial-positions = Clear the screen and return the turtles to their initial positions.
Show-these-messages = Show these messages.
This-button-opens-a-viewer-for-loading-example-projects = This button opens a viewer for loading example projects.
You-can-also-load-projects-from-the-file-system = You can also load projects from the file system.
Show-or-hide-a-Cartesian-coordinate-grid = Show or hide a Cartesian coordinate grid.
Restore-blocks-from-the-trash = Restore blocks from the trash.
Congratulations = Congratulations.
heading = heading
x = x
y = y
clear = clear
arc = arc
angle = angle
radius = radius
set-heading = set heading
set-xy = set xy
right = right
left = left
forward = forward
begin-fill = begin fill
end-fill = end fill
background = background
color = color
shade = shade
grey = grey
pen-size = pen size
pen-up = pen up
set-pen-size = set pen size
set-hue = set hue
set-shade = set shade
set-grey = set grey
set-color = set color
and = and
or = or
not = not
mod = mod
sqrt = square root
random = random
min = min
max = max
add-1-to = add 1 to
add = add
value = value
name = name
do = do
speak = speak
stop-media = stop media
shell = shell
image = image
obj = object
stop = stop
wait-for = wait for
until = until
while = while
if = if
then = then
else = else
forever = forever
repeat = repeat
unknown = unknown
title = title
wait = wait
print = print
loudness = loudness
time = time
mouse-button = mouse button
keyboard = keyboard
[ta]
action = செயற்படு
start = ஆரம்பி
Open = திற
Stop = நிறுத்து
Clean = சுத்தமக்கு
Showhide-blocks = பிரிவுகளை காட்டு/மறை
Help = உதவி
Paste = ஒட்டு
Cartesian = கார்டீஷியன்
turtle = ஆமை
number = எண்
empty-heap = வெற்றுக்குவியல்
box = பெட்டி
text = உரை
store-in = சேமிப்புக்கலனில்
back = பின்னால்
show = காட்டு
Copy = பிரதி செய்
heading = தலைப்பு
x = எக்ஸ்
y = y
arc = வில்
angle = கோணம்
radius = குறை
set-heading = தலைப்பை ஒழுங்கு செய்
set-xy = ஒழுங்கு படுத்துக
right = வலது
left = இடது
forward = முன்னோக்கி அனுப்பு
end-fill = கடைசி நிரப்பல்
color = நிறம்
shade = நிழல்
pen-size = பேனை அளவு
pen-up = பேனை மேலே
pen-down = பேனை கீழே
set-pen-size = பேனையின் அளவினை ஒழுங்குபடுத்து
set-shade = நிழலை ஒழுங்கு படுத்து
set-color = நிறத்தை ஒழுங்கு படுத்து
and = உடன்
or = அல்லது
not = இல்லை
mod = புதுப்பி
random = எழுமாறாக
min = மிகக்குறைய
max = மிகக்கூடிய
value = மதிப்பு
show-heap = குவியலைக்காட்டு
push = தள்ளு
pop = வரல்
image = படம்
stop = நிறுத்து
until = இதுவரை
while = நிகழும்போது
if = எனின்
then = அதன்பின்
else = வேறு
forever = எப்போதும்
repeat = , திருப்பிச்செய்
show-blocks = தொகுதியைக்காட்டு
hide-blocks = மறைந்துள்ள தொகுதி
wait = பொறு
print = அச்சு
loudness = சத்தமான..
time = நேரம்
keyboard = விசைப்பலகை
orange = ஆரஞ்சு
comment = கருத்து தெறிவி
[tr]
Clean = temizle
number = Sayılar
box = kutu
back = geri
heading = başlık
x = x
y = y
arc = yay
angle = açı
radius = yarıçap
set-heading = seth
set-xy = eksen ayarla
right = sağ
left = sol
forward = ileri
color = renk
shade = gölge
pen-size = kalem boyu
pen-up = kb
pen-down = kk
set-pen-size = kalem boyu ayan
set-shade = gölge ayarı
set-color = renk ayarı
and = ve
or = veya
not = değil
mod = mod
random = rastgele
if = eğer
then = sonra
else = voska
forever = sürekli
repeat = tekrarla
wait = bekle
print = yazdır
[pap]
action = akshon
start = start
Open = Habri
Stop = Stòp
Clean = Limpia
Showhide-blocks = Mustra/skonde blòki
Help = Ousilio
Paste = Pega
Cartesian = Cartesian
turtle = turtuga
pen = pèn
number = number
flow = fluho
media = medionan
extras = Èkstranan
empty-heap = monton bashi
box = kaha
text = teksto
store-in = waarda den
back = bèk
show = Mustra
Copy = Kopia
Save-stack = Warda stack
heading = direkshon
x = x
y = y
arc = arko
angle = ángulo
radius = radio
set-heading = fiha titulo
set-xy = fiha xy
right = man drechi
left = na man robes
forward = dilanti
end-fill = stòp yenamentu
color = koló
shade = tono
pen-size = tamaño di pèn
pen-up = Pen ariba
pen-down = pen abou
set-pen-size = instala tamánjo di pen
set-shade = instala sombra
set-color = fiha koló
and = i
or = òf
not = no
mod = mod
random = random
min = min
max = max
value = balor
show-heap = mustra monton
push = pusha
pop = kita
speak = papia
image = imágen
stop = stòp
until = te ora ku
while = miéntras
if = si
then = despues
else = sinó
forever = pa semper
repeat = ripití
turtle-y = turtuga y
turtle-x = turtuga x
show-blocks = Mustra blòkinan
hide-blocks = skonde blòkinan
wait = warda
print = prent
loudness = volúmen
time = tempu
mouse-x = raton x
mouse-y = raton y
keyboard = teklado
hello = haló
orange = oraño
comment = komentario
duration = durashon
[en_GB]
color = colour
set-color = set colour
pixel-color = pixel colour
[yo]
set-heading = seth
[sw]
start = kuanza
Stop = Kuacha
Help = Msaada
Paste = Kuweka
turtle = turtle
number = idadi
text = maandishi
Copy = Nakili
right = haki
left = kushoto
forward = mbele
shade = vuli
image = tawsira
stop = kuacha
time = wakati
keyboard = baobonye
[ro]
set-heading = seth
[te]
action = చర్య
start = ప్రారంభించు
Open = తెరుచు
Stop = నిలిపివేయి
Clean = శుభ్రపరుచు
Showhide-blocks = భాగాలను చూపుము/దాచుము
Help = సహాయం
Paste = అతికించు
turtle = టర్టిల్
number = సంఖ్య
empty-heap = ఖాళీ కుప్ప
box = పేటిక
text = పాఠము
store-in = దీనిలో దాచు
back = వెనుక
show = చూపు
Copy = కాపీ
heading = పీఠిక
x = x
y = y
arc = జ్యా
angle = కోణం
radius = వ్యాసార్ధం
set-heading = seth
set-xy = xy లను అమర్చు
right = కుడి
left = ఎడమ
forward = ముందుకు
color = వర్ణము
shade = ఛాయ
pen-size = కలం పరిమాణము
pen-up = కలం పట్టుకొను
pen-down = కలం పక్కనపెట్టు
set-pen-size = కలం పరిమాణాన్ని అమర్చు
set-shade = ఛాయను అమర్చు
set-color = వర్ణాన్ని అమర్చు
and = మరియు
or = లేదా
not = కాదు
random = విభిన్నంగా
min = అత్యల్ప
max = అత్యధిక
value = విలువ
show-heap = కుప్పను చూపుము
push = నెట్టు
pop = ఎగసి
image = ప్రతిరూపము
stop = పైన
until = అప్పటివరకు
while = రాయు
if = ఒక వేళ
then = అయితే
forever = ఎప్పటికీ
repeat = మళ్ళీ చేయి
show-blocks = భాగాలను చూపు
hide-blocks = భాగాలను దాచు
wait = వేచి ఉండు
print = ముద్రణ
keyboard = మీటల పలకం
orange = నారింజ
comment = వ్యాఖ్య
[kos]
[ibo]
action = edinam
start = bido
Open = Mekpe
Delete = hichapụ
Publish = asuanetop
Download = ala-ibu
Planet = Planet
On-my-device = On m ngwaọrụ
Worldwide = Uwa-obosara
Run-fast = Gbaa ngwa ngwa
Run-step-by-step = Gbaa nzọụkwụ site nzọụkwụ
Stop = kwụsị
Clean = ọcha
Showhide-palettes = Gosi / hide palettes
Showhide-blocks = Gosi / hide blocks
Expandcollapse-collapsable-blocks = Ịmụbawanye / daa collapsable blocks
Help = Help
Load-samples-from-server = Ibu Ibu n'omume site na ihe nkesa
Save-project = Save oru ngo
Paste = tapawa
Cartesian = Cartesian
Polar = pola
Settings = Ntọala
Delete-all = hichapụ niile
Undo = Wepu
turtle = mbe
pen = pen
number = nọmba
flow = igba
sensors = sensọ
media = media
extras = yana mgbakwunye
empty-heap = efu kpokọtara
confirm = gosi
box = igbe
text = ederede
store-in = echekwa na
open-file = emeghe faịlụ
back = azụ
show = show
boolean = boolean
Welcome-to-Turtle-Blocks = Mmadụ Bịa mbe nkanka
Turtle-Blocks-is-a-Logo-inspired-turtle-that-draws-colorful-pictures-with-snap-together-visual-programming-blocks = Mbe nkanka bụ a Logo-sitere n'ike mmụọ nsọ mbe na-adọta yi foto na snap-na-visual-Mmemme blocks
Palette-buttons = palette buttons
This-toolbar-contains-the-palette-buttons-click-to-show-the-palettes-of-blocks-and-drag-blocks-from-the-palettes-onto-the-canvas-to-use-them = Nke a toolbar e dere ihe palette buttons: pịa na-egosi ma ọ bụ zoo palettes nke blocks (mbe, Pen, Ọnụ Ọgụgụ, Boolean, Igba, nkanka, Media, sensọ, na Mkponyeaka). Ozugbo oghe, ị nwere ike ịdọrọ blocks si palettes n'elu kwaaji-eji ha.
Click-to-run-the-project-in-fast-mode = Pịa-agba ọsọ ahụ oru ngo na ngwa ngwa mode
Click-to-run-the-project-step-by-step = Pịa na-agba ọsọ ngo nzọụkwụ site nzọụkwụ
Stop-the-current-project = Kwụsị ugbu a oru ngo
Clear-the-screen-and-return-the-turtles-to-their-initial-positions = Clear the screen and return the turtles to their initial positions
Hide-or-show-the-block-palettes = Zoo ma ọ bụ na-egosi na ngọngọ palettes
Hide-or-show-the-blocks-and-the-palettes = Zoo ma ọ bụ na-egosi na blocks na palettes
Expand-or-collapse-start-and-action-stacks = Ịmụbawanye ma ọ bụ daa stacks nke blocks, dịka, na-amalite na edinam stack
Show-these-messages = Gosi ndị a ozi
Expandcollapse-option-toolbar = Ịmụbawanye / daa nhọrọ toolbar
Click-this-button-to-expand-or-collapse-the-auxillary-toolbar = Pịa a button mụbaa ma ọ bụ daa na auxillary toolbar
This-button-opens-a-viewer-for-loading-example-projects = Nke a ga-emepe button a na-ekiri maka loading atụ oru ngo
You-can-also-load-projects-from-the-file-system = giwa nwekwara ike mara oru ngo si faịlụ usoro
Copy = Detuo
The-paste-button-is-enabled-when-there-are-blocks-copied-onto-the-clipboard = The tapawa button na-nyeere e nwere blocks depụtaghachiri n'elu clipboard
Save-stack = ịzọpụta tojupụtara
Show-or-hide-a-Cartesian-coordinate-grid = Egosi ma ọ bụ zoo a Cartesian-ahazi okporo
Show-or-hide-a-polar-coordinate-grid = Egosi ma ọ bụ zoo a polar-ahazi okporo
Open-a-panel-for-configuring-Turtle-Blocks = Mepee a panel maka configuring mbe nkanka .
Decrease-block-size = Ibelata ngọngọ size
Decrease-the-size-of-the-blocks = Ibelata size nke blocks.
Increase-block-size = Mmụba ngọngọ size
Increase-the-size-of-the-blocks = Dịkwuo size nke blocks.
Display-statistics = Ngosipụta ọnụ ọgụgụ
Display-statistics-about-your-Turtle-project = Ngosipụta ọnụ ọgụgụ banyere gị mbe oru ngo.
Load-plugin-from-file = Ibu Ibu plugin si faịlụ
You-can-load-new-blocks-from-the-file-system = I nwere ike mara ọhụrụ blocks si faịlụ usoro
Remove-all-content-on-the-canvas-including-the-blocks = Wepụ niile ọdịnaya na kwaaji, gụnyere blocks
Restore-blocks-from-the-trash = Weghachi blocks si ahịhịa
Congratulations = ekele
You-have-finished-the-tour-Please-enjoy-Turtle-Blocks = ị okokụre njegharị. Biko enwe mbe nkanka!
heading = isiokwu
x = x
y = y
clear = doro anya
arc = aak
angle = n'akuku
radius = okirikiri
set-heading = set isiokwu
set-xy = set xy
right = nri
left = ekpe
forward = na-atụ
begin-fill = na-amalite erijueala
end-fill = ọgwụgwụ erijueala
background = ndabere
color = agba
shade = ndo
grey = isi awọ
pen-size = pen size
pen-up = pen elu
pen-down = pen ala
set-pen-size = set pen size
set-hue = set agba
set-shade = set ndo
set-grey = set isi awọ
set-color = set agba
and = na
or = ma ọ bụ
not = bụghị
mod = mod
sqrt = sqrt
random = random
min = kacha nta
max = kacha
add-1-to = tinye 1
add = tinye
to = ka
value = uru
name = aha
do = eme
show-heap = show kpokọtara
save-heap = ịzọpụta kpokọtara
load-heap = ibu kpokọtara
push = kwaa
pop = pop
speak = kwo
stop-media = kwụsị egwu
note = dee
shell = shei
size = size
image = oyiyi
obj = obj
stop = kwụsị
wait-for = na-eche maka
until = ruo mgbe
while = mgbe
if = o buru na
then = mgbe ahụ
else = ọzọ
forever = ruo mgbe ebighị ebi
repeat = imekwa
unknown = amaghị
play-back = egwu azụ
stop-play = kwụsị play
save-svg = save svg
title = aha
turtle-y = mbe y
turtle-x = mbe x
start-turtle = mbe bido
stop-turtle = kwusi mbe
show-blocks = show blocks
hide-blocks = hide blocks
wait = na-eche
print = ebipụta
turtle-name = mbe aha
source = isi iyi
target = lekwasịrị
loudness = keuzu
pixel-color = pixel agba
time = oge
mouse-x = oke x
mouse-y = oke y
mouse-button = òké bọtịnụ
keyboard = keyboard
eval = eval
currency = ego
from = site
stock-price = ngwaahịa price
translate = ịsụgharị
hello = hallo
detect-lang = chọpụta naanị
set-lang = dị nnọọ ka
Google-map = Google map
coordinates = na-achịkọta
zoom-factor = mbugharị na-akpata
zoom = mbugharị
latitude = ohere
longitude = lonjituudu
power = ike
base = isi
exp = exp
floor = ahla
ceiling = n'uko
degrees = degrees
to-degrees = to degrees
radians = radians
to-radians = to oradians
motion-x = ngagharị x
motion-y = ngagharị y
motion-z = ngagharị z
define = kọwaa
get-calories = ga-esi calories
get-protein = ga-esi protein
get-carbs = wete carbs
get-fiber = na-eriri
get-fat = ga-esi abụba
get-name = na-aha
calories = calories
protein = protein
carbs = carbs
fiber = eriri
fat = ibu
eat = eri
digest-meal = iyochapu nri
apple = apụl
banana = unere
orange = oroma
wheat-bread = wheat achịcha
corn = ọka
potato = potato
sweet-potato = ụtọ nduku
tomato = tomato
broccoli = brọkọlị
rice-and-beans = osikapa na agwa
tamale = tamale
cheese = cheese
chicken = okuko
fish = azụ
beef = beef
cake = achicha
cookie = kuki
water = imiri
bitcoin = Bitcoin
publish = ebipụta
comment = ikwu
forecast = amụma
city = obodo
day = ụbọchị
high = elu
low = ala
duration = oge
move = ije
[ml]
set-heading = seth
[id]
action = aksi
start = mulai
Clean = bersihkan
number = nomor
box = kotak
text = teks
store-in = simpan di
back = mundur
Copy = Salin
heading = arah
x = x
y = y
arc = lengkung
angle = sudut
radius = jari-jari
set-heading = atur arah
set-xy = atur xy
right = kanan
left = kiri
forward = maju
end-fill = akhir memenuhi
color = warna
shade = gradasi
pen-size = ukuran pena
pen-up = pena mati
pen-down = pena nyala
set-pen-size = atur ukuran pena
set-shade = atur gradasi
set-color = atur warna
and = dan
or = atau
not = bukan
mod = mod
random = acak
min = min
max = maks
value = nilai
image = citra
while = putih
if = jika
then = maka
forever = selamanya
repeat = ulangi
wait = tunggu
orange = oranye
[da]
action = handling
start = start
Open = Åbn
Stop = Stop
Clean = Rens
Showhide-blocks = Vis/skjul blokke
Help = Hjælp
Paste = Indsæt
Cartesian = Kartesisk
turtle = skildpadde
pen = pen
number = tal
flow = flyd
media = medie
extras = ekstramateriale
empty-heap = tom hób
box = boks
text = tekst
store-in = gem i
back = tilbage
show = vis
Copy = Kopiér
Save-stack = Gem stak
heading = bevæger sig mod
x = x
y = y
arc = arc
angle = vinkel
radius = radius
set-heading = indstil retning
set-xy = indstil xy
right = højre
left = venstre
forward = fremad
end-fill = slut udfyld
color = farve
shade = skygge
pen-size = størrelse pen
pen-up = pen oppe
pen-down = pen nede
set-pen-size = indstil størrelse på pen
set-shade = indstil skygge
set-color = indstil farve
and = og
or = eller
not = ikke
mod = mod
random = tilfældig
min = min
max = max
value = værdi
show-heap = vis hób
push = skub
pop = pop
speak = tal
image = billede
stop = stop
until = indtil
while = mens
if = hvis
then = så
else = ellers
forever = for evigt
repeat = gentag
turtle-y = skildpadde y
turtle-x = skildpadde x
show-blocks = vis blokke
hide-blocks = skjul blokke
wait = vent
print = udskriv
loudness = lydstyrke
time = tid
mouse-x = mus x
mouse-y = mus y
keyboard = tastatur
hello = hej
orange = orange
comment = kommentar
duration = varighed
[kn]
[hu]
set-heading = seth
[bn]
start = শুরু করো
Stop = ধাপ
Clean = পরিষ্কার করো
turtle = টার্টেল
number = সংখ্যা
empty-heap = খালি heap
box = বাক্স
text = টেক্সট
back = পেছনে
heading = শিরোনাম
x = x
y = y
arc = চাপ
angle = কোণ
radius = ব্যাসার্ধ
set-heading = শিরনাম নির্ধারণ
set-xy = xy নির্ধারণ করো
right = ডানে যাও
left = বামে যাও
forward = সামনে যাও
color = রং
shade = ছায়া
pen-size = কলমের আকার
pen-up = কলম ওঠাও
pen-down = কলম নামাও
set-pen-size = কলমের আকার নির্ধারণ করো
set-shade = ছায়া নির্ধারণ করো
set-color = রং নির্ধারণ করো
and = AND
or = OR
not = NOT
mod = মোড
random = র্যান্ডম
min = নূন্যতম
max = সর্বোচ্চ
show-heap = heap দেখাও
push = প্রবেশ করাও
pop = বের করো
stop = ধাপ
if = if
then = then
else = else
forever = চিরদিন
repeat = পুনরায় করো
show-blocks = ব্লক দেখাও
hide-blocks = ব্লক লুকিয়ে রাখো
wait = অপেক্ষা করো
print = মুদ্রণ করো
keyboard = কী-বোর্ড
[mi]
action = hohenga
start = tīmata
Open = Whakatuwhera
Stop = Tū
Clean = Horoia
Showhide-blocks = Whakaatu/huna paraka
Help = Āwhina
Paste = Whakapiri
Cartesian = Katihini
turtle = honu
number = tau
empty-heap = putu tāpae
box = pouaka
text = kupu
store-in = penapena ki
back = whakamuri
show = whakaatu
Copy = Tārua
heading = panekōrero
x = x
y = y
arc = pewa
angle = koki
radius = pūtoro
set-heading = tautuhi panekōrero
set-xy = tautuhi xy
right = matau
left = mauī
forward = whakamua
end-fill = whakakī mutunga
color = tae
shade = uriuri
pen-size = rahinga pene
pen-up = pene ki runga
pen-down = pene ki raro
set-pen-size = tautuhi rahinga pene
set-shade = tautuhi uriuri
set-color = tautuhi tae
and = me
or = rānei
not = ehara
mod = mod
random = tupurangi
min = mōkito
max = mōrahi
value = uara
show-heap = whakaatu tāpae
push = peia
pop = pahū
speak = whakahua
image = atahanga
stop = tū
until = hei te
while = i te wā
if = mēnā
then = kātahi ka
else = kē atu
forever = mō ake tonu
repeat = tārua
show-blocks = whakaatu paraka
hide-blocks = huna paraka
wait = taihoa
print = tā
loudness = hoihoi
time = wā
mouse-x = kiore x
mouse-y = kiore y
keyboard = papapātuhi
hello = kia ora
orange = karaka
comment = tākupu
duration = roanga
[ht]
set-heading = seth
[ayc]
action = luräwi
start = qalltaña
Open = Qhantayaña
Delete = Apsuña
Publish = wakichata uñachayaña
Download = Apaqaña
Planet = Uraqi
On-my-device = wakichatanaka machaqa imaña
Worldwide = Aka pachana
Close = Jist'aña
Run-fast = k’ataki qhantayaña
Run-step-by-step = mayata mayata qhantayaña
Stop = Sayt’ayaña
Clean = Mayampi qalltañataki wakichaña
Showhide-palettes = wakichaña apanaqañanaka uñachayaña jani ukaxa chhaqtayaña
Showhide-blocks = wakichata siqinaka uñstayaña imantaña
Expandcollapse-collapsable-blocks = japhalla wakichata siqinaka jach’aptayaña jani uka chhaqtayaña
Home = Uta
Help = Yanapa
Load-samples-from-server = wakichata apanaqañata yant'äwinaka qhantayaña
Load-project-from-files = Wakichäwi taypina imata wakichatanaka qhantayaña
Save-project = Wakichata imaña
Paste = Apxataña
Cartesian = Cartesiano wakichata
Polar = Polar wakichata
Settings = Chiqachatanaka
Delete-all = Qawayata apsuña