forked from snapapps/edgy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lang-zh.js
1214 lines (1075 loc) · 30 KB
/
lang-zh.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-zh.js
Simplified Chinese translation for SNAP!
SNAP 简体中文翻译版
written by Jens Mönig
Copyright (C) 2012 by Jens Mönig
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.zh = {
/*
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':
'djh@rhjxx.cn', // optional
'last_changed':
'2013-3-25', // 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':
'将x坐标增加 %n ',
'set x to %n':
'将x坐标设定为 %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':
'直接运行 %c',
'when I start as a clone':
'当我开始克隆',
'create a clone of %cln':
'新建一个克隆 %cln',
'myself':
'自己',
'delete this clone':
'删除这个克隆',
// 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',
'turbo mode?':
'Turbo模式',
'set turbo mode to %b':
'设置Turbo模式 %b',
'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':
'成立',
'false':
'不成立',
'join %words':
'将 %words 加入到',
'hello':
'你好',
'world':
'行者老邓',
'letter %n of %s':
'第 %n 位在文字 %s 中',
'length of %s':
'%s 的长度',
'unicode of %s':
'字符 %s 的Unicode编码值',
'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!...',
'Reference manual':
'参考手册',
'Snap! website':
'官方网站',
'Download source':
'下载源码',
'Switch back to user mode':
'切换到用户模式',
'disable deep-Morphic\ncontext menus\nand show user-friendly ones':
'禁用 变形语式\n快捷菜单\n\n与非\n友好用户界面',
'Switch to dev mode':
'切换到开发人员模式',
'enable Morphic\ncontext menus\nand inspectors,\nnot user-friendly!':
'启用 正常语式\n快捷菜单\n与非检查\n友好用户界面',
// project menu
'Project notes...':
'项目说明...',
'New':
'新建',
'Open...':
'打开...',
'Save':
'保存',
'Save As...':
'另存为...',
'Import...':
'导入...',
'file menu import hint':
'当你拖动到系统,注意查看检查报告\n'
+ '要注意检查报告为空\n\n'
+ '有一些浏览器不支持这一功能',
'Export project as plain text...':
'纯文本格式导出项目...',
'Export project...':
'导出项目...',
'show project data as XML\nin a new browser window':
'新浏览窗以XML格式显示项目',
'Export blocks...':
'导出程序块...',
'show global custom block definitions as XML\nin a new browser window':
'新浏览窗以XML格式显示全局自定义程序块',
'Import tools':
'导入工具包',
'load the official library of\npowerful blocks':
'载入官方库和强大的程序块',
// cloud menu
'Login...':
'登录...',
'Signup...':
'注册...',
// settings menu
'Language...':
'语言选择...',
'Zoom blocks...':
'放大程序块...',
'Blurred shadows':
'半透明阴影',
'uncheck to use solid drop\nshadows and highlights':
'取消选中 降低阴影和高亮的清晰度',
'check to use blurred drop\nshadows and highlights':
'检测 降低阴影和高亮的模糊度',
'Zebra coloring':
'斑马着色',
'check to enable alternating\ncolors for nested blocks':
'检测 使嵌套块的颜色交换',
'uncheck to disable alternating\ncolors for nested block':
'取消选中 使嵌套块的颜色交换',
'Dynamic input labels':
'动态输入标签',
'uncheck to disable dynamic\nlabels for variadic inputs':
'取消选中要禁用动态可变参数输入标签',
'检查启用动态可变参数输入标签':
'marcar para habilitar etiquetas\ndin\u00E1micas para entradas varidic',
'Prefer empty slot drops':
'喜欢减少空槽',
'settings menu prefer empty slots hint':
'喜欢空槽设置菜单',
'uncheck to allow dropped\nreporters to kick out others':
'取消选中 允许下降报告并取消其它报告',
'Long form input dialog':
'长形式输入对话框',
'check to always show slot\ntypes in the input dialog':
'检查显示插槽在输入对话框中的类型',
'uncheck to use the input\ndialog in short form':
'取消选择 输入窗并显示简洁对话框',
'Virtual keyboard':
'虚拟键盘',
'uncheck to disable\nvirtual keyboard support\nfor mobile devices':
'取消选中 禁用虚拟键盘、可移动设备',
'check to enable\nvirtual keyboard support\nfor mobile devices':
'检查 使用虚拟键、可移动设备',
'Input sliders':
'输入滑块',
'uncheck to disable\ninput sliders for\nentry fields':
'取消选中 禁用输入滑块、输入字段',
'check to enable\ninput sliders for\nentry fields':
'检查 使用输入滑块、输入字段',
'Clicking sound':
'点击声音',
'uncheck to turn\nblock clicking\nsound off':
'取消选中 关闭点击程序块的声音',
'check to turn\nblock clicking\nsound on':
'检查 关闭点击程序块的声音',
'Animations':
'动画',
'uncheck to disable\nIDE animations':
'取消选中禁用IDE动画',
'Turbo mode':
'Turbo模式',
'check to prioritize\nscript execution':
'检查的优先执行脚本顺序',
'uncheck to run scripts\nat normal speed':
'取消选中正常速度运行脚本',
'check to enable\nIDE animations':
'检查启用IDE动画',
'Thread safe scripts':
'线程安全的脚本',
'uncheck to allow\nscript reentrance':
'取消选中 允许脚本重新载入',
'check to disallow\nscript reentrance':
'检查 不允许脚本重新载入',
'Prefer smooth animations':
'不流畅的动画',
'uncheck for greater speed\nat variable frame rates':
'取消选中在可变帧频更快的速度',
'check for smooth, predictable\nanimations across computers':
'检查是否平滑,可预见的多台电脑动画',
// inputs
'with inputs':
'参数',
'input names:':
'参数名:',
'Input Names:':
'参数名:',
'input list:':
'输入列表:',
// context menus:
'help':
'帮助',
// blocks:
'help...':
'帮助...',
'relabel...':
'重新标记...',
'duplicate':
'复制',
'make a copy\nand pick it up':
'创建一个副本并抓起',
'only duplicate this block':
'只复制此块',
'delete':
'删除',
'script pic...':
'将脚本存为图像...',
'open a new window\nwith a picture of this script':
'新浏览窗口中打开脚本的图片',
'ringify':
'环',
'unringify':
'删除环',
// custom blocks:
'delete block definition...':
'删除自定义程序块',
'edit...':
'编辑...',
// sprites:
'edit':
'编辑',
'export...':
'导出...',
'show all':
'显示所有',
'pic...':
'导出图像...',
'open a new window\nwith a picture of the stage':
'打开一张图片舞台的新窗口,',
// 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':
'确定',
'Cancel':
'取消',
'Yes':
'是',
'No':
'否',
// help
'Help':
'帮助',
// zoom blocks
'Zoom blocks':
'放大程序块',
'build':
'建立',
'your own':
'你自己',
'blocks':
'程序块',
'normal (1x)':
'标准 (1x)',
'demo (1.2x)':
'演示 (1.2x)',
'presentation (1.4x)':
'演示文稿 (1.4x)',
'big (2x)':
'大(2x)',
'huge (4x)':
'超大型 (4x)',
'giant (8x)':
'巨人型 (8x)',
'monstrous (10x)':
'无敌型 (10x)',
'Untitled':
'无标题',
'Open Project':
'打开项目',
'Open':
'打开',
'(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?':
'你要取消当前编辑的项目,重新建立项目吗?',
// open project
'Open Projekt':
'打开项目',
// save project
'Save Project As...':
'项目另存为...',
// export blocks
'Export blocks':
'导出程序块',
'Import blocks':
'导入程序块',
'this project doesn\'t have any\ncustom global blocks yet':
'这个项目没有包含全局性的自定义程序块',
'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':
'删除自定义程序块',
'block deletion dialog text':
'你确定要删除自定义程序块及所有实例吗?',
// input dialog
'Create input name':
'创建参数名',
'Edit input name':
'编辑参数名',
'Edit label fragment':
'编辑标签片段',
'Title text':
'标题文本',
'Input name':
'参数名',
'Delete':
'删除',
'Object':
'对象',
'Number':
'数字',
'Text':
'文本',
'List':
'链表',
'Any type':
'所有类型',
'Boolean (T/F)':
'布尔值(是/否)',
'Command\n(inline)':
'命令(内置)',
'Command\n(C-shape)':
'命令(C型)',
'Any\n(unevaluated)':
'任意(未评价)',
'Boolean\n(unevaluated)':
'布尔(评价)',
'Single input.':
'单一参数.',
'Default Value:':
'默认值:',
'Multiple inputs (value is list of inputs)':
'多行输入(值为参数列表)',
'Upvar - make internal variable visible to caller':
'上传变量 - 使内部变量对调用者可见',
// About Snap
'About Snap':
'关于 Snap',
'Back...':
'返回...',
'License...':
'许可...',
'Modules...':
'模块...',
'Credits...':
'光荣榜...',
'Translators...':
'翻译者',
'License':
'许可',
'current module versions:':
'目前版本的模块:',
'Contributors':