-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathLocalizable.xcstrings
2902 lines (2898 loc) · 66.7 KB
/
Localizable.xcstrings
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
{
"sourceLanguage" : "en",
"strings" : {
"" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : ""
}
}
}
},
"\nIf you run into any issues, please visit our GitHub page and submit an issue. \nhttps://github.com/CubeStuffs/CubeTime/issues" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "\n如果遇到任何问题,请访问我们的 GitHub 页面并提交问题。\nhttps://github.com/CubeStuffs/CubeTime/issues"
}
}
}
},
"\nSupport us directly by donating on Ko-Fi:" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "\n直接通过 Ko-Fi 支持我们:"
}
}
}
},
" Note that this is only applicable in compact UI mode (i.e. when the floating panel is not shown)." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "本设置只有在使用紧凑界面时有效"
}
}
}
},
"-" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "-"
}
}
}
},
"–" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "–"
}
}
}
},
"..." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "..."
}
}
}
},
"(%@)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "(%@)"
}
}
}
},
"[+2]" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "[+2]"
}
}
}
},
"[DNF]" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "[DNF]"
}
}
}
},
"%@" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%@"
}
}
}
},
"%lld" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld"
}
}
}
},
"%lld d.p" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld位数"
}
}
}
},
"%lld Solves" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld次还原"
}
}
}
},
"%lld." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld."
}
}
}
},
"© 2021–2024 Tim Xie & Reagan Bohan." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "© 2021–2024 Tim Xie & Reagan Bohan."
}
}
}
},
"+2" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "+2"
}
}
}
},
"|" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "|"
}
}
}
},
"0.00" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "0.00"
}
}
}
},
"0.000" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "0.000"
}
}
}
},
"2x2" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "二阶"
}
}
}
},
"3x3" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "三阶"
}
}
}
},
"3x3 BLD" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "三阶盲拧"
}
}
}
},
"3x3 OH" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "三阶单手"
}
}
}
},
"4x4" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "四阶"
}
}
}
},
"4x4 BLD" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "四阶盲拧"
}
}
}
},
"5x5" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "五阶"
}
}
}
},
"5x5 BLD" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "五阶盲拧"
}
}
}
},
"6x6" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "六阶"
}
}
}
},
"7x7" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "七阶"
}
}
}
},
"A compsim (Competition Simulation) session mimics a competition scenario better by recording a non-rolling session. Your solves will be split up into averages of 5 that can be accessed in your times and statistics view.\n\nStart by choosing a target to reach." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "比赛模拟分组通过记录一个非滚动分组来更好地模拟比赛场景。您的还原成绩将被分成 5 次的平均值,可以在时间和统计视图中查看。\n\n首先选择一个模拟目标。"
}
}
}
},
"A derivative of \"simibac's\" [ConfettiSwiftUI](https://github.com/simibac/ConfettiSwiftUI) library is used in CubeTime." : {
"shouldTranslate" : false
},
"A derivative of [ChartView](https://github.com/AppPear/ChartView) is used in the stats view of CubeTime." : {
"shouldTranslate" : false
},
"A multiphase session gives you the ability to breakdown your solves into sections, such as memo/exec stages in blindfolded solving or stages in 3x3 solves.\n\nTap anywhere on the timer during a solve to record a phase lap. You can access your breakdown statistics in each time card and view overall statistics in the Stats view." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "多阶段分组模式允许您将还原分解为多个阶段,例如盲拧中的各个阶段。\n\n在还原计时中,点击计时器上的任意位置以记录一个新的阶段时间。您可以在每个时间卡中查看阶段统计数据,并在统计视图中查看总体统计数据。"
}
}
}
},
"A playground session allows you to quickly change the scramble type within a session without having to specify a scramble type for the whole session." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "灵活分组模式允许您在分组中快速更改打乱程序。"
}
}
}
},
"Accessibility" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "辅助功能"
}
}
}
},
"Add New Session" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Add new session"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "新建分组"
}
}
}
},
"Algorithm Trainer" : {
"extractionState" : "stale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "算法训练模式"
}
}
}
},
"Algorithm trainer, to train a specific subset of algorithms." : {
},
"All phases" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "所有阶段"
}
}
}
},
"All Puzzles" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "All puzzles"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "所有魔方"
}
}
}
},
"Appearance" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "外观"
}
}
}
},
"Are you sure you want to continue? This will delete every solve in this session!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认删除该分组所有还原成绩?"
}
}
}
},
"Are you sure you want to delete \"%@\"? All solves will be deleted and this cannot be undone." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确定删除\"%@\"?此操作会删除分组里所有还原成绩。"
}
}
}
},
"Are you sure you want to delete the selected solves? This cannot be undone." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认删除所选还原?"
}
}
}
},
"Are you sure you want to delete this solve?" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认删除此还原?"
}
}
}
},
"Are you sure you want to reset all appearance settings? Your solves and sessions will be kept." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认重置所有外观设置?"
}
}
}
},
"Are you sure you want to reset all general settings? Your solves and sessions will be kept." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认重置所有通用设置?"
}
}
}
},
"Ascending" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "顺序"
}
}
}
},
"AVERAGE PHASES" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "平均阶段成绩"
}
}
}
},
"AVERAGES" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "5次平均次数"
}
}
}
},
"BEST" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "最快AO5"
}
}
}
},
"BEST AO5" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "最快AO5"
}
}
}
},
"BEST MO10 AO5" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "最快MO10 AO5"
}
}
}
},
"BEST SINGLE" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "最快单次成绩"
}
}
}
},
"BEST STATS" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "最快成绩"
}
}
}
},
"Boop" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "嘭"
}
}
}
},
"Bug Fixes: " : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "修复的问题:"
}
}
}
},
"Calculator" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "计算器"
}
}
}
},
"Cancel" : {
"comment" : "locale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "取消"
}
}
}
},
"Clear Session" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "清除分组"
}
}
}
},
"Clear session?" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认清除分组"
}
}
}
},
"Clock" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "魔表"
}
}
}
},
"Colours" : {
"extractionState" : "stale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "颜色"
}
}
}
},
"Comment" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "备注"
}
}
}
},
"COMMENT" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "备注"
}
}
}
},
"Comment something…" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "备注..."
}
}
}
},
"Compsim" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Compsim"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "比赛模拟"
}
}
}
},
"Compsim Group" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "比赛模拟还原组"
}
}
}
},
"Confirm" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认"
}
}
}
},
"Confirm Delete" : {
"comment" : "locale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认删除"
}
}
}
},
"Confirm Export" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "确认导出"
}
}
}
},
"Continue" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "继续"
}
}
}
},
"Copy" : {
"comment" : "locale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拷贝"
}
}
}
},
"Copy Average" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拷贝平均"
}
}
}
},
"Copy Scramble" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拷贝打乱"
}
}
}
},
"Copy Solve" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拷贝还原"
}
}
}
},
"Could not get license for project" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Could not get license for project"
}
}
}
},
"Create" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "新建"
}
}
}
},
"CSV (generic)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CSV (通用)"
}
}
}
},
"CubeTime" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CubeTime"
}
}
}
},
"CubeTime is open source and licensed under the GNU GPL v3 license.\n\nWe use many open source projects and libraries, and you can view their respective licenses, along with our privacy policy below:" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CubeTime 是开源软件,采用 GNU GPL v3 许可证。\n\n我们使用了许多开源项目和库,您可以在下面查看它们各自的许可证以及我们的隐私政策:"
}
}
}
},
"CubeTime itself does not collect any data, \"personal\" or otherwise.\nYour solves (data not comprising of personal information including but not limited to the \"scramble\" used, the date of the solve, the time taken to complete the solve) and your sessions (data including but not limited to named groups of solves, again with no personal data) are stored locally on your device only, unless you are signed into an iCloud account *and* choose to sync your sessions and solves between iCloud-enabled devices.\n\n**Optionally**, CubeTime will use Apple iCloud to store your sessions. CubeTime's data that is stored on iCloud can be viewed and deleted in the CubeTime app. This data is handled by Apple's CloudKit service, which is encypted by an account-based key. Your data is stored in a privacy database and we do **not** have acccess to this data. Additionally, we do **not** have access to your Apple ID.\nThe Apple iCloud privacy policy is available at https://www.apple.com/legal/privacy/, and further Apple platform security can be viewed [here](https://support.apple.com/en-is/guide/security/welcome/web).\n\nThe source code of CubeTime is publically viewable at https://github.com/CubeStuffs/CubeTime for independent verification." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CubeTime 本身不会收集任何数据,无论是「个人」数据还是其他数据。您除非登录了 iCloud 账户并选择在启用 iCloud 的设备间同步数据,所有的还原数据和数据分组仅存储在您的设备本地,\n\nCubeTime 可以使用 Apple iCloud 存储您的分组。存储在 iCloud 的 CubeTime 数据可以在 CubeTime 应用中查看和删除。这些数据由 Apple 的 CloudKit 服务处理,采用基于账户的密钥加密。您的数据存储在隐私数据库中,我们不有权访问这些数据。此外,我们不有权访问您的 Apple ID。\nApple iCloud 隐私政策可在 https://www.apple.com/legal/privacy/ 上查看,更多 Apple 平台的安全信息请见[此处](https://support.apple.com/en-is/guide/security/welcome/web)。\n\nCubeTime 的源代码可以在 https://github.com/CubeStuffs/CubeTime 上公开查看,以供独立验证。"
}
}
}
},
"CubeTime only supports standard DynamicType sizes. Accessibility DynamicType modes are currently not supported, so layouts may not be rendered correctly." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CubeTime 仅支持标准动态类型尺寸。目前不支持辅助功能动态类型模式,因此布局可能无法正确显示。"
}
}
}
},
"CubeTime v3.0.0 is here!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "CubeTime v3.0.0 来啦!"
}
}
}
},
"CURRENT" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前"
}
}
}
},
"Current Average" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前平均"
}
}
}
},
"CURRENT MO10 AO5" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前MO10 AO5"
}
}
}
},
"CURRENT STATS" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前成绩"
}
}
}
},
"Cursive Font" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "斜体字体"
}
}
}
},
"Customise" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "编辑"
}
}
}
},
"Customise Session" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "编辑分组"
}
}
}
},
"Customise the gradients used in stats. By default, the gradient is set to \"Static\". You can choose to set it to \"Dynamic\", where the gradient will change throughout the day." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "编辑统计数据中使用的渐变色。默认颜色设置为「静态」。您可以选择设置为「动态」,使渐变在一天中变化。"
}
}
}
},
"Dark Mode" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "暗黑模式"
}
}
}
},
"Date" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "日期"
}
}
}
},
"DEBUG BUILD" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "DEBUG"
}
}
}
},
"Default Session" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "默认分组"
}
}
}
},
"Delete" : {
"comment" : "locale",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "删除"
}
}
}
},
"Delete Session" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "删除分组"
}
}
}
},
"Delete Solve" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {