-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlang.mjs
1685 lines (1685 loc) · 54.7 KB
/
lang.mjs
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
export const languageLibraryDefault = {
"languages": {
"en": "English",
"es": "Español",
"ja": "Japanese",
"pt": "Portuguese",
"tr": "Türkçe"
},
"general": {
"learnMore": {
"description": "Used in links such as in code setting descriptions",
"en": "Learn more",
"es": "Saber más",
"ja": "さらに詳しく",
"pt": "Saiba mais",
"tr": "Daha fazla"
},
"learnMoreAbout": {
"description": "Used in links such as 'Learn more about Creative Commons'",
"en": "Learn more about",
"es": "Saber más sobre",
"ja": "さらに詳しく",
"pt": "Saiba mais sobre",
"tr": "Hakkında öğren"
},
"by": {
"description": "Used in phrases like '[Sketch Title] by [User name]'",
"en": "by",
"es": "por",
"ja": "by",
"pt": "por",
"tr": "" //note zero-width space
},
"eg": {
"description": "Used to give examples with e.g. (for example)'",
"en": "e.g., {0}",
"es": "ej. {0}",
"ja": "例 : {0}",
"pt": "ex: {0}",
"tr": "ör: {0}"
},
"saveAsFork": {
"description": "navigation - when sketch is changed",
"en": "Save as Fork",
"es": "Guardar como Fork",
"ja": "フォークとして保存",
"pt": "Salvar Bifurcação",
"tr": "Çatalla"
},
"fork": {
"description": "navigation - when sketch is embedded. 'Fork' as a verb, not a noun.",
"en": "Fork",
"es": "Hacer Fork",
"ja": null,
"pt": "Copiar",
"tr": "Çatalla"
},
"save": {
"description": "navigation - when sketch is changed",
"en": "Save",
"es": "Guardar",
"ja": "保存",
"pt": "Salvar",
"tr": "Kaydet"
},
"saved": {
"description": "navigation - when sketch is saved",
"en": "Saved",
"es": "Guardado",
"ja": "保存完了",
"pt": "Salvo",
"tr": "Kaydoldu"
},
"saving": {
"description": "navigation - when sketch is saving",
"en": "Saving…",
"es": "Guardando…",
"ja": "保存中…",
"pt": "Salvando…",
"tr": "Kaydediliyor…"
},
"edit": {
"description": "navigation - when info panel is selected",
"en": "Edit",
"es": "Editar",
"ja": "編集",
"pt": "Editar",
"tr": "Değiştir"
},
"submit": {
"description": "form submission button",
"en": "Submit",
"es": "Enviar",
"ja": "投稿",
"pt": "Enviar",
"tr": "Kaydet"
},
"signin": {
"description": "link label for sign in page",
"en": "Sign in",
"es": "Iniciar Sesión",
"ja": "サインイン",
"pt": "Cadastrar",
"tr": "Giriş"
},
"signout": {
"description": "link label for signing out in the navigation",
"en": "Sign out",
"es": "Cerrar",
"ja": "サインアウト",
"pt": "Sair",
"tr": "Çıkış"
},
"join": {
"description": "link label asking users to join the website",
"en": "Join",
"es": "Unirse",
"ja": "参加する",
"pt": "Entrar",
"tr": "Kaydol"
},
"joinPlus": {
"description": "link label asking users to join the Plus+ Membership",
"en": "Join Plus+",
"es": "Suscribirse a Plus+",
"ja": "Plus+メンバーになる",
"pt": "Entrar Plus+",
"tr": "Plus+'a üye ol"
},
"showAll": {
"description": "Used as a link to expand minimized lists. for example, sketch > libraries",
"en": "Show All",
"es": "Mostrar Todo",
"ja": "すべて見る",
"pt": "Mostras Todos",
"tr": "Hepsini Göster"
},
"showMore": {
"description": "Used as a link to expand minimized lists by increment. for example, sketch > forks panel > list",
"en": "Show More",
"es": "Mostrar Más",
"ja": "表示を増やす",
"pt": "Mostrar Mais",
"tr": "Daha Fazla"
},
"showLess": {
"description": "Used as a link to collapse expanded lists. for example, sketch > libraries",
"en": "Show Less",
"es": "Mostrar Menos",
"ja": "表示を少なくする",
"pt": "Mostrar Menos",
"tr": "Hepsini Gizle"
},
"approve": {
"description": "Used as a button to approve a sketch for curation, or a user for a private community/class",
"en": "Approve",
"es": "Aprobar",
"ja": "承認する",
"pt": "Aprovar",
"tr": "Onayla"
},
"reject": {
"description": "Used as a button to reject a sketch for curation, or a user for a private community/class",
"en": "Reject",
"es": "Rechazar",
"ja": "拒否する",
"pt": "Rejeitar",
"tr": "Reddet"
},
'copiedToClipboard': {
"description": "Shown when a link is copied to clipboard via clipboard component (ie. embed code in sketch page)",
"en": "Copied to Clipboard!",
"es": "¡Copiado al portapapeles!",
"ja": "コピーしました!",
"pt": "Copiado!",
"tr": "Kopyalandı!"
},
'newVersion': {
"description": "Shown when a new version of OpenProcessing website is available",
"en": "<b>OpenProcessing has a new version 🚀 </b> Please <a href='#' class='red' onclick='location.reload()'>refresh the page</a> to load the updates.",
"es": "<b>OpenProcessing tiene una nueva versión 🚀 </b> Por favor <a href='#' class='red' onclick='location.reload()'>actualiza la página</a> para cargar las actualizaciones.",
"ja": "<b>OpenProcessingに新しいバージョンがあります 🚀 </b> 更新を読み込むために <a href='#' class='red' onclick='location.reload()'>ページをリフレッシュ</a> してください。",
"pt": "<b>OpenProcessing tem uma nova versão 🚀 </b> Por favor <a href='#' class='red' onclick='location.reload()'>atualize a página</a> para carregar as atualizações.",
"tr": "<b>OpenProcessing yenilendi 🚀 </b> Lütfen güncellemeleri yüklemek için <a href='#' class='red' onclick='location.reload()'>sayfayı tazeleyin</a>."
},
'newVersion-save': {
"description": "Shown when a new version of OpenProcessing website is available, and user has unsaved progress",
"en": "<b>OpenProcessing has a new version 🚀 </b> Please save any changes and <a href='#' class='red' onclick='location.reload()'> refresh the page</a> to load the updates.",
"es": "<b>OpenProcessing tiene una nueva versión 🚀 </b> Por favor guarda cualquier cambio y <a href='#' class='red' onclick='location.reload()'>actualiza la página</a> para cargar las actualizaciones.",
"ja": "<b>OpenProcessingに新しいバージョンがあります 🚀 </b> 変更を保存してください。更新を読み込むために <a href='#' class='red' onclick='location.reload()'>ページをリフレッシュ</a> してください。",
"pt": "<b>OpenProcessing tem uma nova versão 🚀 </b> Por favor salve quaisquer alterações e <a href='#' class='red' onclick='location.reload()'>atualize a página</a> para carregar as atualizações.",
"tr": "<b>OpenProcessing yenilendi 🚀 </b> Lütfen değişiklikleri kaydedin ve güncellemeleri yüklemek için <a href='#' class='red' onclick='location.reload()'>sayfayı tazeleyin</a>."
}
},
"navigation": {
"search": {
"description": "Placeholder text when search icon is clicked",
"en": "Search",
"es": "Buscar",
"ja": "検索",
"pt": "Procurar",
"tr": "Ara"
},
"discover": {
"description": "navigation item",
"en": "Discover",
"es": "Descubrir",
"ja": "発見",
"pt": "Descobrir",
"tr": "Keşfet"
},
"learn": {
"description": "navigation item",
"en": "Learn",
"es": "Aprender",
"ja": "学ぶ",
"pt": "Aprender",
"tr": "Öğren"
},
"teach": {
"description": "navigation item",
"en": "Teach",
"es": "Enseñar",
"ja": "教える",
"pt": "Ensinar",
"tr": "Öğret"
},
"collect": {
"description": "navigation item",
"en": "Collect",
"es": "Recolectar",
"ja": "収集",
"pt": "Coletar",
"tr": "Satın Al"
},
"myProfile": {
"description": "navigation item > displayed when on a mobile device",
"en": "My Profile",
"ja": "プロフィール",
"es": "Mi Perfil",
"pt": "Meu Perfil",
"tr": "Profilim"
},
"createSketch": {
"description": "navigation button",
"en": "Create a Sketch",
"es": "Crear un Boceto",
"ja": "スケッチを作成する",
"pt": "Criar um Esboço",
"tr": "Çizim Yarat"
},
"viewMyProfile": {
"description": "navigation item > profile dropdown menu",
"en": "View My Profile",
"es": "Ver Mi Perfil",
"ja": null,
"pt": "Ver Meu Perfil",
"tr": "Profilim"
},
"alreadyHaveAccount": {
"description": "navigation item > guest profile dropdown menu",
"en": "Already have an account?",
"es": "¿Ya tienes una cuenta?",
"ja": null,
"pt": "Já tem uma conta?",
"tr": "Hesabın varsa"
},
"FAQ": {
"description": "navigation item > profile dropdown footer 'Frequently Asked Questions' link",
"en": "FAQ",
"es": "P+F",
"ja": null,
"pt": "Dúvidas",
"tr": "SSS"
},
"contact": {
"description": "navigation item > profile dropdown footer",
"en": "Contact",
"es": "Contacto",
"ja": null,
"pt": "Contato",
"tr": "İletişim"
},
"support": {
"description": "navigation item > profile dropdown footer. Used for launching support chat feature.",
"en": "Support",
"es": "Soporte",
"ja": null,
"pt": "Ajuda",
"tr": "Yardım"
},
"editMyMembership": {
"description": "navigation item > profile dropdown. This link is to edit Plus+ membership.",
"en": "Edit Plus+ Membership",
"es": "Editar Membresía Plus+",
"ja": null,
"pt": "Editar Filiação Plus+",
"tr": "Plus+ Üyelik Ayarları"
},
"sketches": {
"description": "navigation profile dropdown",
"en": "Sketches",
"es": "Bocetos",
"ja": "スケッチ",
"pt": "Esboços",
"tr": "Çizimlerim"
},
"classes": {
"description": "navigation profile dropdown",
"en": "Classes",
"es": "Clases",
"ja": "クラス",
"pt": "Aulas",
"tr": "Sınıflarım"
},
"curations": {
"description": "navigation profile dropdown",
"en": "Curations",
"es": "Curaciones",
"ja": "キュレーション",
"pt": "Curadorias",
"tr": "Kürasyonlarım"
},
},
"sketch": {
"info": {
"description": "navigation",
"en": "Play",
"es": "Información",
"ja": "情報",
"pt": "Informações",
"tr": "Bilgi"
},
"play": {
"description": "navigation",
"en": "Play",
"es": "Jugar",
"ja": "演じる",
"pt": "Jogar",
"tr": "Oynat"
},
"code": {
"description": "navigation",
"en": "Code",
"es": "Código",
"ja": "コード",
"pt": "Codificar",
"tr": "Programla"
},
"sketch": {
"description": "Code Options > tab",
"en": "Sketch",
"es": "Boceto",
"ja": "スケッチ",
"pt": "Esboço",
"tr": "Çizim"
},
"files": {
"description": "Code Options > tab",
"en": "Files",
"es": "Archivos",
"ja": "ファイル",
"pt": "Arquivos",
"tr": "Dosyalar"
},
"editor": {
"description": "Code Options > tab",
"en": "Editor",
"es": "Editor",
"ja": "コードエディタ",
"pt": "Editor",
"tr": "Editör"
},
"mode": {
"description": "Code Options > Sketch",
"en": "Mode",
"es": "Modo",
"ja": "モード",
"pt": "Modo",
"tr": "Mod"
},
"mode-HTMLCSS": {
"description": "Shows when user selects pjs mode",
"en": "Write HTML, CSS, and JS as you wish.",
"es": "Escribe HTML, CSS y JS como desees.",
"ja": "HTML CSS JS モード",
"pt": "Escreva HTML, CSS e JS como desejar.",
"tr": "HTML, CSS, ve JS yaz"
},
"mode-pjs": {
"description": "Shows when user selects pjs mode",
"en": "Processingjs is deprecated.",
"es": "ProcessingJS está en desuso.",
"ja": "Processingjsモードは非推奨です",
"pt": "Processingjs foi descontinuado.",
"tr": "Processingjs artık bitiyor."
},
"mode-applet": {
"description": "Shows when user selects an legacy Applet mode",
"en": "Java doesn't work in browsers anymore.",
"es": "Java ya no funciona en navegadores.",
"ja": "Javaモードはブラウザでは動作しません",
"pt": "Java não funciona mais em navegadores.",
"tr": "Java artık tarayıcılarda çalışmıyor."
},
"tutorialMode": {
"description": "Code Options > sketch > label",
"en": "Tutorial Mode",
"es": "Modo Tutorial",
"ja": "チュートリアルモード",
"pt": "Modo Tutorial",
"tr": "Eğitsel Modu"
},
"tutorialModeDescription": {
"description": "Code Options > sketch > label",
"en": "Write step-by-step tutorials.",
"es": "Escribe tutoriales paso a paso.",
"ja": "チュートリアル記事を書く",
"pt": "Escreva tutoriais passo-a-passo.",
"tr": "Adım adım öğretici rehberler yaz."
},
"timeline": {
"description": "Code Options > sketch > label",
"en": "Timeline (Beta)",
"es": "Línea deL Tiempo (Beta)",
"ja": null,
"pt": null,
"tr": "Zaman Çizelgesi (Beta)"
},
"timelineDescription": {
"description": "Code Options > sketch > label",
"en": "Use a timeline to create functions triggered with time.",
"es": "Usa una línea de tiempo para crear funciones accionados por el tiempo.",
"ja": "タイムラインを使って時間によって実行される関数を作成する",
"pt": "Use uma linha do tempo para criar funções acionadas com o tempo.",
"tr": "Zaman çizelgesi kullanarak zamanla tetiklenen fonksiyonlar yarat."
},
"liveCollaboration": {
"description": "Code Options > sketch > label",
"en": "Live Collaboration",
"es": "Colaboración en Vivo",
"ja": "ライブコラボレーション",
"pt": "Colaboração Ao Vivo",
"tr": "Canlı Kodlama"
},
"liveCollaborationDescription-tutorial": {
"description": "Shows when tutorial is enabled",
"en": "Live Collaboration is not supported on tutorials.",
"es": "Colaboración en Vivo no es compatible con tutoriales.",
"ja": "ライブコラボレーションはチュートリアルに対応していません",
"pt": "Colaboração Ao Vivo não é suportado em tutoriais.",
"tr": "Canlı Kodlama Eğitsellerde mümkün değil."
},
"liveCollaborationDescription-singleTab": {
"description": "Shows when sketch has multiple tabs",
"en": "Live Collaboration is only supported on sketches with single tab.",
"es": "Colaboración en Vivo solo es compatible con bocetos de una sola pestaña.",
"ja": "ライブコラボレーションはタブが1つのスケッチのみ対応しています",
"pt": "Colaboração Ao Vivo é suportado apenas em esboços com abas únicas.",
"tr": "Canlı Kodlama sadece tek sayfa çizimlerde çalışır."
},
"liveCollaborationDescription-save": {
"description": "Shows when it is a new sketch (not saved)",
"en": "Please save your sketch to enable.",
"es": "Por favor, guarda tu boceto para habilitar la función.",
"ja": "スケッチを保存してください",
"pt": "Por favor, salve o esboço para habilitar.",
"tr": "Lütfen önce çizimini kaydet."
},
"liveCollaborationDescription-shareURL": {
"description": "Shows when enabled",
"en": "Share the URL with your class to code together.",
"es": "Comparte la URL con tu clase para programar juntos.",
"ja": "共同作業のためにクラスにURLをシェアしましょう",
"pt": "Compartilhe a URL da sua aula com o código junto.",
"tr": "Sınıfınla beraber kodlamak için adresi paylaş."
},
"liveCollaborationDescription-default": {
"description": "Shows when it can be enabled",
"en": "Invite your class to code together.",
"es": "Invita a tu clase a programar juntos.",
"ja": "共同作業のためにクラスに招待しましょう",
"pt": "Convide sua turma para programar juntos.",
"tr": "Beraber kodlamak için sınıfını davet et."
},
"showcaseSketch": {
"description": "Code Options > sketch",
"en": "Showcase Sketch",
"es": "Mostrar Boceto",
"ja": "ショーケーススケッチ",
"pt": "Mostrar seu Esboço",
"tr": "Çizimi ortala"
},
"showcaseSketchDescription": {
"description": "Code Options > sketch",
"en": "Centers sketch and matches the background color.",
"es": "Centrar el boceto y combinar el color de fondo.",
"ja": "スケッチを中央に配置して背景色をつける",
"pt": "Centralizar esboço e corresponder a cor de fundo.",
"tr": "Çizimi ortalar ve arka planı aynı renge boyar."
},
"loopProtect": {
"description": "Code Options > sketch",
"en": "Loop Protection",
"es": "Protección de Bucle",
"ja": "ループプロテクション",
"pt": "Proteção de Laço",
"tr": "Döngü Koruma"
},
"loopProtectDescription": {
"description": "Code Options > sketch",
"en": "Prevents infinite loops that may freeze the sketch.",
"es": "Previene bucles infinitos que pueden congelar tu boceto.",
"ja": "スケッチのフリーズを引き起こす無限ループを防止する",
"pt": "Previne lanços infinitos que podem congelar seu esboço.",
"tr": "Çizimini dondurabilecek döngüleri yakalar."
},
"libraries": {
"description": "Code Options > sketch",
"en": "Libraries",
"es": "Bibliotecas",
"ja": "ライブラリ",
"pt": "Bibliotecas",
"tr": "Kütüphaneler"
},
"addCustomLibrary": {
"description": "Code Options > sketch > libraries",
"en": "Add Custom Library",
"es": "Añadir Biblioteca Personalizada",
"ja": "カスタムライブラリを追加する",
"pt": "Adicionar Biblioteca Personalizada",
"tr": "Özel Kütüphane Ekle"
},
"pasteURL": {
"description": "text input placeholder when adding a custom library",
"en": "Paste URL or file name",
"es": "Pegar URL o nombre de archivo",
"ja": "URLもしくはファイル名を入力してください",
"pt": "Colar URL ou nome do arquivo",
"tr": "Adres ya da dosya ismi yapıştır"
},
"saveToUpload": {
"description": "code settings > files",
"en": "Save or fork the sketch to upload files.",
"es": "Guarda o haz fork de tu boceto para subir archivos.",
"ja": "ファイルをアップロードするにはスケッチを保存するかフォークしてください",
"pt": "Salve ou bifurque seu esboço para enviar arquivos.",
"tr": "Dosya yüklemek için önce çizimi kaydedin ya da çatallayın."
},
"textSize": {
"description": "code settings > editor",
"en": "Text Size",
"es": "Tamaño de Texto",
"ja": "文字サイズ",
"pt": "Tamanho do Texto",
"tr": "Yazı Boyutu"
},
"layout": {
"description": "code settings > editor",
"en": "Layout",
"es": "Disposición",
"ja": "レイアウト",
"pt": "Visualização",
"tr": "Editör Şekli"
},
"layoutDescription": {
"description": "code settings > editor",
"en": "This will be the default layout for your sketches",
"es": "Esta será la disposición predeterminada para tus bocetos",
"ja": "デフォルトのレイアウト",
"pt": "Este será a visualização padrão para seus esboços",
"tr": "Varsayılan şekil bu olacak"
},
"darkMode": {
"description": "code settings > editor",
"en": "Dark Mode",
"es": "Modo Obscuro",
"ja": null,
"pt": null,
"tr": "Koyu Renk Modu"
},
"darkModeDescription": {
"description": "code settings > editor",
"en": "Easy on the eyes",
"es": "Suave con la vista",
"ja": null,
"pt": null,
"tr": "Okumayı kolaylaştırır"
},
"console": {
"description": "code settings > editor",
"en": "Console",
"es": "Consola",
"ja": "コンソール",
"pt": "Console",
"tr": "Konsol"
},
"consoleDescription": {
"description": "code settings > editor",
"en": "It will show up when there is an error or print() in code",
"es": "Aparecerá cuando haya un error o print() en el código",
"ja": "コード中のエラーやprint()を表示する",
"pt": "Será exibido quando houver um erro ou print() no código",
"tr": "Bir hata oluştuğunda veya print() kullanıldığında gözükür"
},
"linting": {
"description": "code settings > editor",
"en": "Linting",
"es": "Linting",
"ja": "コードのリント",
"pt": "Linting",
"tr": "Yazarken Hata Bulma"
},
"lintingDescription": {
"description": "code settings > editor",
"en": "Potential warnings will be displayed as you type",
"es": "Se mostrarán potenciales advertencias mientras escribes",
"ja": "入力時のエラーや警告を表示する",
"pt": "Avisos em potencial serão exibidos conforme você digita",
"tr": "Kod yazarken olası hataların altı çizilir"
},
"lintingDescription-p5js": {
"description": "code settings > editor. Shows when sketch is not p5js.",
"en": "Disabled: Only available on p5js sketches.",
"es": "Desactivado: Solo disponible en bocetos de p5js",
"ja": "p5jsのみ使用できます",
"pt": "Desabilitado: Disponível somente nos esboços de p5js",
"tr": "Devre dışı: Sadece p5js çizimler için kullanılabilir"
},
"closeBrackets": {
"description": "code settings > editor",
"en": "Close Brackets",
"es": "Cerrar Paréntesis",
"ja": "括弧を閉じる",
"pt": "Fechar Parênteses",
"tr": "Parantezleri Kapat"
},
"closeBracketsDescription": {
"description": "code settings > editor",
"en": "Closes parenthesis-like characters automatically as you type",
"es": "Cierra automáticamente los caracteres de paréntesis mientras escribes",
"ja": "入力時に自動で括弧を閉じる",
"pt": "Fecha automaticamente parênteses conforme você digita",
"tr": "Yazarken parantez benzeri karakterleri otomatik kapatır"
},
"shortcuts": {
"description": "code settings > editor",
"en": "Shortcuts",
"es": "Atajos",
"ja": "ショートカット",
"pt": "Atalhos",
"tr": "Kısayollar"
},
"seeMoreShortcuts": {
"description": "code settings > editor",
"en": "See More Shortcuts",
"es": "Ver Más Atajos",
"ja": "ショートカット",
"pt": "Ver mais atalhos",
"tr": "Diğer Kısayolları Gör"
},
"versionsSummarized": {
"description": "code settings > versions. Displayed when sketch has more than 20 versions.",
"en": "Prior to most recent 20 versions are summarized.",
"es": "Se resumen las 20 versiones anteriores a las más recientes.",
"ja": "直近の20バージョン以外は集約されています",
"pt": "Prévia das 20 versões mais recentes são resumidas.",
"tr": "Son 20 kayıttan öncekiler özetlenmiştir."
},
"plusPromo": {
"description": "code settings > promo. Displayed at the bottom if user is not a Plus+ member",
"en": "{0} for private sketches, version history, 1GB space, custom embeds, and more!",
"es": "{0} para bocetos privados, historial de versiones, embeds personalizados y más!",
"ja": "{0}とカスタムライブラリの追加や非公開スケッチなど、様々な機能が追加できます!",
"pt": "{0} esboços privados, embeds personalizadas, e mais!",
"tr": "Gizli çizimler, tam ekran gömülü nesneler, 1GB alan, ve daha fazlası için {0}"
},
"forkInfo": {
"description": "info panel",
"en": "A fork of {sketchtitle} by {username}",
"es": "Un fork de {sketchtitle} por {username}",
"ja": "{sketchtitle} by {username} のフォーク",
"pt": "Uma bifurcação do {sketchtitle} por {username}",
"tr": "{username} - {sketchtitle} çatalı"
},
"title": {
"description": "info > edit panel",
"en": "Title",
"es": "Título",
"ja": "タイトル",
"pt": "Título",
"tr": "Çizim İsmi"
},
"description": {
"description": "info > edit panel",
"en": "Description",
"es": "Descripción",
"ja": "説明",
"pt": "Descrição",
"tr": "Açıklama"
},
"howToInteract": {
"description": "info > edit panel",
"en": "How to <br/> interact with it",
"es": "Cómo interactuar <br/> con él",
"ja": "操作方法",
"pt": "Como interagir <br/> com isso",
"tr": "Nasıl Etkileşilebilir"
},
"tags": {
"description": "info > edit panel",
"en": "Tags",
"es": "Etiquetas",
"ja": "タグ",
"pt": "Etiquetas",
"tr": "Etiketler"
},
"license": {
"description": "info > edit panel",
"en": "License",
"es": "Licencia",
"ja": "ライセンス",
"pt": "Licença",
"tr": "Lisans"
},
"license-needPlus": {
"description": "info > edit panel. Displayed below license if user is not a Plus+ member",
"en": "{0} to change license",
"es": "{0} para cambiar la licencia",
"ja": "ライセンス変更のために{0}",
"pt": "{0} para mudar a licença",
"tr": "Lisansı değiştirmek için {0}"
},
"draft": {
"description": "info > edit panel",
"en": "Draft",
"es": "Borrador",
"ja": "下書き",
"pt": "Rascunho",
"tr": "Taslak"
},
"draftDescription": {
"description": "info > edit panel",
"en": "Won't be listed on feeds but still accessible on your profile",
"es": "No se mostrará en el feed, pero seguirá siendo accesible en tu perfil",
"ja": "フィードには表示されませんが、あなたのプロフィールページには表示されます。",
"pt": "Não será listado no feed, mas continuará acessível no seu perfil",
"tr": "Bildirimlerde gözükmez ama kendi profilinde hala erişilebilir"
},
"template": {
"description": "info > edit panel",
"en": "Add to My Templates",
"es": "Añadir a Mis Plantillas",
"ja": null,
"pt": null,
"tr": "Şablonlarıma Ekle"
},
"templateDescription": {
"description": "info > edit panel",
"en": "Will be listed in your templates to use on new sketches",
"es": "Se mostrará en tus plantillas para usar en nuevos bocetos",
"ja": null,
"pt": null,
"tr": "Yeni çizimlerde şablon listesinden kolayca çağırabilirsin"
},
"templateDescription_teacher": {
"description": "info > edit panel",
"en": "Will be listed in templates for both you and your students.",
"es": "Se mostrará en las plantillas para ti y tus estudiantes.",
"ja": null,
"pt": null,
"tr": "Senin ve öğrencilerinin şablon listesine eklenecek"
},
"whoCanSeeSketch": {
"description": "info > edit panel",
"en": "Who can see your sketch?",
"es": "¿Quién puede ver tu boceto?",
"ja": "誰がこのスケッチを見ることができますか?",
"pt": "Quem pode ver seu esboço?",
"tr": "Çizimi kim görebilir?"
},
"whoCanSeeCode": {
"description": "info > edit panel",
"en": "Who can see the code?",
"es": "¿Quién puede ver el código?",
"ja": "誰がこのコードを見ることができますか?",
"pt": "Quem pode ver o código?",
"tr": "Kodu kim görebilir?"
},
"whoCanComment": {
"description": "info > edit panel",
"en": "Who can comment?",
"es": "¿Quién puede comentar?",
"ja": "誰がコメントできますか?",
"pt": "Quem pode comentar?",
"tr": "Kim yorum yapabilir?"
},
"privacy-anyone": {
"description": "info > edit panel",
"en": "Anyone",
"es": "Cualquiera",
"ja": "誰でも",
"pt": "Qualquer um",
"tr": "Herkes"
},
"privacy-classes": {
"description": "info > edit panel",
"en": "My Classes",
"es": "Mis Clases",
"ja": "自分のクラス",
"pt": "Minhas Aulas",
"tr": "Sınıflarım"
},
"privacy-classesDescription": {
"description": "info > edit panel",
"en": "Only the students and teachers in your classes",
"es": "Solo estudiantes y profesores de tus clases",
"ja": "自分のクラスの先生と生徒のみ",
"pt": "Somente estudantes e professores nas suas aulas",
"tr": "Sadece sınıflarındaki öğrenci ve öğretmenler"
},
"privacy-teachers": {
"description": "info > edit panel",
"en": "My Teachers",
"es": "Mis Profesores",
"ja": "先生",
"pt": "Meus Professores",
"tr": "Öğretmenlerim"
},
"privacy-teachersDescription": {
"description": "info > edit panel",
"en": "Only the teachers in your classes",
"es": "Solo los profesores de tus clases",
"ja": "自分のクラスの先生のみ",
"pt": "Somente os professores das suas aulas",
"tr": "Sadece sınıflarındaki öğretmenleriniz"
},
"privacy-me": {
"description": "info > edit panel",
"en": "Only Me",
"es": "Solo Yo",
"ja": "自分のみ",
"pt": "Somente Eu",
"tr": "Sadece Ben"
},
"privacy-joinPlus": {
"description": "info > edit panel. Displayed to non-plus members",
"en": "<a href='/membership/' target='_blank'>Join Plus+</a> to change privacy settings",
"es": "<a href='/membership/' target='_blank'>Suscríbete a Plus+</a> para cambiar la configuración de privacidad",
"ja": null,
"pt": "<a href='/membership/' target='_blank'>Aderir ao Plus+</a> para mudar sua configuração de privacidade",
"tr": "Gizlilik seçenekleri için <a href='/membership/' target='_blank'>Plus+'a katıl</a>"
},
"sourceNotVisible": {
"description": "info > edit panel > when source code is hidden",
"en": "Source code won't be visible, but it will still be accessible via browser console",
"es": "El código fuente no será visible, pero seguirá siendo accesible a través de la consola del navegador",
"ja": "コードは非表示になりますが、ブラウザコンソールからはアクセス可能です。",
"pt": "O código fonte não estará visível, mas será acessível pelo depurador do navegador.",
"tr": "Kod gözükmeyecek ama hala tarayıcı konsolu üzerinden erişilebilir"
},
"hideSource-joinPlus": {
"description": "info > edit panel. Displayed to non-plus members",
"en": "<a href='/membership/' target='_blank'>Join Plus+</a> to hide source code",
"es": "<a href='/membership/' target='_blank'>Suscríbete a Plus+</a> para ocultar el código fuente",
"ja": null,
"pt": "<a href='/membership/' target='_blank'>Aderir ao Plus+</a> para esconder o código fonte",
"tr": "Kodu gizlemek için <a href='/membership/' target='_blank'>Plus+'a katıl</a>"
},
"privateURL": {
"description": "info > edit panel",
"en": "Private URL",
"es": "URL Privada",
"ja": "プライベートURL",
"pt": "URL Privada",
"tr": "Gizli Adres"
},
"privateURLDescription": {
"description": "info > edit panel",
"en": "You can share your sketch with this URL even if it is set hidden above",
"es": "Puedes compartir tu boceto con esta URL incluso si está oculto arriba",
"ja": "誰が見られるかの設定にかかわらず、このURLでスケッチをシェアできます。",
"pt": "Você pode compartilhar o esboço com esta URL mesmo se ela estiver escondida acima",
"tr": "Yukarıda gizli olsa bile çizimi bu adres ile paylaşabilirsin"
},
"privateURL-create": {
"description": "info > edit panel",
"en": "Create",
"es": "Crear",
"ja": "作成",
"pt": "Criar",
"tr": "Yarat"
},
"privateURL-pleaseSave": {
"description": "info > edit panel",
"en": "Please save your sketch to create private URL",
"es": "Por favor, guarda tu boceto para crear una URL privada",
"ja": "プライベートURLを作成するにはスケッチを保存してください。",
"pt": "Por favor, salve seu esboço para criar uma URL privada",
"tr": "Gizli adres yaratmadan önce lütfen çizimi kaydet"
},
"privateURL-joinPlus": {
"description": "info > edit panel",
"en": "<a href='/membership/' target='_blank'>Join Plus+</a> to share your sketch with private URL",
"es": "<a href='/membership/' target='_blank'>Suscríbete a Plus+</a> para compartir tu boceto con una URL privada",
"ja": "プライベートURLを作成するにはスケッチを保存してください。",
"pt": "Por favor, salve seu esboço para criar uma URL privada",
"tr": "Çizimini gizli adres ile paylaşmak için <a href='/membership/' target='_blank'>Plus+'a katıl</a>"
},
"deleteSketch": {
"description": "info > edit panel",
"en": "Delete Sketch?",
"es": "¿Borrar Boceto?",
"ja": "スケッチを削除しますか?",
"pt": "Apagar Esboço?",
"tr": "Çizimi Sil?"
},
"fullscreen": {
"description": "under share panel",
"en": "Fullscreen",
"es": "Pantalla Completa",
"ja": null,
"pt": "Tela cheia",
"tr": "Tam Ekran"
},
"share": {
"description": "under share panel",
"en": "Share",
"es": "Compartir",
"ja": null,
"pt": "Compartilhar",
"tr": "Paylaş"
},
"noForksCreatedYet": {
"description": "under fork panel",
"en": "No forks created yet",
"ja": "フォークはまだありません",
"es": "Aún no se han creado forks",
"pt": "Sem cópias criadas ainda",
"tr": "Henüz çatal oluşturulmadı"
},
"signInToDownload": {
"description": "under share panel",
"en": "Sign in to download",
"es": "Inicia sesión para descargar",
"ja": null,
"pt": "Entrar para baixar",
"tr": "İndirmek için giriş yapın"
},
"addToCuration": {
"description": "under share panel",
"en": "Add to Curation",
"es": "Añadir a Curación",
"ja": null,
"pt": "Adicionar a Curadoria",
"tr": "Kürasyona Ekle"
},
"embedView": {
"description": "under share panel > embed settings",
"en": "View",
"es": "Ver",
"jp": null,
"pt": null,
"tr": "Göster"
},
"embedView-sketch": {
"description": "under share panel > embed settings",
"en": "Sketch",
"es": "Boceto",
"ja": "スケッチ",
"pt": "Esboço",
"tr": "Çizim"
},
"embedView-code": {
"description": "under share panel > embed settings ('code' as a noun)",
"en": "Code",
"es": "Código",
"ja": "コード",
"pt": "Código",
"tr": "Kod"
},
"instructions": {
"description": "under share panel",
"en": "Instructions",
"es": "Instrucciones",
"ja": null,
"pt": "Instruções",
"tr": "Yönergeler"
},
"showInstructions": {
"description": "under share panel",
"en": "Show Instructions",
"es": "Mostrar Instrucciones",
"ja": null,
"pt": "Apresentar Instruções",
"tr": "Yönergeleri Görüntüle"
},
"showFullscreen": {
"description": "under share panel",
"en": "Show Fullscreen",