-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLocalizable.xcstrings
More file actions
1032 lines (1032 loc) · 24.2 KB
/
Localizable.xcstrings
File metadata and controls
1032 lines (1032 loc) · 24.2 KB
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" : " "
}
}
}
},
"%lld Characters" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld 字符"
}
}
}
},
"%lld%%" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld%%"
}
}
}
},
"⚠️ Complete Setup (Click Settings)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "⚠️ 完成设置 (点击设置)"
}
}
}
},
"⚠️ Please Update (Click Check Updates)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "⚠️ 请更新 (点击检查更新)"
}
}
}
},
"AirPlay Audio Delay" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "AirPlay 音频延迟"
}
}
}
},
"Animate on startup" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "启动时动画"
}
}
}
},
"Apple Music" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Apple Music"
}
}
}
},
"Back" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "返回"
}
}
}
},
"Blur surrounding lyrics" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "模糊周围歌词"
}
}
}
},
"Change fullscreen settings here!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "全屏设置在这里修改"
}
}
}
},
"Check for Lyrics Again" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "重新搜索歌词"
}
}
}
},
"Check for Updates…" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "检查更新…"
}
}
}
},
"Close" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "关闭"
}
}
}
},
"Decrease Offset to %lld" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "将延迟设置为 %lld"
}
}
}
},
"Decrease Size to %lld" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "菜单栏歌词设置为 %lld"
}
}
}
},
"Decrease volume by 5 (Down Arrow)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "音量减少 5 (方向键下)"
}
}
}
},
"Delete Lyrics (wrong lyrics)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "删除歌词(错误歌词)"
}
}
}
},
"Display fullscreen options" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "显示全屏选项"
}
}
}
},
"Done" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "完 成"
}
}
}
},
"Font Selected: %@, Size: %lld" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "Font Selected: %1$@, Size: %2$lld"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "所选字体: %@, 大小: %lld"
}
}
}
},
"Fullscreen" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "全屏歌词"
}
}
}
},
"Give Apple Music Library Permissions" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "授予访问 Apple Music 音乐库权限"
}
}
}
},
"Give Apple Music Permissions" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "授予访问 Apple Music权限"
}
}
}
},
"Give Spotify Permissions" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "授予访问 Spotify 权限"
}
}
}
},
"Hi %@!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "你好 %@!"
}
}
}
},
"Hide Karaoke window when mouse passes by" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "鼠标经过时隐藏 K歌 窗口"
}
}
}
},
"Hide lyrics (⌘ + H)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "隐藏歌词 (⌘ + H)"
}
}
}
},
"Hide translations (⌘ + T)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "隐藏翻译 (⌘ + T)"
}
}
}
},
"If you encounter any issues while using the app, please visit the [Github Issues](https://github.com/OrdinarySF/LyricFever-Lite/issues) page for support. \n⚠️ Disclaimer: I do not own the copyright to Spotify or the displayed lyrics. \n All lyrics are the property of Musixmatch, Spotify, QQ Music, and NetEase Cloud Music.\n[Lyric Fever Lite GitHub](https://github.com/OrdinarySF/LyricFever-Lite)\nVersion 3.0" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "使用时遇到任何问题,请在[Github Issues](https://github.com/OrdinarySF/LyricFever-Lite/issues)页面获取帮助\n⚠️ 免责声明: 我不拥有Spotify或展示歌词的版权。\n歌词所有权归Musixmatch、Spotify、QQ音乐和网易云音乐所有。\n [Lyric Fever Lite GitHub](https://github.com/OrdinarySF/LyricFever-Lite)\n版本 3.0"
}
}
}
},
"Increase Offset to %lld" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "将延迟设置为 %lld"
}
}
}
},
"Increase Size to %lld " : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "菜单栏歌词设置为 %lld "
}
}
}
},
"Increase volume by 5 (Up Arrow)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "音量增加 5(方向键上)"
}
}
}
},
"Karaoke Background Appearance" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌 歌词背景样式"
}
}
}
},
"Karaoke Behaviour" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌模式设置"
}
}
}
},
"Karaoke Font Appearance" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K歌 歌词字体样式"
}
}
}
},
"Karaoke Mode" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌模式"
}
}
}
},
"Karaoke Mode (Enable Show Lyrics)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌模式(启用显示歌词)"
}
}
}
},
"Karaoke Window" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌模式设置"
}
}
}
},
"Launch at Login" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "开机自动启动"
}
}
}
},
"Lyric Fever uses LRCLIB, QQ Music, and NetEase to fetch lyrics automatically" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lyric Fever 使用 LRCLIB、QQ音乐和网易云音乐自动获取歌词"
}
}
}
},
"Lyric Fever: Fullscreen" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lyric Fever: 全屏"
}
}
}
},
"Lyric Fever: Onboarding" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lyric Fever: 引导"
}
}
}
},
"Lyric Fever: Update 3.0" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Lyric Fever: 3.0 更新"
}
}
}
},
"Lyric Sources" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "歌词来源"
}
}
}
},
"Lyrics Found 😃 (%@)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "找到歌词啦 😃 (%@)"
}
}
}
},
"Lyrics will be fetched automatically from available sources when you play music." : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "播放音乐时,歌词将自动从可用来源获取。"
}
}
}
},
"Main Settings" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "主设置"
}
}
}
},
"Menubar Size is %lld" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前菜单歌词大小为 %lld"
}
}
}
},
"Next" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "下一步"
}
}
}
},
"No configuration needed!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "无需配置!"
}
}
}
},
"No Lyrics (Couldn't find Spotify ID) ☹️" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "无歌词(找不到 Spotify ID) ☹️"
}
}
}
},
"No Lyrics Found ☹️" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "没找到歌词 ☹️"
}
}
}
},
"No Translation ☹️" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "无翻译 ☹️"
}
}
}
},
"Now Paused: %@ - %@" : {
"comment" : "Now Paused: Song - Artist",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "暂停: %@ - %@"
}
}
}
},
"Now Playing: %@ - %@" : {
"comment" : "Now Playing: Song - Artist",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "播放: %@ - %@"
}
}
}
},
"Offset is %lld ms" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "当前延迟为 %lld 毫秒"
}
}
}
},
"Opacity Level:" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "透明度等级:"
}
}
}
},
"Opacity Level: %lld%%" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "透明度等级: %lld%%"
}
}
}
},
"Open %@!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "打开 %@!"
}
}
}
},
"Open Automation Panel" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "打开自动化面板"
}
}
}
},
"Open Music Panel" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "打开音乐面板"
}
}
}
},
"Open Spotify!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "打开 Spotify!"
}
}
}
},
"Pause (spacebar)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "暂停 (空格键)"
}
}
}
},
"Pause animations (saves battery) (⌘ + A)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "关闭动画(节省电量) (⌘ + A)"
}
}
}
},
"Play (spacebar)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "播放(空格键)"
}
}
}
},
"Please download the [official Spotify desktop client](https://www.spotify.com/in-en/download/mac/)" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请下载 [Spotify 官方桌面客户端](https://www.spotify.com/in-en/download/mac/)"
}
}
}
},
"Please give required permissions!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请授权必要的权限!"
}
}
}
},
"Please give us Apple Music Library permissions!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请授权 Apple Music 库权限!"
}
}
}
},
"Please give us Apple Music permissions!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请授权 Apple Music 权限!"
}
}
}
},
"Please give us required permissions!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请授权必要的权限!"
}
}
}
},
"Please open Apple Music!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请打开 Apple Music!"
}
}
}
},
"Please open Spotify!" : {
"extractionState" : "manual",
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请打开 Spotify!"
}
}
}
},
"Please pick between Spotify and Apple Music" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "请选择 Spotify 或 Apple Music"
}
}
}
},
"Quit" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "退出"
}
}
}
},
"Refresh Lyrics" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "刷新歌词"
}
}
}
},
"Reset to default" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "重置设置"
}
}
}
},
"Romanize" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拼音化文字"
}
}
}
},
"Select a Font:" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "选择字体:"
}
}
}
},
"Set a background color" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "设置背景颜色"
}
}
}
},
"Set the Lyric Size" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "设置歌词大小"
}
}
}
},
"Settings (New Karaoke Settings!)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "设置(新增 K 歌设置)"
}
}
}
},
"Share Spotify link" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "分享 Spotify 链接"
}
}
}
},
"Show Lyrics" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "显示歌词"
}
}
}
},
"Show lyrics (⌘ + H)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "显示歌词 (⌘ + H)"
}
}
}
},
"Show multilingual lyrics when translating in Karaoke window" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "K 歌窗口翻译时,显示多语言"
}
}
}
},
"Show Song Details in Menubar" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "在菜单栏显示歌曲详情"
}
}
}
},
"Spotify" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Spotify"
}
}
}
},
"Spotify Connect Audio Delay" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Spotify 连接音频延迟"
}
}
}
},
"This depends on how much free space you have in your menu bar!" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "这受限于您菜单栏的可用空间!"
}
}
}
},
"Translate lyrics (⌘ + T)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "翻译歌词 (⌘ + T)"
}
}
}
},
"Translate To %@" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "翻译为 %@"
}
}
}
},
"Translated Lyrics 😃" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "翻译歌词 😃"
}
}
}
},
"Translation Help" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "翻译帮助"
}
}
}
},
"Truncation Length" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "菜单栏歌词大小"
}
}
}
},
"Unpause animations (uses battery) (⌘ + A)" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "启用动画(耗电增加) (⌘ + A)"
}
}
}
},
"Update to macOS 14.0 to use fullscreen" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "更新至 macOS 14.0 以使用全屏歌词"
}
}
}
},
"Update to macOS 15 to enable translation" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "更新至 macOS 15 以启用翻译"
}
}
}
},
"Upload Local LRC File" : {