-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathStringResources.zh.xaml
2010 lines (1855 loc) · 161 KB
/
StringResources.zh.xaml
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
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:System;assembly=mscorlib"
xml:space="preserve">
<!--To use a new line: 
 or CarriageReturn + NewLine: 
 or -->
<!--You can use the zero-width-divider to suggest where the word should be divided when there's no space ​-->
<!--Special texts like {0}, are place holders for dynamic values, such as numbers.-->
<!--General-->
<s:String x:Key="S.Ok">确定</s:String>
<s:String x:Key="S.Back">返回</s:String>
<s:String x:Key="S.Cancel">取消</s:String>
<s:String x:Key="S.Yes">是</s:String>
<s:String x:Key="S.No">否</s:String>
<s:String x:Key="S.Add">添加</s:String>
<s:String x:Key="S.Edit">编辑</s:String>
<s:String x:Key="S.Id">标识</s:String>
<s:String x:Key="S.Title">标题</s:String>
<s:String x:Key="S.Description">描述</s:String>
<s:String x:Key="S.SelectColor">单击此处选择颜色。</s:String>
<s:String x:Key="S.Documentation">单击以浏览到文档。</s:String>
<s:String x:Key="S.Suppress">隐藏</s:String>
<s:String x:Key="S.Preview">预览</s:String>
<s:String x:Key="S.Size">大小</s:String>
<s:String x:Key="S.Background">背景</s:String>
<s:String x:Key="S.Color">颜色:</s:String>
<s:String x:Key="S.Delay">延时</s:String>
<s:String x:Key="S.DelayMs">延时 (ms):</s:String>
<s:String x:Key="S.ValueMs">值 -+ (ms):</s:String>
<s:String x:Key="S.ScaleValue">比例值:</s:String>
<s:String x:Key="S.Margin">边距:</s:String>
<s:String x:Key="S.Padding">填充:</s:String>
<s:String x:Key="S.MinHeight">最小高度:</s:String>
<s:String x:Key="S.AndOr">和/或</s:String>
<!--Warnings-->
<s:String x:Key="S.Crash">哦,不,应用程序崩溃了 :(</s:String>
<s:String x:Key="S.Required">必填字段</s:String>
<s:String x:Key="S.Warning.Net.Title">缺少依赖项</s:String>
<s:String x:Key="S.Warning.Net.Header">Net Framework 4.8 不存在</s:String>
<s:String x:Key="S.Warning.Net.Message">为了正确使用此应用程序,您需要下载正确版本的 .Net Framework。 您要打开网页进行下载吗?</s:String>
<s:String x:Key="S.Warning.Single.Title">仅允许一个实例</s:String>
<s:String x:Key="S.Warning.Single.Header">该应用程序已在运行</s:String>
<s:String x:Key="S.Warning.Single.Message">ScreenToGif 已经在运行,但显然没有打开任何窗口。检查系统托盘,其中一定有一个 ScreenToGif 图标。</s:String>
<s:String x:Key="S.SavingSettings.Title">保存设置</s:String>
<s:String x:Key="S.SavingSettings.Instruction">您想再次尝试保存它吗?</s:String>
<s:String x:Key="S.SavingSettings.Message">ScreenToGif 似乎没有足够的特权将设置保存到磁盘。 您想以管理员权限重试一次吗?</s:String>
<s:String x:Key="S.Exiting.Title">退出 ScreenToGif</s:String>
<s:String x:Key="S.Exiting.Instruction">您确定要退出吗?</s:String>
<s:String x:Key="S.Exiting.Message">所有窗口将被关闭,托盘图标将被移除。</s:String>
<!--Warnings • Graphics engine-->
<s:String x:Key="S.Warning.Graphics.Title">切换图形适配器</s:String>
<s:String x:Key="S.Warning.Graphics.Instruction">切换到正确的图形适配器,以捕获所选的屏幕</s:String>
<s:String x:Key="S.Warning.Graphics.Message">由于 DirectX 的限制,ScreenToGif 必须与被捕获的屏幕在同一个图形适配器上运行。</s:String>
<s:String x:Key="S.Warning.Graphics.Action">打开 Windows 设置 > 系统 > 显示 > 图形设置,或点击下面的链接,为 ScreenToGif 切换图形适配器设置。</s:String>
<s:String x:Key="S.Warning.Graphics.Action.Legacy">打开您的图形适配器的图形设置,为ScreenToGif切换图形适配器。</s:String>
<s:String x:Key="S.Warning.Graphics.Switch">打开 Windows 设置</s:String>
<!--Keys-->
<s:String x:Key="S.Keys.Enter">回车键</s:String>
<s:String x:Key="S.Keys.Esc">Esc 键</s:String>
<s:String x:Key="S.Keys.Space">空格键</s:String>
<!--Mouse-->
<s:String x:Key="S.Mouse.Right">右键单击</s:String>
<!--Tray icon-->
<s:String x:Key="S.NewRecording">新建屏幕录制</s:String>
<s:String x:Key="S.NewWebcamRecording">新建摄像头录制</s:String>
<s:String x:Key="S.NewBoardRecording">新建画板录制</s:String>
<s:String x:Key="S.Exit">退出</s:String>
<!--Commands-->
<s:String x:Key="S.Command.NewRecording">新建屏幕录制</s:String>
<s:String x:Key="S.Command.NewWebcamRecording">新建摄像头录制</s:String>
<s:String x:Key="S.Command.NewBoardRecording">新建白板录制</s:String>
<s:String x:Key="S.Command.NewAnimation">新建动画</s:String>
<s:String x:Key="S.Command.InsertRecording">插入屏幕录制</s:String>
<s:String x:Key="S.Command.InsertWebcamRecording">插入摄像头录制</s:String>
<s:String x:Key="S.Command.InsertBoardRecording">插入白板录制</s:String>
<s:String x:Key="S.Command.InsertFromMedia">从媒体插入(图像和视频)</s:String>
<s:String x:Key="S.Command.SaveAs">另存为...</s:String>
<s:String x:Key="S.Command.Load">加载文件(图像、视频和项目)</s:String>
<s:String x:Key="S.Command.LoadRecent">加载最近的项目</s:String>
<s:String x:Key="S.Command.DiscardProject">放弃当前项目</s:String>
<s:String x:Key="S.Command.OverrideDelay">覆盖帧延迟</s:String>
<s:String x:Key="S.Command.IncreaseDecreaseDelay">增加/减少帧延迟</s:String>
<s:String x:Key="S.Command.ScaleDelay">帧缩放延迟</s:String>
<s:String x:Key="S.Command.Zoom100">设置缩放到 100%</s:String>
<s:String x:Key="S.Command.SizeToContent">调整窗口到帧大小</s:String>
<s:String x:Key="S.Command.FitImage">使图像适合可用的窗口大小</s:String>
<s:String x:Key="S.Command.FirstFrame">选择第一帧</s:String>
<s:String x:Key="S.Command.PreviousFrame">选择上一帧</s:String>
<s:String x:Key="S.Command.Play">播放动画</s:String>
<s:String x:Key="S.Command.NextFrame">选择下一帧</s:String>
<s:String x:Key="S.Command.LastFrame">选择最后一帧</s:String>
<s:String x:Key="S.Command.Undo">撤消</s:String>
<s:String x:Key="S.Command.Redo">重做</s:String>
<s:String x:Key="S.Command.Reset">撤消项目中的所有更改</s:String>
<s:String x:Key="S.Command.Copy">复制所选帧并将其存储在剪贴板中</s:String>
<s:String x:Key="S.Command.Cut">剪切所选帧并将其存储在剪贴板中</s:String>
<s:String x:Key="S.Command.Paste">从剪贴板粘贴帧</s:String>
<s:String x:Key="S.Command.Delete">删除所选帧</s:String>
<s:String x:Key="S.Command.DeletePrevious">删除所有上一帧</s:String>
<s:String x:Key="S.Command.DeleteNext">删除所有下一帧</s:String>
<s:String x:Key="S.Command.RemoveDuplicates">删除重复项</s:String>
<s:String x:Key="S.Command.Reduce">减少帧数</s:String>
<s:String x:Key="S.Command.SmoothLoop">创建平滑循环</s:String>
<s:String x:Key="S.Command.Reverse">反向动画</s:String>
<s:String x:Key="S.Command.Yoyo">溜溜球,使动画前进和后退</s:String>
<s:String x:Key="S.Command.MoveLeft">移动所选择帧到左侧</s:String>
<s:String x:Key="S.Command.MoveRight">移动所选择帧到右侧</s:String>
<s:String x:Key="S.Command.Resize">调整所有帧大小</s:String>
<s:String x:Key="S.Command.Crop">裁剪所有帧</s:String>
<s:String x:Key="S.Command.FlipRotate">翻转或旋转帧</s:String>
<s:String x:Key="S.Command.Caption">添加标题</s:String>
<s:String x:Key="S.Command.FreeText">添加自由浮动文本</s:String>
<s:String x:Key="S.Command.TitleFrame">添加带有标题的帧</s:String>
<s:String x:Key="S.Command.KeyStrokes">按键:插入在录制过程中按下的按键</s:String>
<s:String x:Key="S.Command.FreeDrawing">绘制自由形式</s:String>
<s:String x:Key="S.Command.Shapes">添加形状</s:String>
<s:String x:Key="S.Command.MouseEvents">鼠标点击</s:String>
<s:String x:Key="S.Command.Watermark">选择图像并添加为水印</s:String>
<s:String x:Key="S.Command.Border">添加边框</s:String>
<s:String x:Key="S.Command.Shadow">添加阴影</s:String>
<s:String x:Key="S.Command.Obfuscate">模糊处理:在帧上隐藏敏感部分</s:String>
<s:String x:Key="S.Command.Cinemagraph">使用绘图工具选择帧的哪些部分在整个动画中不应保持静态</s:String>
<s:String x:Key="S.Command.Progress">进度条或带有播放详细信息的文本</s:String>
<s:String x:Key="S.Command.SelectAll">选择所有帧</s:String>
<s:String x:Key="S.Command.GoTo">导航到索引帧</s:String>
<s:String x:Key="S.Command.InverseSelection">反向选择帧</s:String>
<s:String x:Key="S.Command.Unselect">取消选择所有帧</s:String>
<s:String x:Key="S.Command.Fade">渐隐过渡</s:String>
<s:String x:Key="S.Command.Slide">幻灯片过渡</s:String>
<s:String x:Key="S.Command.ClearAll">清除所有完成的编码</s:String>
<s:String x:Key="S.Command.MoveUp">上移</s:String>
<s:String x:Key="S.Command.MoveDown">下移</s:String>
<s:String x:Key="S.Command.Add">添加</s:String>
<s:String x:Key="S.Command.Open">打开</s:String>
<s:String x:Key="S.Command.Edit">编辑所选项目</s:String>
<s:String x:Key="S.Command.Save">保存所选项目</s:String>
<s:String x:Key="S.Command.Remove">删除所选项目</s:String>
<s:String x:Key="S.Command.ViewHistory">查看历史</s:String>
<!--StartUp-->
<s:String x:Key="S.StartUp.Title">ScreenToGif - 启动</s:String>
<s:String x:Key="S.StartUp.Recorder">录像机</s:String>
<s:String x:Key="S.StartUp.Recorder.Tooltip">打开屏幕录像机,您可以在其中轻松开始录制屏幕。</s:String>
<s:String x:Key="S.StartUp.Webcam">摄像头</s:String>
<s:String x:Key="S.StartUp.Webcam.Tooltip">打开摄像头录像机。</s:String>
<s:String x:Key="S.StartUp.Board">画板</s:String>
<s:String x:Key="S.StartUp.Board.Tooltip">打开画板录像机,您可以在其中录制您的绘图。</s:String>
<s:String x:Key="S.StartUp.Editor">编辑器</s:String>
<s:String x:Key="S.StartUp.Editor.Tooltip">打开编辑器窗口,您可以在其中开始或编辑新的录制视频。</s:String>
<s:String x:Key="S.StartUp.Options">选项</s:String>
<s:String x:Key="S.StartUp.NewRelease">新版本可用</s:String>
<s:String x:Key="S.StartUp.NewRelease.Tooltip">下载最新版本的 ScreenToGif。</s:String>
<!--Updater-->
<s:String x:Key="S.Updater.Title">更新</s:String>
<s:String x:Key="S.Updater.Header">一个新的更新可用</s:String>
<s:String x:Key="S.Updater.NewRelease">新版本发布!</s:String>
<s:String x:Key="S.Updater.NewRelease.Info">新版本 {0} 可用!
点击此处查看。</s:String>
<s:String x:Key="S.Updater.NoNewRelease.Info">看来您的系统不再被支持,或者更新系统时发生了一些变化。尝试从网站上手动下载它。</s:String>
<s:String x:Key="S.Updater.Version">版本</s:String>
<s:String x:Key="S.Updater.Portable">便携版</s:String>
<s:String x:Key="S.Updater.Installer">安装程序</s:String>
<s:String x:Key="S.Updater.Info.WhatsNew">新功能</s:String>
<s:String x:Key="S.Updater.Info.BugFixes">错误修复:</s:String>
<s:String x:Key="S.Updater.Info.NewVersionAvailable">您可以下载新版本。
您要打开浏览器进行下载吗?</s:String>
<s:String x:Key="S.Updater.RunAfter">更新后执行该应用程序。</s:String>
<s:String x:Key="S.Updater.Download">下载</s:String>
<s:String x:Key="S.Updater.Install">安装</s:String>
<s:String x:Key="S.Updater.InstallManually">手动安装</s:String>
<s:String x:Key="S.Updater.Downloading">正在下载...</s:String>
<s:String x:Key="S.Updater.Warning.Show">无法显示下载详细信息。</s:String>
<s:String x:Key="S.Updater.Warning.Download">无法下载更新。</s:String>
<s:String x:Key="S.Updater.Warning.Encoding">您需要等待所有编码完成才能更新。</s:String>
<!--Downloader-->
<s:String x:Key="S.Downloader.Title">ScreenToGif - 下载器</s:String>
<s:String x:Key="S.Downloader.Header">下载器</s:String>
<s:String x:Key="S.Downloader.Size">已下载 {0},共计 {1}</s:String>
<!--Options-->
<s:String x:Key="S.Options.Title">ScreenToGif - 选项</s:String>
<s:String x:Key="S.Options.App">应用程序</s:String>
<s:String x:Key="S.Options.Recorder">录像机</s:String>
<s:String x:Key="S.Options.Editor">编辑器</s:String>
<s:String x:Key="S.Options.Tasks">自动化任务</s:String>
<s:String x:Key="S.Options.Shortcuts">键盘快捷键</s:String>
<s:String x:Key="S.Options.Language">语言</s:String>
<s:String x:Key="S.Options.Storage">临时文件</s:String>
<s:String x:Key="S.Options.Extras">附加功能</s:String>
<s:String x:Key="S.Options.Upload">上传服务</s:String>
<s:String x:Key="S.Options.Donate">捐赠</s:String>
<s:String x:Key="S.Options.About">关于</s:String>
<s:String x:Key="S.Options.Other">其它</s:String>
<s:String x:Key="S.Options.Warning.Follow.Header">光标后缺少快捷键</s:String>
<s:String x:Key="S.Options.Warning.Follow.Message">为了使用鼠标光标跟随功能,必须设置一个快捷键,以便在需要时进行切换。</s:String>
<!--Options • Application-->
<s:String x:Key="S.Options.App.Startup">启动</s:String>
<s:String x:Key="S.Options.App.Startup.Mode.Manual">手动启动</s:String>
<s:String x:Key="S.Options.App.Startup.Mode.Manual.Info">仅当您手动执行该应用程序时,该应用程序才会执行。</s:String>
<s:String x:Key="S.Options.App.Startup.Mode.Automatic">跟随 Windows 启动</s:String>
<s:String x:Key="S.Options.App.Startup.Mode.Automatic.Info">Windows 启动后将执行该应用程序。</s:String>
<s:String x:Key="S.Options.App.Startup.Mode.Warning">无法在启动模式之间交替。</s:String>
<s:String x:Key="S.Options.App.Startup.Instance.Single">仅允许一个实例</s:String>
<s:String x:Key="S.Options.App.Startup.Instance.Single.Info">您将可以为每个用户和可执行文件运行一次该应用程序, 意味着不同的用户或可执行实例可以共存。 当再次尝试执行该应用程序时,第二个实例将尝试将焦点放在第一个实例上并自行结束。</s:String>
<s:String x:Key="S.Options.App.Startup.Instance.Multiple">允许多个实例</s:String>
<s:String x:Key="S.Options.App.Startup.Instance.Multiple.Info">您可以无限制地同时运行该应用程序多次。</s:String>
<s:String x:Key="S.Options.App.Startup.Tray">启动最小化到系统托盘</s:String>
<s:String x:Key="S.Options.App.Startup.Tray.Info">(启用此选项后系统托盘图标将可见)</s:String>
<s:String x:Key="S.Options.App.Startup.Window">启动使用:</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Startup">启动窗口</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Recorder">屏幕录像机</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Webcam">摄像头录像机</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Board">画板录像机</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Editor">编辑器窗口</s:String>
<s:String x:Key="S.Options.App.Startup.Window.Info">(在应用启动时首先显示的窗口)</s:String>
<s:String x:Key="S.Options.App.Theme">应用程序主题</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme">配色方案</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.VeryLight">非常浅</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.Light">浅色</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.Medium">中等</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.Dark">深色</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.VeryDark">非常暗</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.FollowSystem">跟随系统</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.Custom">自定义</s:String>
<s:String x:Key="S.Options.App.Theme.Scheme.Example">示例颜色</s:String>
<s:String x:Key="S.Options.App.Tray">系统托盘图标</s:String>
<s:String x:Key="S.Options.App.Tray.Show">在系统托盘(通知区域)上显示应用程序</s:String>
<s:String x:Key="S.Options.App.Tray.LeaveOpen">即使所有窗口关闭仍保持应用程序的打开状态</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Nothing">什么都不做</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Open">打开一个窗口</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Open.None">无窗口</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Toggle">最小化/还原所有窗口</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Minimize">最小化所有窗口</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Restore">恢复所有窗口</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Left">左键单击:</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.DoubleLeft">左键单击(x2):</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Middle">中键单击:</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Window">窗口:</s:String>
<s:String x:Key="S.Options.App.Tray.Interactions.Else">否则,打开:</s:String>
<s:String x:Key="S.Options.App.General">常规</s:String>
<s:String x:Key="S.Options.App.General.WorkaroundQuota">解决“配额不足...”崩溃的方法</s:String>
<s:String x:Key="S.Options.App.General.WorkaroundQuota.Info">(实验性)</s:String>
<s:String x:Key="S.Options.App.General.NotifyWhileClosingApp">关闭应用程序之前询问我(通过“退出”命令)</s:String>
<s:String x:Key="S.Options.App.General.DisableHardwareAcceleration">禁用硬件加速</s:String>
<s:String x:Key="S.Options.App.General.DisableHardwareAcceleration.Info">(用户界面将通过软件模式呈现)</s:String>
<s:String x:Key="S.Options.App.General.CheckForTranslationUpdates">检查翻译更新</s:String>
<s:String x:Key="S.Options.App.General.CheckForTranslationUpdates.Info">(更新的翻译将自动下载并安装)</s:String>
<s:String x:Key="S.Options.App.General.CheckForUpdates">检查更新</s:String>
<s:String x:Key="S.Options.App.General.UpdateOnClose">关闭应用程序后自动安装更新</s:String>
<s:String x:Key="S.Options.App.General.PortableUpdate">强制下载便携版本</s:String>
<s:String x:Key="S.Options.App.General.PortableUpdate.Info">(需要通过解压缩和替换可执行文件来进行手动安装)</s:String>
<s:String x:Key="S.Options.App.General.ForceUpdateAsAdmin">强制更新时提升特权</s:String>
<s:String x:Key="S.Options.App.General.PromptToInstall">在安装开始之前提示我</s:String>
<s:String x:Key="S.Options.App.General.DownloadWithMeteredNetwork">使用按流量计费的连接下载更新</s:String>
<s:String x:Key="S.Options.App.General.DownloadWithMeteredNetwork.Info">(允许在按流量计费的网络上下载更新)</s:String>
<!--Options • Recorder-->
<s:String x:Key="S.Options.Recorder.Interface">界面</s:String>
<s:String x:Key="S.Options.Recorder.Interface.Old">旧的</s:String>
<s:String x:Key="S.Options.Recorder.Interface.New">新的</s:String>
<s:String x:Key="S.Options.Recorder.Frequency">捕获频率</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Manual">手动</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Manual.Info">您可以通过按“捕获”按钮或等效的键盘快捷键来手动捕获每一帧。</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Interaction">用户交互</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Interaction.Info">每次单击或键入内容时,都会捕获帧。</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Second">每秒</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Second.Info">基于录像机屏幕上设置的帧率分母, 将以“每秒”为基础捕获帧。</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Minute">每分钟</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Minute.Info">基于录像机屏幕上设置的帧率分母, 将以“每分钟”(间隔)的时间捕获帧。</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Hour">每小时</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Hour.Info">基于录像机屏幕上设置的帧速率分母, 将以“每小时”为基础(延时)捕获帧。</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Playback">播放延迟:</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Playback.Info">(以毫秒为单位,每个捕获的帧将设置为此延迟)</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Trigger">触发延迟:</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Trigger.Info">(以毫秒为单位,每个帧捕获将在开始之前等待这么长时间)</s:String>
<s:String x:Key="S.Options.Recorder.Frequency.Interval">每帧将以 {0} 的间隔进行捕获。</s:String>
<s:String x:Key="S.Options.Recorder.Mode">捕获模式</s:String>
<s:String x:Key="S.Options.Recorder.Bitblt.Info">使用较旧的捕获方法,该方法较慢,可能无法捕获游戏,但不需要其他插件。</s:String>
<s:String x:Key="S.Options.Recorder.DirectX.Info">使用桌面复制 API 捕获方法,该方法更快,并且可以捕获全屏游戏,但是需要 Windows 8 或更高版本系统。</s:String>
<s:String x:Key="S.Options.Recorder.File">保存到文件</s:String>
<s:String x:Key="S.Options.Recorder.File.Info">捕获的每一帧将直接作为图像保存在磁盘上。</s:String>
<s:String x:Key="S.Options.Recorder.Cache">内存缓存</s:String>
<s:String x:Key="S.Options.Recorder.Cache.Info">捕获的每个帧将首先作为像素阵列存储在内存中(可能在压缩之前)。</s:String>
<s:String x:Key="S.Options.Recorder.Compression">压缩:</s:String>
<s:String x:Key="S.Options.Recorder.Compression.Optimal">最佳</s:String>
<s:String x:Key="S.Options.Recorder.Compression.Optimal.Info">(速度较慢,但可能是更理想的压缩方式)</s:String>
<s:String x:Key="S.Options.Recorder.Compression.Fastest">最快</s:String>
<s:String x:Key="S.Options.Recorder.Compression.Fastest.Info">(速度较快,但可能不是理想的压缩方式)</s:String>
<s:String x:Key="S.Options.Recorder.Compression.NoCompression">无压缩</s:String>
<s:String x:Key="S.Options.Recorder.Compression.NoCompression.Info">(捕获帧时不应执行压缩)</s:String>
<s:String x:Key="S.Options.Recorder.CacheSize">缓存大小:</s:String>
<s:String x:Key="S.Options.Recorder.CacheSize.Info">(以 MB 为单位。达到此大小后,数据将被写入/丢弃到磁盘上)</s:String>
<s:String x:Key="S.Options.Recorder.PreventBlackFrames">防止捕获全黑帧。</s:String>
<s:String x:Key="S.Options.Recorder.PreventBlackFrames.Info">(防止具有内存缓存的 BitBlt 错误地导致所有像素均为黑色的帧)</s:String>
<s:String x:Key="S.Options.Recorder.RecordMouse">录制时显示鼠标光标</s:String>
<s:String x:Key="S.Options.Recorder.SelectCursorColor">选择光标颜色</s:String>
<s:String x:Key="S.Options.Recorder.FixedFramerate">固定帧率</s:String>
<s:String x:Key="S.Options.Recorder.FixedFramerate.Info">(恒定延迟,不会因为录制时卡顿变化)</s:String>
<s:String x:Key="S.Options.Recorder.CaptureChanges">仅在发生变化时捕获</s:String>
<s:String x:Key="S.Options.Recorder.CaptureChanges.Info">(仅当在捕获区域内进行了某些更改时,才会捕获帧)</s:String>
<s:String x:Key="S.Options.Recorder.RemoteImprovement">提高远程桌面连接上的捕获性能</s:String>
<s:String x:Key="S.Options.Recorder.RemoteImprovement.Info">(禁用分层窗口捕获)</s:String>
<s:String x:Key="S.Options.Recorder.ForceGarbageCollection">在捕获过程中强制清理内存</s:String>
<s:String x:Key="S.Options.Recorder.ForceGarbageCollection.Info">(减少捕捉过程中的内存使用,但会降低性能)</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines">辅助线</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines.RuleOfThirds">三分法则</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines.RuleOfThirds.Info">单击切换三分法则准线的显示。</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines.Crosshair">十字准线</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines.Crosshair.Info">点击切换十字准线的显示。</s:String>
<s:String x:Key="S.Options.Recorder.Guidelines.Info">辅助线仅在录像机暂停或停止时显示。</s:String>
<s:String x:Key="S.Options.Recorder.HideTitleBar">隐藏标题栏(精简模式)</s:String>
<s:String x:Key="S.Options.Recorder.Magnifier">启用屏幕放大镜</s:String>
<s:String x:Key="S.Options.Recorder.Magnifier.Info">(在选择录制区域时启用放大镜)</s:String>
<s:String x:Key="S.Options.Recorder.AnimateBorder">在选择期间对屏幕区域边框进行动画处理</s:String>
<s:String x:Key="S.Options.Recorder.AnimateBorder.Info">(使用“行军蚁”样式制作动画)</s:String>
<s:String x:Key="S.Options.Recorder.SelectionPanning">启用选择平移</s:String>
<s:String x:Key="S.Options.Recorder.SelectionPanning.Info">(在选择的一角附近显示一个装饰物,允许移动录制区域)</s:String>
<s:String x:Key="S.Options.Recorder.Compact">紧凑模式</s:String>
<s:String x:Key="S.Options.Recorder.Compact.Info">(显示录制器命令面板的较小版本)</s:String>
<s:String x:Key="S.Options.Recorder.DisplayDiscard">显示放弃按钮也同时录制</s:String>
<s:String x:Key="S.Options.Recorder.DisplayDiscard.Info">(通常情况下,仅在暂停状态下可见)</s:String>
<s:String x:Key="S.Options.Recorder.SelectionImprovement">提高屏幕选择性能</s:String>
<s:String x:Key="S.Options.Recorder.SelectionImprovement.Info">(通过显示屏幕的静态视图,减少屏幕选择时的延迟)</s:String>
<s:String x:Key="S.Options.Recorder.RememberSize">记住录制区域的先前大小</s:String>
<s:String x:Key="S.Options.Recorder.RememberPosition">记住录制区域的先前位置</s:String>
<s:String x:Key="S.Options.Recorder.PreStart">在开始前倒计时</s:String>
<s:String x:Key="S.Options.Recorder.PreStart.Info">(以秒为单位,开始录制前延时)</s:String>
<s:String x:Key="S.Options.Recorder.CursorFollowing">启用光标跟随</s:String>
<s:String x:Key="S.Options.Recorder.CursorFollowing.Info">(录制区域将根据光标的位置重新定位)</s:String>
<s:String x:Key="S.Options.Recorder.FollowMargin.Info">(录制区域开始重新定位缓冲区边距)</s:String>
<s:String x:Key="S.Options.Recorder.FollowMarginInvisible.Info">(UI 开始隐藏其他缓冲区边距)</s:String>
<s:String x:Key="S.Options.Recorder.NotifyRecordingDiscard">在放弃录制之前询问我</s:String>
<!--Options • Editor-->
<s:String x:Key="S.Options.Editor.Previewer">编辑器背景</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize">网格大小</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.VerySmall">非常小</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Small">小</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Medium">中等</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Large">大</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.VeryLarge">非常大</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.ILikeBigSquares">我喜欢大方块</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.ImBlind">我是盲人</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Custom">自定义</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Height">高度</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Width">宽度</s:String>
<s:String x:Key="S.Options.Editor.Previewer.GridSize.Apply">应用</s:String>
<s:String x:Key="S.Options.Editor.Previewer.BaseColor">基础颜色</s:String>
<s:String x:Key="S.Options.Editor.Previewer.EvenColor">偶数行颜色</s:String>
<s:String x:Key="S.Options.Editor.Previewer.OddColor">奇数行颜色</s:String>
<s:String x:Key="S.Options.Editor.Interface.DisplayEncoder">在单独的窗口中显示编码</s:String>
<s:String x:Key="S.Options.Editor.Interface.ExtendChrome">扩展标题栏(窗口框架)</s:String>
<s:String x:Key="S.Options.Editor.Interface.AutomaticallySizeOnContent">加载后根据帧大小自动调整窗口大小</s:String>
<s:String x:Key="S.Options.Editor.Interface.AutomaticallyFitImage">加载后根据窗口大小自动调整帧缩放级别</s:String>
<s:String x:Key="S.Options.Editor.General.NotifyFrameDeletion">删除帧前询问我</s:String>
<s:String x:Key="S.Options.Editor.General.NotifyProjectDiscard">放弃项目前询问我</s:String>
<s:String x:Key="S.Options.Editor.General.NotifyWhileClosingEditor">关闭编辑器前询问我 (如果有打开的项目)</s:String>
<s:String x:Key="S.Options.Editor.General.TripleClickSelection">启用三次点击选择文字</s:String>
<s:String x:Key="S.Options.Editor.General.DrawOutlineOutside">绘制标题文字的外轮廓</s:String>
<s:String x:Key="S.Options.Editor.General.DropFramesDuringPreviewIfBehind">必要时丢弃帧</s:String>
<s:String x:Key="S.Options.Editor.General.DropFramesDuringPreviewIfBehind.Info">(如果预览器无法及时显示请跳过一个帧)</s:String>
<s:String x:Key="S.Options.Editor.General.DropFramesDuringPreviewIfBehind.Tooltip">如果预览器无法及时显示该帧,则跳过该帧。</s:String>
<s:String x:Key="S.Options.Editor.General.LimitHistory">对撤消/重做历史记录添加限制</s:String>
<s:String x:Key="S.Options.Editor.General.LimitHistory.Info">(达到限制后,较旧的操作将被删除)</s:String>
<s:String x:Key="S.Options.Editor.General.LimitHistory.Maximum">(存储的最大操作数量)</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.Folder">在预设之间同步输出文件夹</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.Folder.Info">(预设将使用相同的输出路径)</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.Filename">同时同步文件名</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.Filename.Info">(预设也将使用相同的文件名)</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.SameType">仅在相同文件类型的预设之间同步</s:String>
<s:String x:Key="S.Options.Editor.General.SyncPath.SameType.Info">(只有相同文件类型的预设才会同步)</s:String>
<!--Options • Tasks-->
<s:String x:Key="S.Options.Tasks.Title">自动化任务</s:String>
<s:String x:Key="S.Options.Tasks.List">自动化任务列表</s:String>
<s:String x:Key="S.Options.Tasks.List.Task">任务</s:String>
<s:String x:Key="S.Options.Tasks.List.Details">详细信息</s:String>
<s:String x:Key="S.Options.Tasks.List.Enabled">启用</s:String>
<s:String x:Key="S.Options.Tasks.Enable">启用此任务</s:String>
<s:String x:Key="S.Options.Tasks.SelectType">(选择一个任务)</s:String>
<s:String x:Key="S.Options.Tasks.SelectType.Info">在上方选择一个任务</s:String>
<s:String x:Key="S.Options.Tasks.Info">这些任务从列表顶部到底部顺序执行。 当您第一次使用编辑器打开项目时会发生这种情况。</s:String>
<!--Options • Shortcuts-->
<s:String x:Key="S.Options.Shortcuts.Global">全局</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.ScreenRecorder">屏幕录像机:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.ScreenRecorder.Info">(打开默认屏幕录像机)</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.WebcamRecorder">摄像头录像机:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.WebcamRecorder.Info">(打开摄像头录像机)</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.BoardRecorder">画板录像机:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.BoardRecorder.Info">(打开画板录像机,以便您可以录制您的绘画)</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.OpenEditor">编辑器:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.OpenEditor.Info">(打开另一个编辑器窗口)</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.OpenOptions">选项:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.OpenOptions.Info">(打开选项窗口,一次只能打开一个窗口)</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.Exit">退出:</s:String>
<s:String x:Key="S.Options.Shortcuts.Global.Exit.Info">(关闭所有窗口并从系统托盘中删除应用程序)</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders">录像机</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.StartPause">开始/暂停:</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.StartPause.Info">(启动或暂停录制,如果快照模式已激活,则用于拍摄快照)</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Stop">停止:</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Stop.Info">(停止录制并打开编辑器)</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Discard">放弃:</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Discard.Info">(暂停时放弃活动录制)</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Follow">光标跟随:</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.Follow.Info">(根据光标的位置切换记录区域的调整)</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.DisableFollow">禁用以下内容:</s:String>
<s:String x:Key="S.Options.Shortcuts.Recorders.DisableFollow.Info">(暂时禁用基于光标位置的记录区域调整,仅接受修饰键)</s:String>
<s:String x:Key="S.Options.Shortcuts.Info">单击以设置键盘焦点,然后按所需的键和修饰符。 一些按键组合是不允许的。</s:String>
<!--Options • Language-->
<s:String x:Key="S.Options.Language.AppLanguage">应用程序语言</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.AutoDetect">自动检测</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.AutoDetect.Author">当前操作系统语言(如果可用)</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence1.1">您愿意翻译我的应用吗?</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence1.2">点击此处阅读翻译指南并下载 Translator 应用。</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence2.1">之后,</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence2.2">点击这里导入</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence2.3">并测试您的翻译。</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence3.1">在您翻译完成以后,请将语言文件发送到</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence3.2">Email (nicke@outlook.com.br)</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.Sentence3.3">。谢谢!</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.ResourceLink.Tooltip">单击以打开包含指南的网页。</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.ImportLink.Tooltip">打开导入页面</s:String>
<s:String x:Key="S.Options.Language.AppLanguage.Translate.EmailLink.Tooltip">打开电子邮件应用</s:String>
<!--Options • Storage-->
<s:String x:Key="S.Options.Storage.Status">状态</s:String>
<s:String x:Key="S.Options.Storage.Status.Volume">卷:</s:String>
<s:String x:Key="S.Options.Storage.Status.FreeSpace">共计 {1} 可用 {0}</s:String>
<s:String x:Key="S.Options.Storage.Status.Check">再次检查剩余的空间。</s:String>
<s:String x:Key="S.Options.Storage.Status.Clear">清除缓存文件夹。 您将可以决定是否要保留最近的项目。</s:String>
<s:String x:Key="S.Options.Storage.Status.LowSpace">当前配置的硬盘驱动器上空间不足。请清理临时缓存文件夹或更改位置。</s:String>
<s:String x:Key="S.Options.Storage.Status.Error">无法检索驱动器详细信息。</s:String>
<s:String x:Key="S.Options.Storage.Status.Files.None">没有文件</s:String>
<s:String x:Key="S.Options.Storage.Status.Files.Singular">{0:##,##0} 个文件</s:String>
<s:String x:Key="S.Options.Storage.Status.Files.Plural">{0:##,##0} 个文件</s:String>
<s:String x:Key="S.Options.Storage.Status.Folders.None">没有文件夹</s:String>
<s:String x:Key="S.Options.Storage.Status.Folders.Singular">{0:##,##0} 个文件夹</s:String>
<s:String x:Key="S.Options.Storage.Status.Folders.Plural">{0:##,##0} 个文件夹</s:String>
<s:String x:Key="S.Options.Storage.Status.InUse">{0} 正在使用</s:String>
<s:String x:Key="S.Options.Storage.Paths">路径</s:String>
<s:String x:Key="S.Options.Storage.Paths.Cache">缓存:</s:String>
<s:String x:Key="S.Options.Storage.Paths.Cache.Choose">选择临时文件位置</s:String>
<s:String x:Key="S.Options.Storage.Paths.Logs">日志:</s:String>
<s:String x:Key="S.Options.Storage.Paths.Logs.Choose">选择错误日志文件位置</s:String>
<s:String x:Key="S.Options.Storage.Paths.Browse">浏览所选文件夹</s:String>
<s:String x:Key="S.Options.Storage.Settings">配置文件存放目录</s:String>
<s:String x:Key="S.Options.Storage.AppDataPath">AppData:</s:String>
<s:String x:Key="S.Options.Storage.LocalPath">本地:</s:String>
<s:String x:Key="S.Options.Storage.NotExists">不存在</s:String>
<s:String x:Key="S.Options.Storage.CreateSettings">创建一个空的本地设置文件</s:String>
<s:String x:Key="S.Options.Storage.RemoveSettings">删除设置文件</s:String>
<s:String x:Key="S.Options.Storage.OpenSettingsFolder">打开设置文件所在的文件夹。
在按住 Ctrl 键的同时,单击打开文件(如果可能)。</s:String>
<s:String x:Key="S.Options.Storage.SettingsInfo">• 设置加载模式:默认 ◄ AppData ◄ 本地。
• 如果本地文件夹中没有设置文件,此应用将在 AppData 文件夹中进行搜索。
• 如果没有设置文件,则使用默认值。
• 如果没有本地设置,保存所有设置将到 AppData 设置文件中。</s:String>
<s:String x:Key="S.Options.Storage.DeleteEverything">关闭应用程序时从缓存中删除所有文件</s:String>
<s:String x:Key="S.Options.Storage.AskDeleteEverything">在从缓存中删除所有文件之前询问我。</s:String>
<s:String x:Key="S.Options.Storage.AutomaticRemoval">自动删除旧项目</s:String>
<s:String x:Key="S.Options.Storage.AutomaticRemoval.Info">打开应用程序时,超过配置时间的已关闭项目将被后台任务删除。</s:String>
<s:String x:Key="S.Options.Storage.AutomaticRemovalDays.Info">(天数,在打开应用程序后,任何超过这个时间的已关闭项目将被删除/丢弃)</s:String>
<!--Options • Storage > Clear cache-->
<s:String x:Key="S.Options.Storage.Cache.Title">ScreenToGif - 清除缓存</s:String>
<s:String x:Key="S.Options.Storage.Cache.Header">您要清除缓存文件夹吗?</s:String>
<s:String x:Key="S.Options.Storage.Cache.Info">创建录制或打开要编辑的内容时,将创建一个项目并将其存储在缓存文件夹中。</s:String>
<s:String x:Key="S.Options.Storage.Cache.Question">您要从缓存文件夹中删除这些项目吗?</s:String>
<s:String x:Key="S.Options.Storage.Cache.IgnoreRecent">不要删除最近的项目。</s:String>
<s:String x:Key="S.Options.Storage.Cache.IgnoreRecent.Yes">(仅会删除 {0} 天之前尚未使用的项目)</s:String>
<s:String x:Key="S.Options.Storage.Cache.IgnoreRecent.No">(所有当前未使用的项目将被删除)</s:String>
<!--Options • Upload-->
<s:String x:Key="S.Options.Upload.Proxy">代理</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Mode">模式:</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Mode.Disabled">已禁用</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Mode.Manual">手动</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Mode.System">系统</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Mode.System.Info">(使用系统代理)</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Host">主机:</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Port">端口:</s:String>
<s:String x:Key="S.Options.Upload.Proxy.User">用户名:</s:String>
<s:String x:Key="S.Options.Upload.Proxy.Password">密码:</s:String>
<s:String x:Key="S.Options.Upload.Presets">上传预设</s:String>
<s:String x:Key="S.Options.Upload.Presets.Service">服务</s:String>
<s:String x:Key="S.Options.Upload.Presets.Title">标题</s:String>
<s:String x:Key="S.Options.Upload.Presets.Description">描述</s:String>
<s:String x:Key="S.Options.Upload.Presets.Enabled">启用</s:String>
<!--Options • Upload > Preset-->
<s:String x:Key="S.Options.Upload.Preset.Title">上传服务</s:String>
<s:String x:Key="S.Options.Upload.Preset.Select">选择一项服务</s:String>
<s:String x:Key="S.Options.Upload.Preset.Select.Info">在上方选择上传服务</s:String>
<s:String x:Key="S.Options.Upload.Preset.Custom">自定义</s:String>
<s:String x:Key="S.Options.Upload.Preset.Enable">启用此预设。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Details">详细信息</s:String>
<s:String x:Key="S.Options.Upload.Preset.Name">名称:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Description">描述:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Mode">模式:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Mode.Anonymous">匿名</s:String>
<s:String x:Key="S.Options.Upload.Preset.Mode.Authenticated">已认证</s:String>
<s:String x:Key="S.Options.Upload.Preset.Authorization">授权</s:String>
<s:String x:Key="S.Options.Upload.Preset.GetToken">获取令牌</s:String>
<s:String x:Key="S.Options.Upload.Preset.Token">在此处粘贴 OAuth 令牌</s:String>
<s:String x:Key="S.Options.Upload.Preset.Username">用户名:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Password">密码:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Authorize">授权</s:String>
<s:String x:Key="S.Options.Upload.Preset.NotStored">用户名和密码将不会被存储。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Options">选项</s:String>
<s:String x:Key="S.Options.Upload.Preset.Direct">使用直接链接</s:String>
<s:String x:Key="S.Options.Upload.Preset.Album">相册</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.Title">您必须给此预设一个唯一的名称。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.Repeated">该名称已被另一个上传预设使用。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.Authenticate">在身份验证模式下,您必须完成身份验证过程。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.Credentials">您必须提供您的用户名和密码才能授权此应用。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.GetToken">无法获得授权令牌。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.Token">为了授权此应用程序,您需要提供授权令牌凭证。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.AuthError">授权失败。检查一切是否正确,然后在几秒钟后重试。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Warning.AlbumLoad">无法加载相册列表。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Info.Authorized">授权完成。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Info.NotAuthorized">未授权。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Info.Expired">授权已在 {0} 中过期。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Info.Valid">授权有效期至 {0}。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Imgur.Gifv">使用 Gifv 扩展名而不是 Gif 获取链接</s:String>
<s:String x:Key="S.Options.Upload.Preset.Imgur.ToAlbum">将 Gif 上传到所选的相册</s:String>
<s:String x:Key="S.Options.Upload.Preset.Imgur.Album">相册:</s:String>
<s:String x:Key="S.Options.Upload.Preset.Imgur.AskMe">上传前询问我</s:String>
<s:String x:Key="S.Options.Upload.Preset.Imgur.Reload">重新加载相册列表。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Gfycat.Defaults">默认</s:String>
<s:String x:Key="S.Options.Upload.Preset.Gfycat.AskMe">询问我填写上传的详细信息。</s:String>
<s:String x:Key="S.Options.Upload.Preset.Gfycat.UrlType">URL 类型:</s:String>
<!--Options • Upload > Album-->
<s:String x:Key="S.Options.Upload.Pick.Album">选择一个相册(可选)</s:String>
<s:String x:Key="S.Options.Upload.Pick.Album.Info">如果您愿意,可以选择目标相册:</s:String>
<!--Options • Upload > Details-->
<s:String x:Key="S.Options.Upload.Pick.Details">上传详细信息(可选)</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Info">上传详细信息</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Title">标题:</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Description">描述:</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Tags">标签:</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Tags.Info">使用分号( ; )分隔标签</s:String>
<s:String x:Key="S.Options.Upload.Pick.Details.Private">仅显示那些通过直接链接访问的用户。</s:String>
<!--Options • Upload > History-->
<s:String x:Key="S.Options.Upload.History.Title">上传历史</s:String>
<s:String x:Key="S.Options.Upload.History.Date">日期</s:String>
<s:String x:Key="S.Options.Upload.History.Preset">预设</s:String>
<s:String x:Key="S.Options.Upload.History.Successful">成功?</s:String>
<s:String x:Key="S.Options.Upload.History.Remove">删除历史记录条目。</s:String>
<s:String x:Key="S.Options.Upload.History.Detail.Link">链接:</s:String>
<s:String x:Key="S.Options.Upload.History.Detail.LowerQuality">较低质量:</s:String>
<s:String x:Key="S.Options.Upload.History.Detail.DeleteLink">删除链接:</s:String>
<s:String x:Key="S.Options.Upload.History.Delete.Instruction">您确定要删除历史记录条目吗?</s:String>
<s:String x:Key="S.Options.Upload.History.Delete.Message">此操作无法撤消。 您要删除所选的历史记录条目吗?</s:String>
<!--Options • Extras-->
<s:String x:Key="S.Options.Extras.External">可用的外部工具</s:String>
<s:String x:Key="S.Options.Extras.Download">点击此处下载
{0}</s:String>
<s:String x:Key="S.Options.Extras.Downloading">下载中...</s:String>
<s:String x:Key="S.Options.Extras.Ready">已下载
{0}</s:String>
<s:String x:Key="S.Options.Extras.Ready.Info">点击这里打开文件的属性。</s:String>
<s:String x:Key="S.Options.Extras.DownloadRestriction">Microsoft Store 分发的应用程序无法下载其他应用程序。您必须手动下载它。</s:String>
<s:String x:Key="S.Options.Extras.FfmpegLocation">FFmpeg 位置</s:String>
<s:String x:Key="S.Options.Extras.FfmpegLocation.Select">选择 FFmpeg 可执行文件的位置</s:String>
<s:String x:Key="S.Options.Extras.FfmpegLocation.File">FFmpeg 可执行文件</s:String>
<s:String x:Key="S.Options.Extras.FfmpegLocation.Invalid">FFMpeg 可执行文件的路径中包含一个或多个无效字符。请为该可执行文件选择一个有效位置。</s:String>
<s:String x:Key="S.Options.Extras.FfmpegVersion">FFmpeg 版本</s:String>
<s:String x:Key="S.Options.Extras.GifskiLocation">Gifski 位置</s:String>
<s:String x:Key="S.Options.Extras.GifskiLocation.Select">选择 Gifski 可执行文件的位置</s:String>
<s:String x:Key="S.Options.Extras.GifskiLocation.File">Gifski 库</s:String>
<s:String x:Key="S.Options.Extras.GifskiLocation.Invalid">Gifski 可执行文件的路径中包含一个或多个无效字符。请为该可执行文件选择一个有效位置。</s:String>
<s:String x:Key="S.Options.Extras.License.Ffmpeg">FFmpeg 许可证</s:String>
<s:String x:Key="S.Options.Extras.License.Gifski">Gifski 许可证</s:String>
<s:String x:Key="S.Options.Extras.License.SharpDx">SharpDx 许可证</s:String>
<s:String x:Key="S.Options.Extras.Permission.Header">文件夹中缺少写入权限</s:String>
<s:String x:Key="S.Options.Extras.Permission.Observation">由于缺少写入权限,无法将下载内容保存在文件夹中。 您是否要以管理员权限启动下载程序以完成下载?</s:String>
<!--Options • Donations-->
<s:String x:Key="S.Options.Donate.Donate">捐赠</s:String>
<s:String x:Key="S.Options.Donate.Donate.Dollar">捐赠美元 (US$)</s:String>
<s:String x:Key="S.Options.Donate.Donate.Euro">捐赠欧元 (€)</s:String>
<s:String x:Key="S.Options.Donate.Paypal.Dollar">打开 Paypal 网站。选择货币:美元</s:String>
<s:String x:Key="S.Options.Donate.Paypal.Euro">打开 Paypal 网站。选择货币:欧元</s:String>
<s:String x:Key="S.Options.Donate.Paypal.OwnCurrency">打开 Paypal 网站。您必须选择货币</s:String>
<s:String x:Key="S.Options.Donate.Subscribe">订阅</s:String>
<s:String x:Key="S.Options.Donate.Subscribe.Patreon">每月通过 Patreon 捐款。</s:String>
<s:String x:Key="S.Options.Donate.Stripe">通过 Stripe 捐款。</s:String>
<s:String x:Key="S.Options.Donate.Gift">礼品游戏</s:String>
<s:String x:Key="S.Options.Donate.Gift.Steam">通过 Steam 进行礼品游戏。</s:String>
<s:String x:Key="S.Options.Donate.Gift.Gog">通过 GOG 进行礼品游戏。</s:String>
<s:String x:Key="S.Options.Donate.Kofi">通过 Ko-fi 支付咖啡费用。</s:String>
<s:String x:Key="S.Options.Donate.Crypto">加密货币</s:String>
<s:String x:Key="S.Options.Donate.Crypto.BitcoinCash">复制比特币现金地址。</s:String>
<s:String x:Key="S.Options.Donate.Support">支持</s:String>
<s:String x:Key="S.Options.Donate.Support.Visit">如果您想支持该项目 :)</s:String>
<!--Options • About-->
<s:String x:Key="S.Options.About.Version">版本:</s:String>
<s:String x:Key="S.Options.About.UpdateCheck">检查更新</s:String>
<s:String x:Key="S.Options.About.UpdateCheck.Nothing">您已经更新到最新版本,无需更新。</s:String>
<s:String x:Key="S.Options.About.Author">作者:Nicke Manarin</s:String>
<s:String x:Key="S.Options.About.StoreVersion">Microsoft Store 版本。某些功能由于强制策略而被禁用。</s:String>
<s:String x:Key="S.Options.About.Contact">联系</s:String>
<s:String x:Key="S.Options.About.Contact.Discord">加入服务器</s:String>
<s:String x:Key="S.Options.About.Contact.Facebook">访问页面</s:String>
<s:String x:Key="S.Options.About.Contact.Gitter">加入房间</s:String>
<s:String x:Key="S.Options.About.Technical">技术</s:String>
<s:String x:Key="S.Options.About.Technical.License">许可:</s:String>
<s:String x:Key="S.Options.About.Technical.Free">(该应用程序完全免费)</s:String>
<s:String x:Key="S.Options.About.Technical.SourceCode">源代码:</s:String>
<s:String x:Key="S.Options.About.Technical.Privacy">隐私政策:</s:String>
<s:String x:Key="S.Options.About.ABigThanksTo">非常感谢</s:String>
<s:String x:Key="S.Options.About.ABigThanksTo.Everyone">所有支持过我和提供反馈及捐助的人</s:String>
<!--Localization-->
<s:String x:Key="S.Localization">本地化</s:String>
<s:String x:Key="S.Localization.GettingCodes">正在获取语言代码...</s:String>
<s:String x:Key="S.Localization.Recognized">识别为 {0}</s:String>
<s:String x:Key="S.Localization.NotRecognized">无法识别</s:String>
<s:String x:Key="S.Localization.Usage.First">现在使用的是最底部的资源。</s:String>
<s:String x:Key="S.Localization.Usage.Second">要应用您的自定义资源,请将其移动到列表的最底部。</s:String>
<s:String x:Key="S.Localization.Exporting">正在导出资源...</s:String>
<s:String x:Key="S.Localization.SaveResource">保存资源字典</s:String>
<s:String x:Key="S.Localization.OpenResource">打开资源字典</s:String>
<s:String x:Key="S.Localization.File.Resource">资源字典</s:String>
<s:String x:Key="S.Localization.Importing">正在导入资源...</s:String>
<s:String x:Key="S.Localization.Warning.Name">文件名没有遵循有效的格式</s:String>
<s:String x:Key="S.Localization.Warning.Name.Info">尝试重命名为:StringResources.en.xaml,其中“en”应替换为您的语言代码。</s:String>
<s:String x:Key="S.Localization.Warning.Repeated">您不能添加相同名称的资源</s:String>
<s:String x:Key="S.Localization.Warning.Repeated.Info">尝试删除重复的资源或使用其他语言代码。</s:String>
<s:String x:Key="S.Localization.Warning.Redundant">冗余语言代码</s:String>
<s:String x:Key="S.Localization.Warning.Redundant.Info">“{0}” 代码是多余的。尝试改用 “{1}”。</s:String>
<s:String x:Key="S.Localization.Warning.Unknown">未知语言</s:String>
<s:String x:Key="S.Localization.Warning.Unknown.Info">无法将 “{0}” 及其家族识别为有效的语言代码。</s:String>
<s:String x:Key="S.Localization.Warning.NotPossible">无法导入本地化资源。</s:String>
<!--Recorder-->
<s:String x:Key="S.Recorder.Record">录制</s:String>
<s:String x:Key="S.Recorder.Pause">暂停</s:String>
<s:String x:Key="S.Recorder.Continue">继续</s:String>
<s:String x:Key="S.Recorder.Stop">停止</s:String>
<s:String x:Key="S.Recorder.Discard">放弃</s:String>
<s:String x:Key="S.Recorder.Snap">捕捉</s:String>
<s:String x:Key="S.Recorder.Height">高度</s:String>
<s:String x:Key="S.Recorder.Width">宽度</s:String>
<s:String x:Key="S.Recorder.CursorFollowing">光标跟踪已启用。</s:String>
<s:String x:Key="S.Recorder.SwitchFrequency">单击以在捕获频率模式之间切换。</s:String>
<s:String x:Key="S.Recorder.Manual.Short">手动</s:String>
<s:String x:Key="S.Recorder.Interaction.Short">交互</s:String>
<s:String x:Key="S.Recorder.Fps">每秒最大帧数</s:String>
<s:String x:Key="S.Recorder.Fps.Short">fps</s:String>
<s:String x:Key="S.Recorder.Fps.Range">范围从 1 到 60 fps,更高的值表示将捕获更多帧。 每个增量代表 16 毫秒的差异。</s:String>
<s:String x:Key="S.Recorder.Fpm">每分钟最大帧数</s:String>
<s:String x:Key="S.Recorder.Fpm.Short">fpm</s:String>
<s:String x:Key="S.Recorder.Fpm.Range">范围从 1 到 60 fpm,更高的值表示将捕获更多帧。 每个增量代表 1 秒的差异。</s:String>
<s:String x:Key="S.Recorder.Fph">每小时最大帧数</s:String>
<s:String x:Key="S.Recorder.Fph.Short">fph</s:String>
<s:String x:Key="S.Recorder.Fph.Range">范围从 1 到 60 fph,更高的值表示将捕获更多帧。 每个增量代表 1 分钟的差异。</s:String>
<s:String x:Key="S.Recorder.ClickOrPress">单击或按键捕获</s:String>
<s:String x:Key="S.Recorder.SnapToWindow">对齐窗口(拖拽到目标窗口上进行捕捉)</s:String>
<s:String x:Key="S.Recorder.PreStart">预启动</s:String>
<s:String x:Key="S.Recorder.Paused">ScreenToGif(已暂停)</s:String>
<s:String x:Key="S.Recorder.Stopping">正在停止...</s:String>
<s:String x:Key="S.Recorder.PreStarting">预先启动...</s:String>
<s:String x:Key="S.Recorder.Timer.Elapsed">经过的捕获时间。</s:String>
<s:String x:Key="S.Recorder.Timer.Total">总帧数:</s:String>
<s:String x:Key="S.Recorder.Timer.Manual">手动捕获:</s:String>
<s:String x:Key="S.Recorder.Timer.Paused">捕获已暂停。</s:String>
<s:String x:Key="S.Recorder.Timer.Imprecise">您的电脑不支持精确的捕捉模式, 这意味着可能永远无法达到目标帧率。</s:String>
<s:String x:Key="S.Recorder.Warning.CaptureNotPossible">无法捕获屏幕</s:String>
<s:String x:Key="S.Recorder.Warning.CaptureNotPossible.Info">无法捕获屏幕。5 次尝试后,捕获方法未返回任何帧。</s:String>
<s:String x:Key="S.Recorder.Warning.StartPauseNotPossible">无法开始/暂停捕获屏幕</s:String>
<s:String x:Key="S.Recorder.Warning.Windows8">使用桌面复制 Desktop Duplication API 捕获屏幕需要 Windows 8 或更高版本。</s:String>
<!--New recorder-->
<s:String x:Key="S.Recorder.Area">区域</s:String>
<s:String x:Key="S.Recorder.Area.Select">选择一个区域</s:String>
<s:String x:Key="S.Recorder.Window">窗口</s:String>
<s:String x:Key="S.Recorder.Window.Select">选择一个窗口</s:String>
<s:String x:Key="S.Recorder.Screen">屏幕</s:String>
<s:String x:Key="S.Recorder.Screen.Select">选择一个屏幕</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Internal">内部屏幕</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Generic">通用画面</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Info1">图形适配器:{0}</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Info2">分辨率:{0} x {1}</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Info3">原始分辨率:{0} x {1}</s:String>
<s:String x:Key="S.Recorder.Screen.Name.Info4">DPI: {0} ({1:0.##}%)</s:String>
<s:String x:Key="S.Recorder.Move">拖动以移动选择。</s:String>
<s:String x:Key="S.Recorder.Accept">接受</s:String>
<s:String x:Key="S.Recorder.Retry">重试</s:String>
<s:String x:Key="S.Recorder.Retry.Shortcut">右键点击</s:String>
<s:String x:Key="S.Recorder.CancelSelection">取消选择 (Esc)</s:String>
<s:String x:Key="S.Recorder.SelectArea">单击并拖动选择屏幕区域</s:String>
<s:String x:Key="S.Recorder.SelectArea.Embedded">单击并拖动以选择一个区域</s:String>
<s:String x:Key="S.Recorder.SelectWindow">单击此处选择此窗口</s:String>
<s:String x:Key="S.Recorder.SelectScreen">单击此处选择此屏幕</s:String>
<s:String x:Key="S.Recorder.EscToCancel">按 Esc 键取消</s:String>
<s:String x:Key="S.Recorder.Splash.Title">按 {0} 停止录制</s:String>
<s:String x:Key="S.Recorder.Splash.Subtitle">录像机窗口最小化, 恢复它或按 {0} 暂停捕获</s:String>
<s:String x:Key="S.Recorder.Discard.Title">放弃录制</s:String>
<s:String x:Key="S.Recorder.Discard.Instruction">您确定要放弃该录制吗?</s:String>
<s:String x:Key="S.Recorder.Discard.Message">此操作将放弃录制并删除所有帧。
您无法撤消此操作。</s:String>
<!--Webcam recorder-->
<s:String x:Key="S.Webcam.Title">ScreenToGif - 摄像头录像机</s:String>
<s:String x:Key="S.Webcam.NoVideo">未检测到视频设备 :(</s:String>
<s:String x:Key="S.Webcam.CheckVideoDevices">检测视频设备</s:String>
<s:String x:Key="S.Webcam.Scale">缩放:{0:0.##} 倍</s:String>
<s:String x:Key="S.Webcam.ChangeScale">更改视频比例</s:String>
<!--Board recorder-->
<s:String x:Key="S.Board.Title">ScreenToGif - 画板录像机</s:String>
<s:String x:Key="S.Board.AutoRecord">自动录制</s:String>
<s:String x:Key="S.Board.AutoRecordToolTip">在绘图时启用录制</s:String>
<s:String x:Key="S.Board.CtrlHold">Ctrl [按住]</s:String>
<!--Color selector-->
<s:String x:Key="S.ColorSelector.Title">颜色选择器</s:String>
<s:String x:Key="S.ColorSelector.Select">选择颜色</s:String>
<s:String x:Key="S.ColorSelector.Red">红色</s:String>
<s:String x:Key="S.ColorSelector.Green">绿色</s:String>
<s:String x:Key="S.ColorSelector.Blue">蓝色</s:String>
<s:String x:Key="S.ColorSelector.Alpha">Alpha</s:String>
<s:String x:Key="S.ColorSelector.Hexadecimal">Hex</s:String>
<s:String x:Key="S.ColorSelector.Initial">初始颜色</s:String>
<s:String x:Key="S.ColorSelector.Current">当前颜色</s:String>
<s:String x:Key="S.ColorSelector.Latest">最新颜色</s:String>
<s:String x:Key="S.ColorSelector.Sample">拖放到
示例颜色</s:String>
<s:String x:Key="S.ColorSelector.Sample.Info">单击并拖动以从屏幕上选择颜色。</s:String>
<!--Exception/Error viewers-->
<s:String x:Key="S.ExceptionViewer.Title">异常查看器</s:String>
<s:String x:Key="S.ExceptionViewer.OpenInner">打开内部异常</s:String>
<s:String x:Key="S.ExceptionViewer.Type">异常类型</s:String>
<s:String x:Key="S.ExceptionViewer.Message">信息</s:String>
<s:String x:Key="S.ExceptionViewer.Stack">堆栈</s:String>
<s:String x:Key="S.ExceptionViewer.Source">来源</s:String>
<s:String x:Key="S.ErrorDialog.Observation">出现错误</s:String>
<s:String x:Key="S.ErrorDialog.Send">发送报告</s:String>
<!--Presets-->
<s:String x:Key="S.Preset.Title">预设</s:String>
<s:String x:Key="S.Preset.Encoder">编码器</s:String>
<s:String x:Key="S.Preset.Name">名称</s:String>
<s:String x:Key="S.Preset.Description">描述</s:String>
<s:String x:Key="S.Preset.Other">其它</s:String>
<s:String x:Key="S.Preset.AutoSave">修改选项后自动保存。</s:String>
<s:String x:Key="S.Preset.Info.Manual">对该预设设置(编码和导出设置)的所有更改都需要通过按保存按钮手动保存。</s:String>
<s:String x:Key="S.Preset.Info.Automatic">对该预设设置的所有更改(编码和导出设置)将自动保存。</s:String>
<s:String x:Key="S.Preset.Warning.Readonly">默认预设的某些属性是只读的。</s:String>
<s:String x:Key="S.Preset.Warning.Name">您必须为此预设命名。</s:String>
<s:String x:Key="S.Preset.Warning.SameName">已经存在一个具有相同名称的预设。</s:String>
<!--Presets • Listing-->
<s:String x:Key="S.Preset.Autosave">自动保存</s:String>
<s:String x:Key="S.Preset.Autosave.Info">对该预设的更改将自动保存。</s:String>
<s:String x:Key="S.Preset.Default.Title">默认 ({0})</s:String>
<s:String x:Key="S.Preset.Default.Description">编码器的默认预设。</s:String>
<s:String x:Key="S.Preset.Twitter.Title">用于 Twitter ({0})</s:String>
<s:String x:Key="S.Preset.Twitter.Description">遵守 Twitter 上传限制(大小和分辨率除外)。</s:String>
<s:String x:Key="S.Preset.Hevc.Title">HEVC ({0})</s:String>
<s:String x:Key="S.Preset.Hevc.Description">高效视频编码。</s:String>
<s:String x:Key="S.Preset.Vp8.Title">VP8 ({0})</s:String>
<s:String x:Key="S.Preset.Vp8.Description">较早且知名的编解码器。</s:String>
<s:String x:Key="S.Preset.Filename.Animation">动画</s:String>
<s:String x:Key="S.Preset.Filename.Video">视频</s:String>
<s:String x:Key="S.Preset.Filename.Image">图像</s:String>
<s:String x:Key="S.Preset.Filename.Project">项目</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.High.Title">高质量</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.High.Description">更适合于具有更多颜色和渐变的录制。</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.Transparent.Title">高质量 • 透明背景</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.Transparent.Description">支持以透明背景保存动画。</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.Graphics.Title">高质量 • 图形</s:String>
<s:String x:Key="S.Preset.Gif.Embedded.Graphics.Description">更适合于使用较少数量的颜色进行录制。</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Default.Title">KGy SOFT • 默认</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Default.Description">建议用于常规UI的屏幕录制。使用中值剪切量化器,无抖动。</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Balanced.Title">KGy SOFT • 均衡</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Balanced.Description">使用吴氏的量化器,在没有抖动的情况下,照片般的图像质量很好。</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.High.Title">KGy SOFT • 高质量</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.High.Description">使用具有更高位等级的吴氏量化器和 Floyd-Steinberg 误差扩散抖动出照片般的高质量图像。</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Fast.Title">KGy SOFT • 低质量,速度更快</s:String>
<s:String x:Key="S.Preset.Gif.KGySoft.Fast.Description">使用相同的预设‘网页安全’调色板和Bayer 8x8 有序抖动量化所有帧。</s:String>
<s:String x:Key="S.Preset.Gif.Ffmpeg.High.Title">FFmpeg • 高质量</s:String>
<s:String x:Key="S.Preset.Gif.Ffmpeg.High.Description">图像质量较高,但文件较大。</s:String>
<s:String x:Key="S.Preset.Gif.Ffmpeg.Low.Title">FFmpeg • 低质量</s:String>
<s:String x:Key="S.Preset.Gif.Ffmpeg.Low.Description">图像质量较低,但文件较小。</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.High.Title">Gifski • 高质量</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.High.Description">图像质量较高,但文件较大。</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.Low.Title">Gifski • 质量较低</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.Low.Description">图像质量较低,但文件较小。</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.Fast.Title">Gifski • 较低的质量和更快的编码</s:String>
<s:String x:Key="S.Preset.Gif.Gifski.Fast.Description">图像质量更低,编码速度更快,但文件尺寸更小。</s:String>
<s:String x:Key="S.Preset.Gif.System.Low.Title">系统 • 低质量</s:String>
<s:String x:Key="S.Preset.Gif.System.Low.Description">质量低下但编码速度更快。</s:String>
<s:String x:Key="S.Preset.Apng.Ffmpeg.High.Title">FFmpeg • 高质量</s:String>
<s:String x:Key="S.Preset.Apng.Ffmpeg.High.Description">图像质量较高,文件尺寸较小,但编码速度较慢。</s:String>
<s:String x:Key="S.Preset.Apng.Ffmpeg.Low.Title">FFmpeg • 低质量</s:String>
<s:String x:Key="S.Preset.Apng.Ffmpeg.Low.Description">图像质量较低,文件尺寸较小,但编码速度较快。</s:String>
<s:String x:Key="S.Preset.Webp.Ffmpeg.High.Title">高质量</s:String>
<s:String x:Key="S.Preset.Webp.Ffmpeg.High.Description">图像质量高,文件尺寸小。</s:String>
<!--Insert frames-->
<s:String x:Key="S.InsertFrames.Title">插入帧</s:String>
<s:String x:Key="S.InsertFrames.Info">两侧应具有相同的大小,此窗口允许您重新定位和调整图像和画布的大小。点击选择并调整大小。</s:String>
<s:String x:Key="S.InsertFrames.CanvasSize">画布大小:</s:String>
<s:String x:Key="S.InsertFrames.FitCanvas">调整画布以适合图像</s:String>
<s:String x:Key="S.InsertFrames.FitCanvas.Info">调整画布大小以装下两个图像(左上角)</s:String>
<s:String x:Key="S.InsertFrames.DifferentSizes">两者帧大小不同。您需要在插入帧之前解决此问题。</s:String>
<s:String x:Key="S.InsertFrames.InsertedFrames">新建帧</s:String>
<s:String x:Key="S.InsertFrames.CurrentFrames">当前帧</s:String>
<s:String x:Key="S.InsertFrames.ImageSize">图像大小:</s:String>
<s:String x:Key="S.InsertFrames.ImagePosition">图像位置:</s:String>
<s:String x:Key="S.InsertFrames.ResetImageSizePosition">重置图像大小和位置</s:String>
<s:String x:Key="S.InsertFrames.Info2">新增帧将被插入到当前帧列表</s:String>
<s:String x:Key="S.InsertFrames.Before">之前于</s:String>
<s:String x:Key="S.InsertFrames.After">之后于</s:String>
<s:String x:Key="S.InsertFrames.Frame">帧</s:String>
<s:String x:Key="S.InsertFrames.Importing">导入</s:String>
<s:String x:Key="S.InsertFrames.SelectColorFill">选择画布填充颜色</s:String>
<!--Import frames from video-->
<s:String x:Key="S.ImportVideo.Title">从视频导入帧</s:String>
<s:String x:Key="S.ImportVideo.Importer">开发商:</s:String>
<s:String x:Key="S.ImportVideo.Loading">载入中...</s:String>
<s:String x:Key="S.ImportVideo.Scale">比例:</s:String>
<s:String x:Key="S.ImportVideo.Size">大小:</s:String>
<s:String x:Key="S.ImportVideo.Height">高度:</s:String>
<s:String x:Key="S.ImportVideo.Width">宽度:</s:String>
<s:String x:Key="S.ImportVideo.Framerate">帧速率:</s:String>
<s:String x:Key="S.ImportVideo.Fps">FPS</s:String>
<s:String x:Key="S.ImportVideo.Start">开始:</s:String>
<s:String x:Key="S.ImportVideo.End">结束:</s:String>
<s:String x:Key="S.ImportVideo.Selection">选择:</s:String>
<s:String x:Key="S.ImportVideo.Frames">帧数:</s:String>
<s:String x:Key="S.ImportVideo.Duration">持续时间:</s:String>
<s:String x:Key="S.ImportVideo.Error">无法加载视频。</s:String>
<s:String x:Key="S.ImportVideo.Error.Detail">预览器无法启动。请尝试使用其他导入器或检查视频是否未损坏。
如果您使用的是 MediaPlayer,请检查 Windows 功能中 “媒体功能/Windows Media Player” 是否已打开,并确保您有所需的视频编解码器。</s:String>
<s:String x:Key="S.ImportVideo.Timeout">获取帧预览超时。</s:String>
<s:String x:Key="S.ImportVideo.Nothing">没有选择的帧将被导入。</s:String>
<!--Encoder-->
<s:String x:Key="S.Encoder.Title">编码器</s:String>
<s:String x:Key="S.Encoder.Encoding">正在编码中...</s:String>
<s:String x:Key="S.Encoder.Starting">开始</s:String>
<s:String x:Key="S.Encoder.Completed">已完成</s:String>
<s:String x:Key="S.Encoder.Completed.Clipboard">已复制到剪贴板</s:String>
<s:String x:Key="S.Encoder.Completed.Clipboard.Fail">无法复制</s:String>
<s:String x:Key="S.Encoder.Completed.Command">命令执行</s:String>
<s:String x:Key="S.Encoder.Completed.Command.Output">显示输出命令。</s:String>
<s:String x:Key="S.Encoder.Completed.Command.Fail">无法执行命令</s:String>
<s:String x:Key="S.Encoder.Completed.Upload.Fail">无法上传</s:String>
<s:String x:Key="S.Encoder.Completed.Upload.Delete">Ctrl + 单击 打开页面以删除图像(如果可用)。</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed">已用时间(以分钟为单位):</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed.Analysis">分析:</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed.Encoding">编码:</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed.Upload">上传:</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed.Copy">复制:</s:String>
<s:String x:Key="S.Encoder.Completed.Elapsed.Commands">命令:</s:String>
<s:String x:Key="S.Encoder.DeletedMoved">已删除或移动文件</s:String>
<s:String x:Key="S.Encoder.Canceled">已取消</s:String>
<s:String x:Key="S.Encoder.Error">错误</s:String>
<s:String x:Key="S.Encoder.Error.Info">点击此处显示此错误的详细信息。</s:String>
<s:String x:Key="S.Encoder.Uploading">上传中</s:String>
<s:String x:Key="S.Encoder.Executing">执行命令</s:String>
<s:String x:Key="S.Encoder.Processing">正在处理第 {0} 帧</s:String>
<s:String x:Key="S.Encoder.Analyzing.Second">准备第二次</s:String>
<s:String x:Key="S.Encoder.Processing.Second">正在处理第 {0} 帧 - 第二次</s:String>
<s:String x:Key="S.Encoder.CreatingFile">创建文件</s:String>
<s:String x:Key="S.Encoder.Analyzing">分析不变的像素</s:String>
<s:String x:Key="S.Encoder.SavingAnalysis">保存分析结果</s:String>
<s:String x:Key="S.Encoder.OpenFile">打开文件</s:String>
<s:String x:Key="S.Encoder.ExploreFolder">显示文件夹</s:String>
<s:String x:Key="S.Encoder.Remove">从列表中移除</s:String>
<s:String x:Key="S.Encoder.Details">显示详细信息</s:String>
<s:String x:Key="S.Encoder.Dismiss">关闭所有已完成编码的通知</s:String>
<s:String x:Key="S.Encoder.Copy.Image">复制静止图片</s:String>
<s:String x:Key="S.Encoder.Copy.Filename">复制文件名</s:String>
<s:String x:Key="S.Encoder.Copy.Folder">复制文件夹路径</s:String>
<s:String x:Key="S.Encoder.Copy.Link">复制链接</s:String>
<!--Command output-->
<s:String x:Key="S.Encoder.Command.Title">ScreenToGif - 命令输出</s:String>
<s:String x:Key="S.Encoder.Command.Header">命令输出</s:String>
<!--Notifications-->
<s:String x:Key="S.Notifications">通知</s:String>
<s:String x:Key="S.Notifications.Dismiss">关闭所有通知</s:String>
<!--Editor-->
<s:String x:Key="S.Editor.Title">ScreenToGif - 编辑器</s:String>
<s:String x:Key="S.Editor.File">文件</s:String>
<s:String x:Key="S.Editor.Home">主页</s:String>
<s:String x:Key="S.Editor.Playback">播放</s:String>
<s:String x:Key="S.Editor.Edit">编辑</s:String>
<s:String x:Key="S.Editor.Image">图像</s:String>
<s:String x:Key="S.Editor.Transitions">过渡</s:String>
<s:String x:Key="S.Editor.Statistics">统计</s:String>
<s:String x:Key="S.Editor.Options">选项</s:String>
<s:String x:Key="S.Editor.Help">帮助</s:String>
<s:String x:Key="S.Editor.Extras">附加</s:String>
<s:String x:Key="S.Editor.UpdateAvailable">一个新的更新可用!</s:String>
<s:String x:Key="S.Editor.UpdateAvailable.Info">单击此处以了解更多信息。</s:String>
<s:String x:Key="S.Editor.FrameNumbersInfo">总帧数、已选帧数、已选帧索引</s:String>
<!--Editor • Loading-->
<s:String x:Key="S.Editor.Preparing">正在准备帧</s:String>
<s:String x:Key="S.Editor.InvalidLoadingFiles">加载无效 - 您不能一次导入多个文件。请只选择一个文件。</s:String>
<s:String x:Key="S.Editor.InvalidLoadingProjects">加载无效 - 您不能一次加载多个项目。请只选择一个项目。</s:String>
<!--Editor • File dialogs (does not work with new line characters)-->
<s:String x:Key="S.Editor.File.OpenMedia">打开媒体(图像或视频)文件</s:String>
<s:String x:Key="S.Editor.File.OpenMediaProject">打开媒体(图像或视频)或项目文件</s:String>
<s:String x:Key="S.Editor.File.All">所有支持的文件</s:String>
<s:String x:Key="S.Editor.File.Image">图像</s:String>
<s:String x:Key="S.Editor.File.Video">视频</s:String>
<s:String x:Key="S.Editor.File.Apng">PNG 动画</s:String>
<s:String x:Key="S.Editor.File.Gif">GIF 动画</s:String>
<s:String x:Key="S.Editor.File.Webp">WebP 动画</s:String>
<s:String x:Key="S.Editor.File.Avi">AVI 视频</s:String>
<s:String x:Key="S.Editor.File.Mkv">Matroska 视频</s:String>
<s:String x:Key="S.Editor.File.Mov">MOV 视频</s:String>
<s:String x:Key="S.Editor.File.Mp4">MP4 视频</s:String>
<s:String x:Key="S.Editor.File.Webm">WebM 视频</s:String>
<s:String x:Key="S.Editor.File.Image.Bmp">BMP 图像</s:String>
<s:String x:Key="S.Editor.File.Image.Jpeg">JPEG 图像</s:String>
<s:String x:Key="S.Editor.File.Image.Png">PNG 图像,所有选择图像</s:String>
<s:String x:Key="S.Editor.File.Image.Zip">ZIP 文件,所有选择图像</s:String>
<s:String x:Key="S.Editor.File.Project">ScreenToGif 项目</s:String>
<s:String x:Key="S.Editor.File.Project.Zip">ScreenToGif 项目(Zip)</s:String>
<s:String x:Key="S.Editor.File.Psd">PSD 文件</s:String>
<!--Editor • Welcome-->
<s:String x:Key="S.Editor.Welcome.New">转到“文件 > 新录制”来开始新录制</s:String>
<s:String x:Key="S.Editor.Welcome.Import">拖入图片、视频或项目来导入</s:String>
<s:String x:Key="S.Editor.Welcome.ThankYou">非常感谢您使用我的应用!</s:String>
<s:String x:Key="S.Editor.Welcome.Size">帧率越低,颜色数或帧之间的变化越小,尺寸越小</s:String>
<s:String x:Key="S.Editor.Welcome.Contact">您希望联系我们?打开“选项 > 关于”可以找到联系方式</s:String>
<s:String x:Key="S.Editor.Welcome.Trouble">遇到问题了?请通过“反馈”工具联系我</s:String>
<s:String x:Key="S.Editor.Welcome.NewRecorder">您想试试新版录像机界面吗?转到“选项 > 录像机”以启用</s:String>
<!--Editor • File tab • New-->
<s:String x:Key="S.Editor.File.New.Recording">录制</s:String>
<s:String x:Key="S.Editor.File.New.Webcam">摄像头
录制</s:String>
<s:String x:Key="S.Editor.File.New.Board">画板录制</s:String>
<s:String x:Key="S.Editor.File.Blank">空白动画</s:String>
<s:String x:Key="S.Editor.File.New">新建</s:String>
<!--Editor • File tab • Insert-->
<s:String x:Key="S.Editor.File.Insert.Recording">录制</s:String>
<s:String x:Key="S.Editor.File.Insert.Webcam">摄像头
录制</s:String>
<s:String x:Key="S.Editor.File.Insert.Board">白板
录制</s:String>
<s:String x:Key="S.Editor.File.Insert.Media">媒体</s:String>
<s:String x:Key="S.Editor.File.Insert">插入</s:String>
<!--Editor • File tab • Save/Discard-->
<s:String x:Key="S.Editor.File.Save">另存为</s:String>
<s:String x:Key="S.Editor.File.Load">媒体或
项目</s:String>
<s:String x:Key="S.Editor.File.LoadRecent">最近项目</s:String>
<s:String x:Key="S.Editor.File.SaveProject">另存为项目</s:String>
<s:String x:Key="S.Editor.File.Discard">放弃项目</s:String>
<!--Editor • Home tab • Action Stack-->
<s:String x:Key="S.Editor.Home.ActionStack">操作</s:String>
<s:String x:Key="S.Editor.Home.Undo">撤消</s:String>
<s:String x:Key="S.Editor.Home.Redo">重做</s:String>
<s:String x:Key="S.Editor.Home.Reset">重置</s:String>