This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.xml
3570 lines (2617 loc) · 214 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?><?sketchware version="3.10.0.1" locale="zh"?><resources>
<!--by:MOEYUUKO https://www.moeyuuko.top github: https://github.com/MOEYUUKO/Sketchware_zh-cn 个人翻译 不与任何组织相关 请遵循Apache License -->
<!-- ************************************************* Common Start *********************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="common_word_all">全部</string>
<string name="common_word_add">添加</string>
<string name="common_word_agree">同意</string>
<string name="common_word_cancel">取消</string>
<string name="common_word_choose">选择</string>
<string name="common_word_change">更改</string>
<string name="common_word_close">关闭</string>
<string name="common_word_copy">复制</string>
<string name="common_word_delete">删除</string>
<string name="common_word_edit">编辑</string>
<string name="common_word_exit">退出</string>
<string name="common_word_overwrite">覆盖</string>
<string name="common_word_yes">是</string>
<string name="common_word_no">否</string>
<string name="common_word_modify">修改</string>
<string name="common_word_ok">OK</string>
<string name="common_word_reset">重置</string>
<string name="common_word_save">保存</string>
<string name="common_word_save_as_new">保存为新的</string>
<string name="common_word_submit">提交</string>
<string name="common_word_show">显示</string>
<string name="common_word_purchase">购买</string>
<string name="common_word_public">公开的</string>
<string name="common_word_private">报名</string>
<string name="common_word_locale">语言环境</string>
<string name="common_word_enroll">注册</string>
<string name="common_word_enrolled">不公开的</string>
<string name="common_word_ended">截至</string>
<string name="common_word_description">描述</string>
<string name="common_word_detail">详情</string>
<string name="common_word_try_again">再试一次</string>
<string name="common_word_contributor">贡献者</string>
<string name="common_word_collection">收藏</string>
<string name="common_word_create">创建</string>
<string name="common_word_information">信息</string>
<string name="common_word_decrypt">解码</string>
<string name="common_word_import">导入</string>
<string name="common_word_import_count">导入 %s 个项目</string>
<string name="common_word_finish">完成</string>
<string name="common_word_remove">清除</string>
<string name="common_word_run">运行</string>
<string name="common_word_accept">保存</string>
<string name="common_word_continue">继续</string>
<string name="common_word_goback">返回</string>
<string name="common_word_select">选择</string>
<string name="common_word_see_more">查看更多</string>
<string name="common_word_see_all">查看全部</string>
<string name="common_word_settings">设置</string>
<string name="common_word_share">分享</string>
<string name="common_word_update">更新</string>
<string name="common_word_upload">上传</string>
<string name="common_word_preview">预览</string>
<string name="common_word_review">评论</string>
<string name="common_word_restore">恢复</string>
<string name="common_word_warning">警告</string>
<string name="common_word_deprecated">*弃用</string>
<string name="common_word_watch">查看</string>
<string name="common_word_project_information">项目信息</string>
<string name="common_word_project_information_package">包名</string>
<string name="common_word_project_information_project">项目名</string>
<string name="common_word_project_information_app_name">App名</string>
<string name="common_word_project_information_version_code">版本代码</string>
<string name="common_word_project_information_version_name">版本名字</string>
<string name="common_word_activity">活动</string>
<string name="common_word_view">视图</string>
<string name="common_word_custom_view">自定义视图</string>
<string name="common_word_component">组件</string>
<string name="common_word_drawer">抽屉</string>
<string name="common_word_moreblock">组合块</string>
<string name="common_word_image">图片</string>
<string name="common_word_sound">音频</string>
<string name="common_word_font">字体</string>
<string name="common_word_widget">小部件</string>
<string name="common_word_block">块</string>
<string name="common_word_variable">变量</string>
<string name="common_message_insufficient_storage_space_title">存储空间不足</string>
<string name="common_message_insufficient_storage_space">存储空间不足\n请腾出空间再试试</string>
<string name="common_message_not_enough_memory">内存不足</string>
<string name="common_message_progress">进行中</string>
<string name="common_message_loading">正在加载</string>
<string name="common_message_downloading">正在下载</string>
<string name="common_message_downloading_data">正在下载数据文件</string>
<string name="common_message_downloading_resources">下载资源中</string>
<string name="common_message_downloading_icon">下载图标中</string>
<string name="common_message_need_login">您需要登录才能使用此功能</string>
<string name="common_message_need_username">您需要创建一个用户名才能使用此功能</string>
<string name="common_message_check_network">请检查您的互联网连接</string>
<string name="common_message_complete_copy_to_clipborad">复制到剪贴板</string>
<string name="common_message_permission_account">需要联系人权限才能在Sketchware中启用社交媒体登录. 请在下一步中提供访问权限</string>
<string name="common_message_permission_account1">没有权限. 请点击 "设置" 以允许 "联系人" 权限.如果没有此权限,则无法使用Google帐户登录</string>
<string name="common_message_permission_account_for_purchase">为了管理购买历史记录,我们需要获得访问您的Google帐户的权限</string>
<string name="common_message_permission_account1_for_purchase">没有权限. 请点击"设置"以允许"联系人"的权限.\n未经其许可,我们无法管理购买历史记录</string>
<string name="common_message_permission_title_storage">需要权限</string>
<string name="common_message_permission_storage">要访问照片,媒体和文件,请在下一步中给予Sketchware权限</string>
<string name="common_message_permission_storage1">没有权限.\n请点击 "设置" 以允许 "存储" . 没有此权限,某些功能可能无法正常运行</string>
<string name="common_message_permission_denied">没有权限</string>
<string name="common_message_permission_need_load_project">我们需要您的许可才能保存和加载项目</string>
<string name="common_message_file_to_save_not_exist">要保存的文件不存在</string>
<string name="common_message_name_unavailable">当前名称不可用</string>
<string name="common_message_complete_save">保存成功</string>
<string name="common_message_complete_reset">重置成功</string>
<string name="common_message_complete_delete">删除成功</string>
<string name="common_message_complete_copy">复制成功</string>
<string name="common_message_complete_upload">上传成功</string>
<string name="common_message_complete_modify">修改成功</string>
<string name="common_message_complete_update">更新</string>
<string name="common_message_confirm">你确定?</string>
<string name="common_error_unknown">未知错误! 请联系管理员</string>
<string name="common_error_failed_load_data">无法加载数据</string>
<string name="common_error_failed_to_initialize">无法初始化 </string>
<string name="common_error_an_error_occurred">发生错误!</string>
<string name="common_error_failed_to_save">无法保存</string>
<string name="common_error_failed_to_connect_server">无法连接到服务器</string>
<string name="common_error_failed_to_load_ad">广告无法载入</string>
<string name="common_error_failed_save_server">无法保存在服务器中</string>
<string name="common_error_activity_not_found">未找到活动</string>
<string name="common_error_failed_download_from_server">无法从服务器下载</string>
<string name="common_error_access_denied">拒绝访问</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Common End *********************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Main Start ************************************************* -->
<!-- ************************************************************************************************************************* -->
<string name="main_tab_title_myproject">我的项目</string>
<string name="main_tab_title_tutorials">教程</string>
<string name="main_tab_title_shared_projects">共享项目</string>
<string name="main_drawer_title_remove_ads">移除广告</string>
<string name="main_drawer_title_purchase_list">购买清单</string>
<string name="main_drawer_title_docs">文档</string>
<string name="main_drawer_title_share_with_friends">和朋友分享</string>
<string name="main_drawer_title_system_settings">系统设置</string>
<string name="main_drawer_title_program_information">关于</string>
<string name="main_drawer_title_language_settings">语言设置</string>
<string name="main_drawer_context_menu_title_slack_invitation">获得我的邀请</string>
<string name="main_drawer_context_menu_title_slack_open">在Slack中打开(需要邀请)</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Main End ************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Intro Start ************************************************ -->
<!-- ************************************************************************************************************************* -->
<string name="intro_pager_1_title">创建一个棒棒的应用</string>
<string name="intro_pager_1_description">友好的界面与无忧无虑的体验</string>
<string name="intro_pager_2_title">简单的方块编程</string>
<string name="intro_pager_2_description">无需编程经验</string>
<string name="intro_pager_3_title">与世界分享</string>
<string name="intro_pager_3_description">与他人探索和分享</string>
<string name="intro_button_explore">探索</string>
<string name="intro_button_sign_in">登录</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Intro End ************************************************ -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* MY PROJECTS Start ****************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="myprojects_confirm_project_delete">你确定要删除这个项目吗?</string>
<string name="myprojects_confirm_project_overwrite">一个同名的项目已经存在. 你想覆盖吗?</string>
<string name="myprojects_list_menu_title_create_a_new_project">创建一个新项目</string>
<string name="myprojects_list_menu_title_settings">设置</string>
<string name="myprojects_list_menu_title_share">分享</string>
<string name="myprojects_list_menu_title_sign">签署</string>
<string name="myprojects_list_menu_title_export">导出</string>
<string name="myprojects_list_menu_title_delete">删除</string>
<string name="myprojects_show_message_different_package_name">请更改为不同的软件包名称.\n以开始的项目\"%s\" 软件包名称不能相同</string>
<string name="myprojects_fail_share">分享失败. 请稍后再试</string>
<string name="myprojects_settings_description_change_icon">点击更改图标</string>
<string name="myprojects_settings_hint_enter_application_name">输入应用程序名称</string>
<string name="myprojects_settings_actionbar_title_new_projet">新项目</string>
<string name="myprojects_settings_actionbar_title_project_settings">项目设置</string>
<string name="myprojects_settings_title_advanced_settings">高级设置</string>
<string name="myprojects_settings_hint_enter_package_name">包名</string>
<string name="myprojects_settings_hint_enter_project_name">项目名</string>
<string name="myprojects_settings_message_contain_dot">包名称必须至少包含一个或多个点(.)字符</string>
<string name="myprojects_settings_button_save">保存</string>
<string name="myprojects_settings_button_create_app">创建应用</string>
<string name="myprojects_settings_context_menu_title_choose">选择</string>
<string name="myprojects_settings_context_menu_title_choose_gallery">从相册中选择</string>
<string name="myprojects_settings_context_menu_title_choose_gallery_with_crop">从图库中选择(裁剪)</string>
<string name="myprojects_settings_context_menu_title_choose_gallery_default">更改为默认图标</string>
<string name="myprojects_settings_message_package_rename">此项目与Firebase关联. 如果更改软件包名称,Firebase可能无法正常工作.</string>
<string name="myprojects_settings_confirm_reset_icon">你确定要重置图标吗?</string>
<string name="myprojects_settings_version_control_title">版本控制</string>
<string name="myprojects_settings_version_control_title_code">代码</string>
<string name="myprojects_settings_version_control_title_name">名字</string>
<string name="myprojects_share_project_actionbar_title">共享项目</string>
<string name="myprojects_share_project_title_visibiity">公开度</string>
<string name="myprojects_share_project_title_visibiity_public">公开</string>
<string name="myprojects_share_project_title_visibiity_private">私人</string>
<string name="myprojects_share_project_title_allow_comments">允许评论</string>
<string name="myprojects_share_project_title_screenshots">截图</string>
<string name="myprojects_share_project_message_at_least_one_screenshot">至少需要一个屏幕截图</string>
<string name="myprojects_share_project_title_shrare_title">标题</string>
<string name="myprojects_share_project_title_shrare_description">描述</string>
<string name="myprojects_share_project_hint_share_title">这将是该帖子的标题</string>
<string name="myprojects_share_project_hint_share_desc">用几句话描述您的申请</string>
<string name="myprojects_share_project_dialog_terms_of_use_title">使用条款</string>
<string name="myprojects_share_project_dialog_terms_of_use_description">请继续阅读并同意我们的条款</string>
<string name="myprojects_share_project_message_set_project_private">如果您将项目设置为私人,则只能使用相同的登录信息访问它</string>
<string name="myprojects_share_project_message_complete_share">完成分享</string>
<string name="myprojects_share_project_title_select_my_projects">选择我的项目</string>
<string name="myprojects_share_project_title_select_shared_projects">选择共享项目</string>
<string name="myprojects_share_project_title_currently_shared_project">目前共享的项目</string>
<string name="myprojects_share_project_consent_actionbar_title">使用条款协议(Terms of Use Agreement)</string>
<string name="myprojects_share_project_consent_description_agree">您同意 不会分享</string>
<string name="myprojects_share_project_consent_button_agree">我同意(I Agree)</string>
<string name="myprojects_share_project_consent_title_sexual_content">色情内容</string>
<string name="myprojects_share_project_consent_title_empty_projects">空项目</string>
<string name="myprojects_share_project_consent_title_advertisments">广告</string>
<string name="myprojects_share_project_consent_title_copyright_raw">侵犯版权法的内容</string>
<string name="myprojects_share_project_consent_title_disrespectful_or_insulting">不尊重或侮辱的项目</string>
<string name="myprojects_sign_apk_guide_title">发布到Google Play商店</string>
<string name="myprojects_sign_apk_guide_description">通过签署应用程序,您可以导出项目并上传到Play商店</string>
<string name="myprojects_sign_apk_actionbar_title">签署APK文件</string>
<string name="myprojects_sign_apk_button_sign">签署</string>
<string name="myprojects_sign_apk_description_need_certificate">要将APK文件上传到Google Play商店,需要使用自签署证书</string>
<string name="myprojects_sign_apk_title_certificate">证书</string>
<string name="myprojects_sign_apk_message_not_found_certificate">没有找到证书</string>
<string name="myprojects_sign_apk_incorrect_password">密码错误</string>
<string name="myprojects_sign_apk_hint_enter_new_password">输入新密码</string>
<string name="myprojects_sign_apk_hint_enter_current_password">输入当前密码</string>
<string name="myprojects_sign_apk_new_certificate_title_new_certificate">创建一个新证书</string>
<string name="myprojects_sign_apk_new_certificate_hint_certificate_name">输入证书名称</string>
<string name="myprojects_sign_apk_new_certificate_title_certificate">证书</string>
<string name="myprojects_sign_apk_new_certificate_title_validity">有效期(年)</string>
<string name="myprojects_sign_apk_new_certificate_hint_first_and_last_name">名字和姓氏</string>
<string name="myprojects_sign_apk_new_certificate_hint_organizational_unit">组织单位</string>
<string name="myprojects_sign_apk_new_certificate_hint_organization">组织</string>
<string name="myprojects_sign_apk_new_certificate_hint_city">城市或地区</string>
<string name="myprojects_sign_apk_new_certificate_hint_state">州或省</string>
<string name="myprojects_sign_apk_new_certificate_hint_country_code">国家代码(XX)</string>
<string name="myprojects_sign_apk_new_certificate_hint_confirm_password">确认密码</string>
<string name="myprojects_sign_apk_new_certificate_button_create">创建</string>
<string name="myprojects_sign_apk_title_export_certificate">导出证书</string>
<string name="myprojects_sign_apk_error_failed_create_new_certificate">无法创建新证书</string>
<string name="myprojects_sign_apk_dialog_title_delete_certificate">删除证书</string>
<string name="myprojects_sign_apk_dialog_message_confirm_delete_certificate">您确定要删除此证书吗? 您将无法撤消此操作,并且在将应用上传到Google Play商店时可能会出现问题.</string>
<string name="myprojects_sign_apk_dialog_complete_create_certificate">新证书已创建</string>
<string name="myprojects_export_title_email_subject">%s APK文件的安装</string>
<string name="myprojects_export_title_email_body">附加文件 : %s </string>
<string name="myprojects_export_chooser_title_email">选择邮件</string>
<string name="myprojects_export_button_share">分享APK文件</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* MY PROJECTS End ****************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Design Start **************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="design_tab_title_view">视图</string>
<string name="design_tab_title_event">事件</string>
<string name="design_tab_title_component">组件</string>
<string name="design_actionbar_title_library">库管理器</string>
<string name="design_actionbar_title_manager_view">视图管理</string>
<string name="design_actionbar_title_manager_collection">收藏管理</string>
<string name="design_actionbar_title_manager_image">图像管理</string>
<string name="design_actionbar_title_manager_sound">音频管理</string>
<string name="design_actionbar_title_manager_font">字体管理</string>
<string name="design_actionbar_title_show_source_code">显示源代码</string>
<string name="design_file_selector_title_java">可用的Java文件</string>
<string name="design_option_menu_title_save_project">保存项目</string>
<string name="design_quit_title_exit_projet">退出项目</string>
<string name="design_quit_button_save_and_exit">保存 & 退出</string>
<string name="design_quit_message_confirm_save">您想在退出前保存更改吗?</string>
<string name="design_restore_data_title">还原数据</string>
<string name="design_restore_data_message_confirm">出了点问题,以前的数据没有保存. 你想恢复它吗?</string>
<string name="design_run_title_ready_to_build">准备建立 </string>
<string name="design_run_message_invalid_forever_block">停止块 不存在于 永久块</string>
<string name="design_run_message_usage_break_block">中断块 只能重复或内部使用于 永久块</string>
<string name="design_drawer_menu_title">组件配置</string>
<string name="design_drawer_menu_bottom_title">全局</string>
<string name="design_drawer_menu_title_theme">主题</string>
<string name="design_drawer_menu_title_library">库</string>
<string name="design_drawer_menu_title_collection">收藏</string>
<string name="design_drawer_menu_title_view">视图</string>
<string name="design_drawer_menu_title_image">图像</string>
<string name="design_drawer_menu_title_sound">音频</string>
<string name="design_drawer_menu_title_font">字体</string>
<string name="design_drawer_menu_title_source_code">显示源代码</string>
<string name="design_drawer_menu_description_theme">颜色主题</string>
<string name="design_drawer_menu_description_library">组件设置</string>
<string name="design_drawer_menu_description_collection">我保存的组件</string>
<string name="design_drawer_menu_description_view">管理多个屏幕</string>
<string name="design_drawer_menu_description_image">导入照片和图标</string>
<string name="design_drawer_menu_description_sound">导入音乐和声音效果</string>
<string name="design_drawer_menu_description_font">导入不同的字体</string>
<string name="design_drawer_menu_description_source_code">显示Java和Xml文件</string>
<string name="design_library_settings_title_enabled">启用</string>
<string name="design_library_settings_guide_tutorial">如果这是您第一次设置,请参阅教程.</string>
<string name="design_library_title_appcompat">程序兼容性</string>
<string name="design_library_title_appcompat_and_design">应用程序兼容和设计</string>
<string name="design_library_message_confirm_uncheck_appcompat_and_design">现有的抽屉布局和FAB将被删除. 继续?</string>
<string name="design_library_description_appcompat_and_design">抽屉布局,浮动行动按钮 </string>
<string name="design_library_description_firebase">使用Firebase数据库和身份验证</string>
<string name="design_library_message_slow_down_compilation_time">启用库可能会减慢某些设备上的编译速度.</string>
<string name="design_library_appcompat_description">激活此兼容库可让您将抽屉布局和浮动操作按钮添加到活动中.</string>
<string name="design_library_firebase_description">如果启用,您将能够使用Firebase DB,Auth和存储组件.</string>
<string name="design_library_firebase_title_firebase_settings">Firebase设置</string>
<string name="design_library_firebase_title_data_location">数据位置</string>
<string name="design_library_firebase_hint_enter_data_location">输入数据位置</string>
<string name="design_library_firebase_hint_enter_firebase_project_id">输入Firebase项目ID</string>
<string name="design_library_firebase_hint_enter_firebase_app_id">输入Firebase APP ID</string>
<string name="design_library_firebase_hint_enter_firebase_api_key">输入Firebase API密钥</string>
<string name="design_library_firebase_hint_enter_firebase_storage_bucket_url">输入Firebase存储桶(Bucket) Url</string>
<string name="design_library_firebase_description_settings">项目ID,应用程序ID和API密钥必须与Firebase控制台中的值匹配.</string>
<string name="design_library_firebase_description_storage">存储分区网址必须与Firebase存储中的值匹配才能正常运行.</string>
<string name="design_library_firebase_title_firebase_setup_tutorial">Firebase安装教程</string>
<string name="design_library_firebase_title_firebase">Firebase</string>
<string name="design_library_firebase_dialog_description_confirm_uncheck_firebase">如果您取消选中Firebase数据库选项,现有的Firebase组件将被删除. 你确定你要继续吗?</string>
<string name="design_library_firebase_button_goto_firebase_console">转到Firebase控制台</string>
<string name="design_library_firebase_button_goto_firebase_database">转到Firebase数据库</string>
<string name="design_library_firebase_button_goto_firebase_authentication">转到Firebase身份验证</string>
<string name="design_library_firebase_button_goto_firebase_storage">转到Firebase存储</string>
<string name="design_library_firebase_description_about_firebase">Firebase实时数据库是Google基于云的NoSQL数据库,您可以在其中实时保存和同步数据.</string>
<string name="design_library_guide_setup_first">为了使用此组件,您必须首先在库管理器中设置.</string>
<string name="design_library_firebase_guide_setup_first">为了使用此组件,您必须先在Firebase设置中设置API密钥.</string>
<string name="design_library_firebase_guide_path_example">从根开始的路径.\nex)\"users/username\"</string>
<string name="design_library_firebase_message_id_fill_out">项目ID,应用程序ID和API密钥必须填写.</string>
<string name="design_manager_tab_title_this_project">此项目</string>
<string name="design_manager_tab_title_my_collection">我的收藏</string>
<string name="design_manager_title_add_to_collection">添加到我的收藏</string>
<string name="design_manager_change_name_button">重命名</string>
<string name="design_manager_message_collection_name_conflict">似乎有一个命名冲突. 请确保没有重复的名称.</string>
<string name="design_manager_message_collection_name_no_conflict">没有命名冲突</string>
<string name="design_manager_message_edit_complete">编辑完成</string>
<string name="design_manager_message_add_complete">添加完成</string>
<string name="design_manager_message_import_complete">导入完成</string>
<string name="design_manager_view_title_add_custom_view">新的自定义视图</string>
<string name="design_manager_view_title_add_view">新活动</string>
<string name="design_manager_view_title_edit_view">修改活动</string>
<string name="design_manager_view_title_screen_orientation">屏幕方向</string>
<string name="design_manager_view_title_keyboad_settings">键盘设置</string>
<string name="design_manager_view_title_activity_preset">活动预设</string>
<string name="design_manager_view_title_empty_activity">空活动</string>
<string name="design_manager_view_title_view_name">查看名称 : </string>
<string name="design_manager_view_title_activity_name">活动名称 : </string>
<string name="design_manager_view_message_slow_down">包括抽屉或FAB可能会减慢某些设备上的编译速度.</string>
<string name="design_manager_view_message_no_view">没有要显示的视图</string>
<string name="design_manager_view_description_guide_create_activity">要创建新的活动,请在此处添加它</string>
<string name="design_manager_view_description_guide_create_custom_view">在此创建一个新的自定义视图</string>
<string name="design_manager_view_description_guide_use_custom_view">自定义视图可用于更改项目在列表视图(ListView)或微调(Spinner)内显示的方式</string>
<string name="design_manager_view_hint_enter_view_name">输入查看名称</string>
<string name="design_manager_image_title_add_image">添加图像</string>
<string name="design_manager_image_title_edit_image">修改图像</string>
<string name="design_manager_image_title_edit_image_name">修改图像名称</string>
<string name="design_manager_image_description_guide_add_image">如果你在这里添加图片\n You 您可以将它用作图标(Icon)或图像视图(ImageView)</string>
<string name="design_manager_image_hint_enter_image_name">输入图像名称</string>
<string name="design_manager_image_title_apply_same_naming">对其他可用的图像,应用相同的命名方式</string>
<string name="design_manager_sound_title_add_sound">添加音频</string>
<string name="design_manager_sound_title_edit_sound">修改音频</string>
<string name="design_manager_sound_title_edit_sound_name">修改音频名称</string>
<string name="design_manager_sound_hint_enter_sound_name">输入音频名称</string>
<string name="design_manager_sound_description_guide_add_sound">添加背景音乐或音效</string>
<string name="design_manager_sound_title_apply_same_naming">对其他可用的声音,应用相同的命名方式</string>
<string name="design_manager_font_title_add_font">添加字体</string>
<string name="design_manager_font_title_edit_font">修改字体</string>
<string name="design_manager_font_title_edit_font_name">修改字体名称</string>
<string name="design_manager_font_message_not_support_font">如果您的设备不支持上述字体,则括号中的文字可能无法显示</string>
<string name="design_manager_font_hint_enter_font_name">输入字体名称</string>
<string name="design_manager_font_description_example_sentence">预览的一个例句</string>
<string name="design_manager_font_description_guide_add_font">添加.ttf扩展名的字体文件</string>
<string name="design_manager_font_title_apply_same_naming">对其他可用的字体,应用相同的命名风格</string>
<string name="design_manager_font_description_look_like_this">我的新字体看起来像这样!</string>
<string name="design_manager_icon_actionbar_title">导入图标</string>
<string name="design_manager_icon_hint_enter_icon_name">输入图标名称</string>
<string name="design_manager_image_import_icon_button_black">黑色</string>
<string name="design_manager_image_import_icon_button_grey">灰色</string>
<string name="design_manager_image_import_icon_button_white">白色</string>
<string name="design_manager_block_detail_actionbar_title">块细节</string>
<string name="design_manager_block_hint_enter_block_name">输出块名称</string>
<string name="design_manager_widget_title_actionbar_title">小部件详细信息</string>
<string name="design_manager_widget_hint_enter_widget_name">输入小部件名称</string>
<string name="design_property_recent_message_nodata">最近使用的属性将被显示</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Design End ***************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* View Start ***************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="view_panel_title_widgets">小部件</string>
<string name="view_panel_title_layouts">布局</string>
<string name="view_panel_title_properties">属性</string>
<string name="view_widget_favorites_save_title">将小部件保存到我的收藏夹</string>
<string name="view_widget_favorites_save_guide">保存的小部件保存到我的收藏夹并可从所有项目访问</string>
<string name="view_widget_favorites_delete_title">从我的收藏中删除</string>
<string name="view_widget_favorites_delete_message">您确定要删除我的收藏中保存的小部件吗? 此操作无法撤消.</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* View End ***************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Event Start ***************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="event_title_add_new_event">添加新事件</string>
<string name="event_title_add_new_component">添加新组件</string>
<string name="event_message_new_event">新事件添加</string>
<string name="event_message_new_events">新增事件</string>
<string name="event_message_no_events">没有要显示的事件</string>
<string name="event_message_no_avail_events">没有可用的事件添加</string>
<string name="event_context_menu_title">活动菜单</string>
<string name="event_context_menu_title_initialize_logic">初始化逻辑</string>
<string name="event_context_menu_title_delete_more_block">删除组合块</string>
<string name="event_context_menu_title_delete_event">删除事件</string>
<string name="event_dialog_confirm_reset_logic">你确定你想重置这个逻辑吗?</string>
<string name="event_dialog_confirm_delete_moreblock">你确定要删除这个更多的块吗?</string>
<string name="event_dialog_confirm_delete_component">您确定要删除选定的组件吗?</string>
<string name="event_dialog_confirm_delete_logic">所选事件的所有逻辑数据都将丢失\n你想继续吗?</string>
<string name="event_initialize">当活动创建</string>
<string name="event_definefunc">更多的块</string>
<string name="event_onbackpressed">当后退按钮按下</string>
<string name="event_onpostcreated">当活动开启完成</string>
<string name="event_onstart">当活动可见</string>
<string name="event_onstop">当活动不可见</string>
<string name="event_ondestroy">当活动销毁</string>
<string name="event_onresume">当活动重新开始</string>
<string name="event_onpause">当活动暂停</string>
<string name="event_onclick">当单击</string>
<string name="event_oncheckchanged">当检查到变化</string>
<string name="event_onitemselected">当选择项目</string>
<string name="event_ontextchanged">当文本更改</string>
<string name="event_onprogresschanged">当进度已更改</string>
<string name="event_onstarttrackingtouch">当开始追踪触摸</string>
<string name="event_onstoptrackingtouch">当停止追踪触摸</string>
<string name="event_onpagestarted">当页面已启动</string>
<string name="event_onpagefinished">当页面已完成</string>
<string name="event_onanimationstart">当动画开始</string>
<string name="event_onanimationend">当动画结束</string>
<string name="event_onanimationcancel">当动画取消</string>
<string name="event_onitemclicked">当点击项目</string>
<string name="event_onitemlongclicked">当长按项目</string>
<string name="event_onbindcustomview">当绑定自定义视图</string>
<string name="event_onchildadded">当子类添加</string>
<string name="event_onchildchanged">当子类改变</string>
<string name="event_onchildremoved">当子类离开</string>
<string name="event_oncancelled">当取消</string>
<string name="event_onsensorchanged">当传感器改变</string>
<string name="event_oncreateusercomplete">当用户创建完成</string>
<string name="event_onsigninusercomplete">当用户登录完成</string>
<string name="event_onresetpasswordemailsent">当重置密码电子邮件发送</string>
<string name="event_onadloaded">当广告加载</string>
<string name="event_onadfailedtoload">当广告无法加载</string>
<string name="event_onadopened">当广告打开</string>
<string name="event_onadclosed">当广告关闭</string>
<string name="event_onuploadprogress">当上传进行时</string>
<string name="event_ondownloadprogress">当下载进行时</string>
<string name="event_onuploadsuccess">当上传成功</string>
<string name="event_ondownloadsuccess">当下载成功</string>
<string name="event_ondeletesuccess">当删除成功</string>
<string name="event_onfailure">当失败时</string>
<string name="event_onpicturetaken">当拍摄照片时</string>
<string name="event_onfilespicked">当选区文件时</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Event End ***************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Component Start ***************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="component_context_menu_title">组件菜单</string>
<string name="component_context_menu_title_delete_component">删除组件</string>
<string name="component_hint_enter_name">输入组件名称</string>
<string name="component_file_title_file_name">文件名</string>
<string name="component_file_hint_enter_file_name">输入文件名</string>
<string name="component_message_component_block_added">新的块已添加到逻辑编辑器</string>
<string name="component_message_no_components">没有要显示的组件</string>
<string name="component_file_picker_hint_mime_type">输入 Mime 类型</string>
<string name="component_file_picker_title_select_mime_type">选择 Mime 类型</string>
<string name="component_file_picker_title_select_mime_type_all_files">全部文件</string>
<string name="component_file_picker_title_select_mime_type_image_files">图像文件</string>
<string name="component_file_picker_title_select_mime_type_audio_files">音频文件</string>
<string name="component_file_picker_title_select_mime_type_text_files">文本文件</string>
<string name="component_title_add_component">全部组件</string>
<string name="component_description_intent">Intent \n用于启动新的活动</string>
<string name="component_description_file">File \n用于本地保存数据</string>
<string name="component_description_calendar">Calendar \n用于计算时间和日期</string>
<string name="component_description_vibrator">Vibrator \n用于振动设备</string>
<string name="component_description_timer">Timer \n用于延迟某些操作</string>
<string name="component_description_soundpool">SoundPool \n用于播放短暂的音频</string>
<string name="component_description_mediaplayer">MediaPlayer \n用于播放大型音频文件</string>
<string name="component_description_dialog">Dialog \n用于创建弹出窗口</string>
<string name="component_description_objectanimator">ObjectAnimator \n用于设置视图中的某些动画</string>
<string name="component_description_gyrosope">陀螺仪以设备x,y,z轴为准 \n以每秒几度(rad/s)为单位测量转速.</string>
<string name="component_description_firebase_auth">Firebase身份验证\n用于用户身份的在线验证</string>
<!-- ************************************** ToDo : 2018.06.08 Component Description *******************************************-->
<string name="component_description_firebase_storage">Firebase存储 \n是为了 需要存储和提供 用户创建的内容 的应用开发者 创建的 </string>
<string name="component_description_camera">相机 \n用于拍摄照片.</string>
<string name="component_description_file_picker">文件选择器\n用于选择 RAW和媒体文件,如图像,音频和文本.(不就是个 文件选择器)</string>
<string name="component_description_file_picker_guide_mime_type_example">MIME用于识别数据类型.\nex)\"*/*\", \"image/*\", \"audio/*\", \"text/*\"</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Component End ***************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Logic Editor Start **************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="logic_block_favorites_save_title">将块保存到我的收藏夹</string>
<string name="logic_block_favorites_save_guide">已保存的块已添加到 我的收藏 中,并可从所有项目访问.</string>
<string name="logic_block_favorites_delete_title">从我的收藏中删除</string>
<string name="logic_block_favorites_delete_message">您确定要从我的收藏中删除您保存的区块吗? 此操作无法撤消.</string>
<string name="logic_variable_type_boolean">布尔</string>
<string name="logic_variable_type_number">号码</string>
<string name="logic_variable_type_string">字符串</string>
<string name="logic_variable_type_map">Map</string>
<string name="logic_variable_type_list_number">号码列表</string>
<string name="logic_variable_type_list_string">字符串列表</string>
<string name="logic_variable_type_list_map">Map列表</string>
<string name="logic_editor_title_select_view">选择小部件</string>
<string name="logic_editor_title_select_image">选择图像</string>
<string name="logic_editor_title_select_image_background">选择背景图片</string>
<string name="logic_editor_title_select_sound">选择声音</string>
<string name="logic_editor_title_select_font">选择字体</string>
<string name="logic_editor_title_select_typeface">选择字体</string>
<string name="logic_editor_title_select_variable_number">选择数字变量</string>
<string name="logic_editor_title_select_variable_boolean">选择布尔变量</string>
<string name="logic_editor_title_select_variable_string">选择字符串变量</string>
<string name="logic_editor_title_select_variable_map">选择地图变量</string>
<string name="logic_editor_title_select_list_number">选择号码列表</string>
<string name="logic_editor_title_select_list_boolean">选择布尔列表</string>
<string name="logic_editor_title_select_list_string">选择字符串列表</string>
<string name="logic_editor_title_select_list_map">选择地图列表</string>
<string name="logic_editor_title_select_list">选择列表</string>
<string name="logic_editor_title_select_activity">选择活动</string>
<string name="logic_editor_title_select_component_intent">选择意图(intent)组件</string>
<string name="logic_editor_title_select_component_file">选择文件组件</string>
<string name="logic_editor_title_select_component_intent_action">选择意图(intent)行动</string>
<string name="logic_editor_title_select_component_intent_flags">选择意图(intent)标志</string>
<string name="logic_editor_title_select_component_calendar">选择日历组件</string>
<string name="logic_editor_title_select_component_calendar_field">选择日历栏</string>
<string name="logic_editor_title_select_component_vibrator">选择振动器组件</string>
<string name="logic_editor_title_select_component_timer">选择计时器组件</string>
<string name="logic_editor_title_select_component_firebase">选择Firebase数据库组件</string>
<string name="logic_editor_title_select_component_dialog">选择对话框组件</string>
<string name="logic_editor_title_select_component_mediaplayer">选择媒体播放器组件</string>
<string name="logic_editor_title_select_component_soundpool">选择音频池组件</string>
<string name="logic_editor_title_select_component_objectanimator">选择动画对象组件</string>
<string name="logic_editor_title_select_component_gyroscope">选择陀螺仪组件</string>
<string name="logic_editor_title_select_component_interstitialad">选择插页式广告组件</string>
<string name="logic_editor_title_select_component_firebasestorage">选择Firebase存储组件</string>
<string name="logic_editor_title_select_component_camera">选择相机组件</string>
<string name="logic_editor_title_select_component_filepicker">选择文件选择器组件</string>
<string name="logic_editor_title_select_visibility">选择可见性</string>
<string name="logic_editor_title_select_cache_mode">选择缓存模式</string>
<string name="logic_editor_title_select_animator_repeat_mode">选择重复模式</string>
<string name="logic_editor_title_select_animator_target_property">选择目标属性</string>
<string name="logic_editor_title_select_animator_interpolator">选择插补器</string>
<string name="logic_editor_title_select_gyroscope">选择陀螺仪组件</string>
<string name="logic_editor_title_select_directory_type">选择目录类型</string>
<string name="logic_editor_component_firebaseauth_title_select_firebase_auth">选择Firebase身份验证组件</string>
<string name="logic_editor_option_menu_title_copy_blocks">复制块</string>
<string name="logic_editor_option_menu_title_paste_blocks">粘贴复制的块</string>
<string name="logic_editor_panel_button_add_variable">添加变量</string>
<string name="logic_editor_panel_button_remove_variable">删除变量</string>
<string name="logic_editor_panel_button_add_list">添加列表</string>
<string name="logic_editor_panel_button_remove_list">删除列表</string>
<string name="logic_editor_panel_button_create_moreblock">创建</string>
<string name="logic_editor_panel_button_add_component">添加组件</string>
<string name="logic_editor_title_add_new_variable">添加新变量</string>
<string name="logic_editor_title_remove_variable">删除一个变量</string>
<string name="logic_editor_title_block_collection">我的收藏</string>
<string name="logic_editor_title_add_new_list">添加新列表</string>
<string name="logic_editor_title_remove_list">删除一个列表</string>
<string name="logic_editor_more_block_actionbar_title_create_more_block">创建一个新的组合块</string>
<string name="logic_editor_more_block_title_name_of_block">块名称</string>
<string name="logic_editor_more_block_dialog_message_confirm_goback">你确定?</string>
<string name="logic_editor_more_block_dialog_description_goback">你目前的工作将会丢失</string>
<string name="logic_editor_more_block_hint_enter_new_block_name">* 输入该块的新名称</string>
<string name="logic_editor_more_block_hint_enter_block_label">输入标签文字</string>
<string name="logic_editor_more_block_hint_enter_variable_name">输入一个变量名称</string>
<string name="logic_editor_more_block_button_add">添加</string>
<string name="logic_editor_more_block_title_add_label">添加标签</string>
<string name="logic_editor_more_block_title_add_variable">添加变量</string>
<string name="logic_editor_more_block_title_add_variable_type">添加变量类型</string>
<string name="logic_editor_title_enter_number_value">输入数字值</string>
<string name="logic_editor_title_enter_string_value">输入字符串值</string>
<string name="logic_editor_title_enter_data_value">输入数据值</string>
<string name="logic_editor_message_currently_used_variable">所选变量当前正在使用\n请将使用此变量的块去除后再次尝试</string>
<string name="logic_editor_message_currently_used_list">选定的列表当前正在使用\n请将使用此列表的块去除后再次尝试</string>
<string name="logic_editor_message_currently_used_block">选定的区块当前正在使用\n请删除区块后再试一次</string>
<string name="logic_editor_message_reserved_keywords">不能使用保留关键字 </string>
<string name="logic_editor_message_variable_name_must_start_letter">变量名称必须以字母开头</string>
<string name="logic_editor_message_select_copy_block">选择您想要复制的块</string>
<string name="logic_editor_message_name_requied">"组合块"必需有一个有效的名称</string>
<string name="logic_editor_hint_enter_variable_name">输入变量名称(区分大小写)</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Logic Editor Start **************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Account Start ****************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="account_mypage_tab_title_shared">共享</string>
<string name="account_mypage_tab_title_favorite">喜爱</string>
<string name="account_mypage_title_remaing_shares">剩余的分享 : </string>
<string name="account_mypage_button_go_premmium">去溢价</string>
<string name="account_mypage_message_no_projects">没有要显示的项目</string>
<string name="account_settings_actionbar_title">帐号设定</string>
<string name="account_settings_description_no_nickname">没有创建昵称</string>
<string name="account_settings_button_logout">登出</string>
<string name="account_login_description_keep_your_project">使用免费的Sketchware账户保证您的项目安全</string>
<string name="account_login_description_create_account">创建一个Sketchware账户</string>
<string name="account_login_description_agree_terms">通过登录,您将同意这些条款</string>
<string name="account_login_button_terms_of_service">服务条款</string>
<string name="account_reset_password_actionbar_title">重设密码</string>
<string name="account_error_failed_login">登录失败</string>
<string name="account_dialog_google_login_title">选择一个帐户</string>
<string name="account_dialog_suspended_title">帐户已停用</string>
<string name="account_dialog_suspended_description">您的帐户 (%s) 已被停用. 如果您觉得这是错误的, 请联系 help@sketchware.io</string>
<string name="account_deactivate_actionbar_title">停用账号</string>
<string name="account_message_nickname_unavailable">当前昵称不可用</string>
<string name="account_message_already_used_nickname">昵称不可用</string>
<string name="account_edit_profile_actionbar_title">编辑个人资料</string>
<string name="account_edit_profile_description_nickname_public">*此名称将显示给公众</string>
<string name="account_edit_profile_hint_enter_nickname">输入你的名字或昵称</string>
<string name="account_deactivate_dialog_deactivate_account">停用</string>
<string name="account_deactivate_button_deactivate_account">停用账号</string>
<string name="account_deactivate_dialog_confirm_lost_data">所有信息都将丢失.\n你想继续吗?</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Account End ****************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Shared Project Start ***************************************** -->
<!-- ************************************************************************************************************************* -->
<string name="shared_project_viewpager_title_trending">趋势</string>
<string name="shared_project_viewpager_button_open_project">打开项目</string>
<string name="shared_project_list_title_new">新的</string>
<string name="shared_project_list_title_popular">流行</string>
<string name="shared_project_list_title_editor_choice">小编精选</string>
<string name="shared_project_all_actionbar_title_editor_choice_project">小编精选项目</string>
<string name="shared_project_all_actionbar_title_popular_project">热门项目</string>
<string name="shared_project_all_actionbar_title_new_project">新的项目</string>
<string name="shared_project_all_actionbar_title_my_shared_project">我的共享项目</string>
<string name="shared_project_all_actionbar_title_my_liked_project">我喜欢的项目</string>
<string name="shared_project_all_actionbar_title_who_liked_project">%s的共享项目</string>
<string name="shared_project_message_no_shared_projects">没有共享的项目可以显示</string>
<string name="shared_project_detail_dialog_last_version_title">需要更新</string>
<string name="shared_project_detail_dialog_last_version_description">您需要最新版本的Sketchware才能打开此项目</string>
<string name="shared_project_detail_dialog_share_project_title">分享项目</string>
<string name="shared_project_detail_dialog_share_project_confirm">你想分享这个项目吗?</string>
<string name="shared_project_detail_tab_title_about">关于</string>
<string name="shared_project_detail_tab_title_comments">评论</string>
<string name="shared_project_detail_button_open_project">打开项目</string>
<string name="shared_project_detail_about_title_read_less">△收起△</string>
<string name="shared_project_detail_about_title_read_more">阅读更多</string>
<string name="shared_project_detail_about_project_information_last_updated">最近更新时间</string>
<string name="shared_project_detail_about_project_information_registered_date">发布时间</string>
<string name="shared_project_detail_about_title_more_project_by_whom">更多%s的项目 </string>
<string name="shared_project_detail_about_title_report_project">举报项目</string>
<string name="shared_project_detail_about_button_title_save_as_new">保存为新的</string>
<string name="shared_project_detail_about_button_title_edit_project">修改项目</string>
<string name="shared_project_detail_about_button_title_delete_project">删除项目</string>
<string name="shared_project_detail_about_report_project_title_reason_type_1">色情内容</string>
<string name="shared_project_detail_about_report_project_title_reason_type_2">暴力图像</string>
<string name="shared_project_detail_about_report_project_title_reason_type_3">憎恨或辱骂的内容</string>
<string name="shared_project_detail_about_report_project_title_reason_type_4">垃圾邮件</string>
<string name="shared_project_detail_about_report_project_title_reason_type_5">广告</string>
<string name="shared_project_detail_about_report_project_title_reason_type_6">赌博内容</string>
<string name="shared_project_detail_about_report_project_title_reason_type_7">非法活动</string>
<string name="shared_project_detail_about_report_project_title_reason_type_8">其他异议</string>
<string name="shared_project_detail_about_report_project_dialog_title_flag_as_inappropriate">举报不当内容</string>
<string name="shared_project_detail_about_report_project_dialog_description_reason">您发现此内容或应用令人反感的原因:</string>
<string name="shared_project_detail_about_report_project_hint_written_english">原因必须用英文书写</string>
<string name="shared_project_detail_about_error_failed_delete_project">删除项目失败\n请稍后再试</string>
<string name="shared_project_detail_about_error_failed_download_project">下载失败\n请稍后再试</string>
<string name="shared_project_detail_comments_hint_enter_comment">输入你的评论</string>
<string name="shared_project_detail_comments_context_menu_title">显示 %s 的项目</string>
<string name="shared_project_detail_comments_context_menu_title_comment_copy">复制评论</string>
<string name="shared_project_detail_comments_context_menu_title_comment_delete">删除评论</string>
<string name="shared_project_detail_comments_confirm_delete_comment">你确定要删除此评论吗? </string>
<string name="shared_project_detail_comments_message_no_comments">没有要显示的评论</string>
<string name="shared_project_detail_comments_message_commented">评论</string>
<string name="shared_project_detail_comments_message_already_delete_comment">此评论已被删除</string>
<string name="shared_project_detail_comments_error_failed_load_comment">无法加载评论\n请稍后再试</string>
<string name="shared_project_detail_comments_error_failed_delete_comment">删除评论失败\n请稍后再试</string>
<string name="shared_project_detail_comment_hint_enter_comment">输入你的评论</string>
<string name="shared_project_detail_comment_error_failed_comment">无法发表评论\n请稍后再试</string>
<string name="shared_project_detail_message_already_liked_project">你已经喜欢这个项目</string>
<string name="shared_project_detail_message_liked">喜欢</string>
<string name="shared_project_detail_message_unliked">取消喜欢</string>
<string name="shared_project_detail_message_unregister_like">好像没有注册</string>
<string name="shared_project_detail_error_failed_like_project">喜欢失败 \n 请稍后再试</string>
<string name="shared_project_detail_error_failed_unlike_project">取消喜欢失败 \n 请稍后再试</string>
<string name="shared_project_detail_comment_complete_deleted_comment">已删除评论</string>
<string name="shared_project_detail_comment_complete_deleted_project">已删除的项目</string>
<string name="shared_project_error_failed_generate_shareable_link">无法生成可分享的链接</string>
<string name="shared_project_confirm_delete_project">你确定要删除这个项目吗? 这个动作无法撤销</string>
<string name="shared_project_viewpager_message_share_my_project">你最棒项目是什么?</string>
<string name="shared_project_viewpager_button_share_my_project">分享我的项目</string>
<string name="shared_project_viewpager_message_go_premium">想要你的项目特色?</string>
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Shared Project End ***************************************** -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************************************************************************************* -->
<!-- ************************************************* Language Settings Start ************************************ -->
<!-- ************************************************************************************************************************* -->
<string name="language_actionbar_title">语言文件</string>
<string name="language_upload_title">上传 strings.xml</string>
<string name="language_download_title">下载语言文件</string>
<string name="language_title_version">版本</string>
<string name="language_dialog_title_shared_languages">共享语言文件</string>
<string name="language_dialog_reset_title">重置语言设置</string>
<string name="language_dialog_reset_description">你确定? 当前的语言文件将被删除,Sketchware将恢复为英文.</string>
<string name="language_message_confirm_update_new_version">新版本的本地化文件可用. 你想更新吗?</string>
<string name="language_message_complete_download_restart">下载完成,现在重新启动Sketchware</string>
<string name="language_message_not_support_font">如果您的设备不支持上述字体,则括号中的文字可能无法显示</string>
<string name="language_actionbar_title_my_shared_language">我共享的语言文件</string>
<string name="language_actionbar_title_upload_language">上传 strings.xml</string>
<string name="language_dialog_title_avaiable_language">可用的语言文件</string>
<string name="language_message_already_strings_xml">你已经分享了这个 strings.xml 文件</string>
<string name="language_actionbar_title_modify_lanuage">修改语言文件</string>
<string name="language_error_failed_upload_on_server">无法上传到服务器</string>
<string name="language_error_failed_update_on_server">无法更新服务器上的文件</string>
<string name="language_error_failed_delete_from_server">无法从服务器上删除</string>
<string name="language_message_confirm_strings_xml_upload">strings.xml文件将被上传. 继续?</string>
<string name="language_message_strings_xml_not_valid">你的strings.xml文件无效. 请仔细检查文件.</string>
<string name="language_title_language_information">语言信息</string>
<string name="language_invalid_rule_strings_xml_length">strings.xml的版本号不应超过 %d 字符</string>
<string name="language_message_duplicate_language_files">此文件的副本以前已下载或上传.</string>
<string name="language_message_complete_download">下载并加密完成.</string>
<string name="language_message_version_locale_not_found">未找到版本和区域设置代码. 请将它们写在文件的第一行.</string>
<string name="language_message_missing_version_information">缺少版本信息.</string>
<string name="language_message_missing_locale_code">缺少语言环境代码.</string>
<string name="language_message_not_match_locale_code">strings.xml的语言环境代码与您尝试编辑的文件不匹配.</string>
<string name="language_detail_button_download">下载</string>
<string name="language_detail_comments_context_menu_title_comment_copy">复制评论</string>
<string name="language_detail_comments_context_menu_title_comment_delete">删除评论</string>
<string name="language_hint_explain_strings_xml">用几句话解释你的strings.xml</string>
<string name="language_description_no_language_uploaded">没有语言文件上传</string>
<string name="language_description_no_language_shared">没有语言文件共享</string>
<string name="language_title_more_language_by_whom">更多语言文件 %s</string>
<string name="language_message_confirm_delete">你确定你要删除?</string>
<string name="language_message_already_liked_lanuage">你已经喜欢这种语言</string>
<string name="language_message_liked">喜欢</string>
<string name="language_message_unliked">取消喜欢</string>