-
Notifications
You must be signed in to change notification settings - Fork 92
/
Language.en-US.xaml
1514 lines (1409 loc) · 162 KB
/
Language.en-US.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:system="clr-namespace:System;assembly=mscorlib">
<!--
MainWindow
-->
<!-- Navigation Panel -->
<system:String x:Key="String.MainWindow.Navigation.Home">Home</system:String>
<system:String x:Key="String.MainWindow.Navigation.Search">Search</system:String>
<system:String x:Key="String.MainWindow.Navigation.YourLibrary">Your Library</system:String>
<system:String x:Key="String.MainWindow.Navigation.LikedSongs">Liked Songs</system:String>
<!-- Mobile Mode Navigation -->
<system:String x:Key="String.MainWindow.Mobile.Navigation.Home">Home</system:String>
<system:String x:Key="String.MainWindow.Mobile.Navigation.Lyrics">Lyrics</system:String>
<system:String x:Key="String.MainWindow.Mobile.Navigation.Apple">Apple</system:String>
<!-- Login -->
<system:String x:Key="String.MainWindow.Login.Welcome">Welcome to Lyricify, {0}!</system:String>
<system:String x:Key="String.MainWindow.Login.Welcome.StoreSpecial">Welcome home, supreme {0}!</system:String>
<system:String x:Key="String.MainWindow.Login.LoggingIn">Logging in</system:String>
<system:String x:Key="String.MainWindow.Login.MightTakeAWhile">This might take a while</system:String>
<system:String x:Key="String.MainWindow.Login.StillTrying">We are still trying to log you in</system:String>
<!-- User Widget -->
<system:String x:Key="String.MainWindow.UserWidget.Profile">Profile</system:String>
<system:String x:Key="String.MainWindow.UserWidget.GetSpotifyPremium">Get Spotify Premium</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LogOut">Log out</system:String>
<system:String x:Key="String.MainWindow.UserWidget.Settings">Settings</system:String>
<system:String x:Key="String.MainWindow.UserWidget.About">About</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount">Lyricify Account</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.1">Administrator</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.2">Insider</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.3">Lyrics manager</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.4">Premium user</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.5">User</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.6">Restricted user</system:String>
<system:String x:Key="String.MainWindow.UserWidget.LyricifyAccount.Types.Null">Not found</system:String>
<system:String x:Key="String.MainWindow.UserWidget.MediaSession">Media Session</system:String>
<system:String x:Key="String.MainWindow.UserWidget.MediaSession.Connected">Connected</system:String>
<system:String x:Key="String.MainWindow.UserWidget.MediaSession.Disconnected">Disconnected</system:String>
<system:String x:Key="String.MainWindow.UserWidget.MediaSession.Disconnected.ToolTip" xml:space="preserve">1. Media Session will only be made available when using Spotify Desktop Version (or Store Version), it won't work when using Spotify's mobile or web version!
2. Lyricify won't try to connect Media Session until received playback response.</system:String>
<system:String x:Key="String.MainWindow.PinnedArea.Notice">Pin items for quick access!</system:String>
<!-- Control Part -->
<!-- Frame -->
<system:String x:Key="String.MainWindow.Frame.Control.GoBack">Go back</system:String>
<system:String x:Key="String.MainWindow.Frame.Control.GoForward">Go forward</system:String>
<!-- Bottom Bar -->
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.AlbumArtwork">Click to show more info about this track</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.Lyrics">Lyrics</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.AppleMusicLyrics">Apple Music Lyrics</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.SpotifyConnect">Spotify Connect</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.Volume">Volume</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.Fullscreen">Fullscreen</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.MobileUIFullscreen">Mobile UI Fullscreen</system:String>
<system:String x:Key="String.MainWindow.BottomControl.ToolTip.LyricifyFullscreen">Lyricify Fullscreen</system:String>
<!--
Pages
-->
<!-- Page Home -->
<system:String x:Key="String.Page.Home.Welcome">Welcome to Lyricify</system:String>
<system:String x:Key="String.Page.Home.FollowDeveloper">Why not follow our developer</system:String>
<system:String x:Key="String.Page.Home.FollowSuggestion">Suggestion</system:String>
<system:String x:Key="String.Page.Home.Button.Follow">Follow</system:String>
<system:String x:Key="String.Page.Home.Button.Following">Following</system:String>
<system:String x:Key="String.Page.Home.Button.Followed">Followed</system:String>
<system:String x:Key="String.Page.Home.Panel.YourFavoriteArtists">Your favorite artists</system:String>
<system:String x:Key="String.Page.Home.Panel.MoreLike">More Like</system:String>
<system:String x:Key="String.Page.Home.Panel.MoreLike.Argument">More Like {0}</system:String>
<system:String x:Key="String.Page.Home.Panel.FeaturedPlaylists">Featured playlists</system:String>
<system:String x:Key="String.Page.Home.Panel.PopularNewReleases">Popular new releases</system:String>
<!-- Other Pages -->
<system:String x:Key="String.Page.List.Title.Title">TITLE</system:String>
<system:String x:Key="String.Page.List.Title.Album">ALBUM</system:String>
<system:String x:Key="String.Page.List.Title.DateAdded">DATE ADDED</system:String>
<system:String x:Key="String.Page.List.Title.DateReleased">DATE RELEASED</system:String>
<system:String x:Key="String.Page.Info.Song">{0} song</system:String>
<system:String x:Key="String.Page.Info.Songs">{0} songs</system:String>
<system:String x:Key="String.Page.Info.Disc">{0} disc</system:String>
<system:String x:Key="String.Page.Info.Discs">{0} discs</system:String>
<system:String x:Key="String.Page.Album.Title.AlbumType.Album">ALBUM</system:String>
<system:String x:Key="String.Page.Album.Title.AlbumType.EP">EP</system:String>
<system:String x:Key="String.Page.Album.Title.AlbumType.Single">SINGLE</system:String>
<system:String x:Key="String.Page.Album.DiscSeparator.Title">Disc {0}</system:String>
<system:String x:Key="String.Info.Album.AlbumType.Album">Album</system:String>
<system:String x:Key="String.Info.Album.AlbumType.EP">EP</system:String>
<system:String x:Key="String.Info.Album.AlbumType.Single">Single</system:String>
<system:String x:Key="String.Page.Album.Artwork.FileDialog.Filter">JPEG Image (*.jpg)|*.jpg</system:String>
<system:String x:Key="String.Page.Artist.VerifiedArtist">Verified Artist</system:String>
<system:String x:Key="String.Page.Artist.Popular">Popular</system:String>
<system:String x:Key="String.Page.Artist.Follower">{0:N0} Follower</system:String>
<system:String x:Key="String.Page.Artist.Followers">{0:N0} Followers</system:String>
<system:String x:Key="String.Page.Artist.Panel.Albums">Albums</system:String>
<system:String x:Key="String.Page.Artist.Panel.SinglesAndEPs">Singles and EPs</system:String>
<system:String x:Key="String.Page.Artist.Panel.Compilations">Compilations</system:String>
<system:String x:Key="String.Page.Artist.Panel.FansAlsoLike">Fans also like</system:String>
<system:String x:Key="String.Page.Artist.Panel.AppearsOn">Appears On</system:String>
<system:String x:Key="String.Page.Playlist.Title">PLAYLIST</system:String>
<system:String x:Key="String.Page.Playlist.Title.Private">PRIVATE PLAYLIST</system:String>
<system:String x:Key="String.Page.Playlist.Title.Public">PUBLIC PLAYLIST</system:String>
<system:String x:Key="String.Page.Playlist.Like">{0:N0} like</system:String>
<system:String x:Key="String.Page.Playlist.Likes">{0:N0} likes</system:String>
<system:String x:Key="String.Page.LikedSongs.Title">PLAYLIST</system:String>
<system:String x:Key="String.Page.LikedSongs.Name">Liked Songs</system:String>
<system:String x:Key="String.Page.Profile.Title">PROFILE</system:String>
<system:String x:Key="String.Page.Profile.Follower">{0:N0} Follower</system:String>
<system:String x:Key="String.Page.Profile.Followers">{0:N0} Followers</system:String>
<system:String x:Key="String.Page.Profile.PublicPlaylist">{0:N0} Public Playlist</system:String>
<system:String x:Key="String.Page.Profile.PublicPlaylist.Plural">{0:N0} Public Playlists</system:String>
<system:String x:Key="String.Page.Profile.PublicPlaylists">Public Playlists</system:String>
<system:String x:Key="String.Page.Profile.TopArtists.Month">Top artists this month</system:String>
<system:String x:Key="String.Page.Profile.TopArtists.HalfYear">Top artists in six months</system:String>
<system:String x:Key="String.Page.Profile.TopArtists.Year">Top artists this year</system:String>
<system:String x:Key="String.Page.Profile.TopArtists.All">Top artists since the Big Bang</system:String>
<system:String x:Key="String.Page.Profile.TopTracks.Month">Top tracks this month</system:String>
<system:String x:Key="String.Page.Profile.TopTracks.HalfYear">Top tracks in six months</system:String>
<system:String x:Key="String.Page.Profile.TopTracks.Year">Top tracks this year</system:String>
<system:String x:Key="String.Page.Profile.TopTracks.All">Top tracks since the Big Bang</system:String>
<!-- Page Library -->
<system:String x:Key="String.Page.Library.Playlists">Playlists</system:String>
<system:String x:Key="String.Page.Library.Artists">Artists</system:String>
<system:String x:Key="String.Page.Library.Albums">Albums</system:String>
<!-- Page Mobile UI -->
<system:String x:Key="String.Page.MobileUI.Title">LYRICS</system:String>
<!-- Page Search -->
<system:String x:Key="String.Page.Search.Title.Search">Search</system:String>
<system:String x:Key="String.Page.Search.Title.Lyrics">Lyrics</system:String>
<system:String x:Key="String.Page.Search.Title.Availability">Availability</system:String>
<system:String x:Key="String.Page.Search.429Error">API rate limit exceeded (429 Error)</system:String>
<system:String x:Key="String.Page.Search.Retry">Retry</system:String>
<system:String x:Key="String.Page.Search.Search.SearchBar.PlaceHolder">Search for songs, artists, albums and playlists</system:String>
<system:String x:Key="String.Page.Search.Search.Result.Songs">Songs</system:String>
<system:String x:Key="String.Page.Search.Search.Result.Artists">Artists</system:String>
<system:String x:Key="String.Page.Search.Search.Result.Albums">Albums</system:String>
<system:String x:Key="String.Page.Search.Search.Result.Playlists">Playlists</system:String>
<system:String x:Key="String.Page.Search.Lyrics.NotAvailable">Currently not available</system:String>
<system:String x:Key="String.Page.Search.Availability.SearchBar.PlaceHolder">Input link or Spotify URI here</system:String>
<system:String x:Key="String.Page.Search.Availability.SearchBar.NetworkIssue.Message">Network issue, please check your Internet connection.</system:String>
<system:String x:Key="String.Page.Search.Availability.SearchBar.WrongID.Message">Album not found, please check the ID your input.</system:String>
<system:String x:Key="String.Page.Search.Availability.SearchBar.WrongInput.Message">Wrong input or unsupported input. Only track (redirect to its album), album and playlist links are supported. Here are some examples.</system:String>
<system:String x:Key="String.Page.Search.Availability.Market">Market</system:String>
<system:String x:Key="String.Page.Search.Availability.Market.Unspecified">Unspecified</system:String>
<system:String x:Key="String.Page.Search.Availability.MoreVersions">More versions</system:String>
<system:String x:Key="String.Page.Search.Availability.Playlist.UnavailableTracks">Unavailable tracks</system:String>
<system:String x:Key="String.Page.Search.Availability.Playlist.AllAvailable">All tracks are available</system:String>
<system:String x:Key="String.Page.Search.Availability.AlbumAvailabilityDisplayItem.ToolTip.GoToAlbum">Go to album</system:String>
<system:String x:Key="String.Page.Search.Availability.AlbumAvailabilityDisplayItem.Available">Available</system:String>
<system:String x:Key="String.Page.Search.Availability.AlbumAvailabilityDisplayItem.Unavailable">Unavailable</system:String>
<!-- Page Spotify Connect -->
<system:String x:Key="String.Page.SpotifyConnect.CurrentDevice">Current device</system:String>
<system:String x:Key="String.Page.SpotifyConnect.SelectAnotherDevice">Select another device</system:String>
<system:String x:Key="String.Page.SpotifyConnect.NoDeviceFound">No device found</system:String>
<system:String x:Key="String.Page.SpotifyConnect.NoOtherDevicesFound">No other devices found</system:String>
<system:String x:Key="String.Page.SpotifyConnect.ThisComputer">This computer</system:String>
<!-- Audio Features -->
<system:String x:Key="String.AudioFeatures.Track">Track</system:String>
<system:String x:Key="String.AudioFeatures.Track.Name">Name</system:String>
<system:String x:Key="String.AudioFeatures.Track.ISRC.Null">No ISRC</system:String>
<system:String x:Key="String.AudioFeatures.Track.TrackNumber">Track number</system:String>
<system:String x:Key="String.AudioFeatures.Track.Duration">Duration</system:String>
<system:String x:Key="String.AudioFeatures.Album">Album</system:String>
<system:String x:Key="String.AudioFeatures.Album.Name">Name</system:String>
<system:String x:Key="String.AudioFeatures.Album.UPC.Null">No UPC</system:String>
<system:String x:Key="String.AudioFeatures.Album.ReleaseDate">Release date</system:String>
<system:String x:Key="String.AudioFeatures.Album.TracksCount">Tracks count</system:String>
<system:String x:Key="String.AudioFeatures.Artist">Artist</system:String>
<system:String x:Key="String.AudioFeatures.Artists">Artist(s)</system:String>
<system:String x:Key="String.AudioFeatures.Artist.Name">Name</system:String>
<system:String x:Key="String.AudioFeatures.Artist.Names">Name(s)</system:String>
<system:String x:Key="String.AudioFeatures.Relink">Relinked From</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Track.Name">Track name</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Track.ID">Track ID</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Track.ISRC">Track ISRC</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Track.TrackNumber">Track number</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Album.Name">Album name</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Album.ID">Album ID</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Album.ReleaseDate">Album release date</system:String>
<system:String x:Key="String.AudioFeatures.Relink.Album.TracksCount">Album tracks count</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature">Audio Features</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Mode">Mode</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Mode.Major">Major</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Mode.Minor">Minor</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.TimeSignature">Time signature</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.PitchClass">Pitch class (Key)</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Loudness">Loudness</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Tempo">Tempo</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Acousticness">Acousticness</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Danceability">Danceability</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Energy">Energy</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Instrumentalness">Instrumentalness</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Liveness">Liveness</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Speechiness">Speechiness</system:String>
<system:String x:Key="String.AudioFeatures.AudioFeature.Valence">Valence</system:String>
<system:String x:Key="String.AudioFeatures.ToolTip.ClickCopy">Click to copy</system:String>
<system:String x:Key="String.AudioFeatures.Button.CopyIDs">Copy IDs and ISRC</system:String>
<system:String x:Key="String.AudioFeatures.Button.CopyAll">Copy all info</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackName">Track Name</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackID">Track ID</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackISRC">Track ISRC</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackURI">Track URI</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackDuration">Track Duration</system:String>
<system:String x:Key="String.AudioFeatures.Copy.TrackNumber">Track Number</system:String>
<system:String x:Key="String.AudioFeatures.Copy.AlbumName">Album Name</system:String>
<system:String x:Key="String.AudioFeatures.Copy.AlbumID">Album ID</system:String>
<system:String x:Key="String.AudioFeatures.Copy.AlbumUPC">Album UPC</system:String>
<system:String x:Key="String.AudioFeatures.Copy.AlbumReleaseDate">Album Release Date</system:String>
<system:String x:Key="String.AudioFeatures.Copy.AlbumTracksCount">Album Tracks Count</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistName">Artist Name</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistID">Artist ID</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistNames">Artist Names</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistIDs">Artist IDs</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistNames.Bracket">Artist Name(s)</system:String>
<system:String x:Key="String.AudioFeatures.Copy.ArtistIDs.Bracket">Artist ID(s)</system:String>
<system:String x:Key="String.AudioFeatures.Copy.Relink">Relinked From</system:String>
<system:String x:Key="String.Info.Copy.DiscNum">Disc {0}</system:String>
<system:String x:Key="String.Info.Copy.TrackNum">Track {0}</system:String>
<system:String x:Key="String.Info.Copy.Tracklist">Track List</system:String>
<system:String x:Key="String.Info.Copy.Tracklist.Of">Track List of {0}</system:String>
<system:String x:Key="String.Info.Copy.TopTracks.From">Popular Tracks from {0}</system:String>
<system:String x:Key="String.Info.Copy.Album.TotalLength">Album Total Length</system:String>
<system:String x:Key="String.Info.Copy.Album.DiscsCount">Album Discs Count</system:String>
<system:String x:Key="String.Info.Copy.Playlist.Name">Playlist Name</system:String>
<system:String x:Key="String.Info.Copy.Playlist.Description">Playlist Description</system:String>
<system:String x:Key="String.Info.Copy.Playlist.Type">Playlist Type</system:String>
<system:String x:Key="String.Info.Copy.Playlist.ID">Playlist ID</system:String>
<system:String x:Key="String.Info.Copy.Playlist.TracksCount">Playlist Tracks Count</system:String>
<system:String x:Key="String.Info.Copy.Playlist.TotalLength">Playlist Total Length</system:String>
<system:String x:Key="String.Info.Copy.Playlist.Owner.Name">Owner Name</system:String>
<system:String x:Key="String.Info.Copy.Playlist.Owner.ID">Owner ID</system:String>
<system:String x:Key="String.Info.Copy.Artist.Followers">Followers</system:String>
<system:String x:Key="String.Info.Copy.User.DisplayName">User Display Name</system:String>
<system:String x:Key="String.Info.Copy.User.ID">User ID</system:String>
<system:String x:Key="String.Info.Copy.User.Followers">Followers</system:String>
<!-- Page Apple Music Lyrics -->
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.Tip1">Click to close</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.Tip2">Swipe left or right to maximize</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.Tip3">Swipe down to minimize</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.Tip4">Right press to control lyrics position</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.Close">Exit Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.MaximizeWindow">Fullscreen</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.RestoreWindow">Restore Window</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.MinimizeWindow">Minimize Window</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.GoToCurrentLine">View Current Line</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.GoToFirstLine">View First Line</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.GoToLastLine">View Last Line</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.MagicButton.None">No Operation</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.ArtistClick.GoToArtist">Go to Artist</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.ArtistClick.GoToAlbum">Go to Album</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.ArtistClick.GoToPlaylist">Go to Playlist</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.AddToLibrary">Add to Library</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.DeleteFromLibrary">Delete from Library</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.ShowArtist">Show Artist</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.Menu.ShowAlbum">Show Album</system:String>
<system:String x:Key="String.Page.AppleMusicLyrics.WrittenBy.Colon" xml:space="preserve">Written By: </system:String>
<!-- Page About -->
<system:String x:Key="String.Page.About.Title">About</system:String>
<system:String x:Key="String.Page.About.NonPublicWarning">THIS IS NOT A PUBLIC RELEASE, DO NOT SPREAD PLEASE!</system:String>
<system:String x:Key="String.Page.About.Architecture.32Bits">32-Bit</system:String>
<system:String x:Key="String.Page.About.Architecture.64Bits">64-Bit</system:String>
<system:String x:Key="String.Page.About.Architecture.Emulated">{0} emulated</system:String>
<system:String x:Key="String.Page.About.Portable">Portable Version</system:String>
<system:String x:Key="String.Page.About.Portable.RunningArchitecture">Portable version running on {0}</system:String>
<system:String x:Key="String.Page.About.MicrosoftStore">Microsoft Store Version</system:String>
<system:String x:Key="String.Page.About.MicrosoftStore.Purchased">Purchased Microsoft Store Version</system:String>
<system:String x:Key="String.Page.About.MicrosoftStore.Trial">Microsoft Store Trial Version</system:String>
<system:String x:Key="String.Page.About.MadeWithHeart">Made with ❤️ by WXRIW</system:String>
<system:String x:Key="String.Page.About.Copyright">Copyright © {0} WXRIW</system:String>
<system:String x:Key="String.Page.About.LyricsProvidedBy">Lyrics provided by</system:String>
<system:String x:Key="String.Page.About.LyricsProviders">Lyricify Lyrics Vault, QQ Music, Netease Cloud Music</system:String>
<system:String x:Key="String.Page.About.Donation">Donation</system:String>
<system:String x:Key="String.Page.About.Thanklist">Thanklist</system:String>
<system:String x:Key="String.Page.About.Thanklist.SupporterListInfo">Sort by amount and time, list updated on {0}</system:String>
<system:String x:Key="String.Page.About.Thanklist.ThanksApple">Special thanks to Apple for the fascinating and unique design</system:String>
<system:String x:Key="String.Page.About.Thanklist.ThanksSpotify">Special thanks to Spotify for its contribution to the whole music streaming industry</system:String>
<system:String x:Key="String.Page.About.Thanklist.ThanksPremium">Special thanks to Difer for providing Spotify Premium account</system:String>
<system:String x:Key="String.Page.About.Thanklist.ThanksInsiders">Special thanks to our insiders</system:String>
<system:String x:Key="String.Page.About.Thanklist.ThanksStorePurchase">Thanks to all users who have purchased Lyricify on Microsoft Store</system:String>
<system:String x:Key="String.Page.About.Internationalization">Internationalization</system:String>
<system:String x:Key="String.Page.About.References">References</system:String>
<system:String x:Key="String.Page.About.References.MITLicense.Brackets">(MIT License)</system:String>
<system:String x:Key="String.Page.About.References.WTFPLLicense.Brackets">(WTFPL License)</system:String>
<system:String x:Key="String.Page.About.References.Apache2.Brackets">(Apache License 2.0)</system:String>
<system:String x:Key="String.Page.About.References.LGPLLicense21.Brackets">(LGPL License 2.1)</system:String>
<system:String x:Key="String.Page.About.References.NoLicense.Brackets">(No License)</system:String>
<system:String x:Key="String.Page.About.CopyrightClaiming">Copyright Claiming</system:String>
<system:String x:Key="String.Page.About.CopyrightClaiming.WXRIW">Copyright © {0} WXRIW, All Rights Reserved</system:String>
<system:String x:Key="String.Page.About.CopyrightClaiming.Spotify">Main Window UI Design, Mobile UI Fullscreen Design, Spotify Circular Copyright © Spotify AB</system:String>
<system:String x:Key="String.Page.About.CopyrightClaiming.Apple">Apple Music Lyrics UI Design, SF Pro, PingFang SC Copyright © Apple Inc.</system:String>
<!-- Page Settings -->
<system:String x:Key="String.Page.Settings.Title">Settings</system:String>
<system:String x:Key="String.Page.Settings.General">General</system:String>
<system:String x:Key="String.Page.Settings.General.Language">Language</system:String>
<system:String x:Key="String.Page.Settings.General.Language.Description">Choose the display language of Lyricify (Some changes might need an app restart to be applied)</system:String>
<system:String x:Key="String.Page.Settings.General.CloseToHide">Close to hide</system:String>
<system:String x:Key="String.Page.Settings.General.CloseToHide.Description">Close button should minimize the Lyricify window</system:String>
<system:String x:Key="String.Page.Settings.General.RestoreWindow">Restore window</system:String>
<system:String x:Key="String.Page.Settings.General.RestoreWindow.Description">Restore Lyricify window state at startup</system:String>
<system:String x:Key="String.Page.Settings.Appearance">Appearance</system:String>
<system:String x:Key="String.Page.Settings.Appearance.ColorMode">Color mode</system:String>
<system:String x:Key="String.Page.Settings.Appearance.ColorMode.Description">Change the colors that appear in Lyricify</system:String>
<system:String x:Key="String.Page.Settings.Appearance.ColorMode.ComboBox.Dark">Dark (Default)</system:String>
<system:String x:Key="String.Page.Settings.Appearance.ColorMode.ComboBox.Light">Light</system:String>
<system:String x:Key="String.Page.Settings.Appearance.ColorMode.ComboBox.FollowSystem">Follow system</system:String>
<system:String x:Key="String.Page.Settings.Appearance.InterfaceFontPreset">Interface font preset</system:String>
<system:String x:Key="String.Page.Settings.Appearance.InterfaceFontPreset.Description">Choose the font preset for Lyricify interface</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsBackground">Lyrics Background</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsBackground.Description">Change lyrics Background</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsBackground.ComboBox.SingleColor">Solid Color</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsBackground.ComboBox.BlurredCover">Blurred Cover (Default)</system:String>
<system:String x:Key="String.Page.Settings.Appearance.Zoom">Zoom</system:String>
<system:String x:Key="String.Page.Settings.Appearance.Zoom.Description">Change Lyricify's display zooming</system:String>
<system:String x:Key="String.Page.Settings.Appearance.Zoom.Button.Reset">Reset</system:String>
<system:String x:Key="String.Page.Settings.Appearance.Zoom.Help">You can also change the display zooming by mouse wheel with Control pressed, or "Ctrl + -" to Zoom In, "Ctrl + =" to Zoom Out and "Ctrl + 0" to reset.</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization">Lyrics style personalization</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.Description">Lyrics style in Spotify style lyrics page</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.MobileMode">Lyrics style personalization (Mobile Mode)</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.MobileMode.Description">Lyrics style in Spotify style lyrics (Mobile Mode) page</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.Button.Reset">Reset</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LyricsAlign">Lyrics align</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LyricsAlign.ComboBox.Center">Center (Default)</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LyricsAlign.ComboBox.Left">Left</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LyricsAlign.ComboBox.Right">Right</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LyricsAlign.Margin">Margin</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.FontSize.Lyrics">Lyrics font size</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.FontSize.Translation">Translation font size</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.LineSpacing">Line spacing</system:String>
<system:String x:Key="String.Page.Settings.Appearance.LyricsStylePersonalization.PlayingLineZoomingAnimation">Playing line zooming animation</system:String>
<system:String x:Key="String.Page.Settings.Appearance.KaraokeMode">Word-by-word mode</system:String>
<system:String x:Key="String.Page.Settings.Appearance.KaraokeMode.Description">Display lyrics word by word</system:String>
<system:String x:Key="String.Page.Settings.Appearance.QuickAccess">Quick Access</system:String>
<system:String x:Key="String.Page.Settings.Appearance.QuickAccess.Description">You can choose what to show on the left bottom area, either custom pins, or all your Spotify playlists.</system:String>
<system:String x:Key="String.Page.Settings.Appearance.QuickAccess.ComboBox.CustomPins">Custom pins</system:String>
<system:String x:Key="String.Page.Settings.Appearance.QuickAccess.ComboBox.AllPlaylists">All playlists</system:String>
<system:String x:Key="String.Page.Settings.Appearance.FontFamily">Font Family</system:String>
<system:String x:Key="String.Page.Settings.Appearance.FontFamily.Current">Current Font Family:</system:String>
<system:String x:Key="String.Page.Settings.Appearance.FontFamily.Current.Default">Default</system:String>
<system:String x:Key="String.Page.Settings.Appearance.FontFamily.Custom">Custom</system:String>
<system:String x:Key="String.Page.Settings.Appearance.FontFamily.Reset">Reset</system:String>
<system:String x:Key="String.Page.Settings.Lyrics">Lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ChineseTranslation">Chinese translation</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ChineseTranslation.Description">Chinese translation will be shown when available</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji">Romaji</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji.Description">Choose display options for Japanese Romaji</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji.ComboBox.Disable">Disable</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji.ComboBox.TranslationFirst">Translation First</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji.ComboBox.RomajiFirst">Romaji First</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Romaji.ComboBox.RomajiOnly">Romaji Only</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.PreferSimplifiedChinese">Prefer Simplified Chinese</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.PreferSimplifiedChinese.Description">Chinese characters will be converted into Traditional Chinese if you toggled off this option</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ChineseLongSentenceSegmentation">Lyrics segmentation</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ChineseLongSentenceSegmentation.Description">Enable Chinese long sentence segmentation (Takes effect after refreshing lyrics)</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ShowExplicitLyrics">Show explicit lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.ShowExplicitLyrics.Description">By turning off, explicit words will be replaced with asterisks</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source">Source</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.Description">Lyricify works better with QQ Music source, some Lyricify features might not be available when using Netease Cloud Music source</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.ComboBox.QQFirst">QQ Music first</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.ComboBox.NeteaseFirst">Netease Cloud Music first</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.ComboBox.TranslationFirst.QQFirst">Translation first and QQ Music first</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.ComboBox.TranslationFirst.NeteaseFirst">Translation first and Netease Cloud Music first</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.NeteaseSyllable">Netease word-by-word lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.NeteaseSyllable.Description">Enable Netease Cloud Music word-by-word lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.Musixmatch">Enable Musixmatch</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.Musixmatch.Description">Use Musixmatch as backup source</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.MusixmatchSyllable">Musixmatch word-by-word lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.Source.MusixmatchSyllable.Description">Enable Musixmatch word-by-word lyrics</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.EnableColorfulEmoji">Colorful Emoji</system:String>
<system:String x:Key="String.Page.Settings.Lyrics.EnableColorfulEmoji.Description">Enable colorful emojis at rendering (not all interfaces support colorful emojis)</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics">Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Background">Background</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Background.Description">Choose the background you want to use in Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Background.ComboBox.Static">Static</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Background.ComboBox.Dynamic">Dynamic</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Background.ComboBox.DynamicBeating">Dynamic (Beating)</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BlurLyrics">Blur lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BlurLyrics.Description">Enable blur effect on lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BlurLevel">Blur level</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BlurLevel.Description">Set blur level (Default level on iPadOS in horizontal mode is 3, on iPadOS in vertical mode or iOS is 5)</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BlurLevel.Level">Level</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BoldText">Bold Text</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BoldText.Description">Use bold text in Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.FontPreset">Font preset</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.FontPreset.Description">Use font presets in Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode">Karaoke mode</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Description">Yes, now you can have karaoke style lyrics in Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.DisableCJK">Disable karaoke style for CJK lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.DisableCJK.Description">CJK karaoke lyrics uses more resources to display, disable might improve the animation performance</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation">Enable additional animations</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Description">Better animation, better experience</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float">Float animation</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.Description">Lyrics playing, syllables floating, so amazing</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.ComboBox.Disabled">Disabled</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.ComboBox.Low">Low</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.ComboBox.Medium">Medium</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.ComboBox.High">High (Default)</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.Float.ComboBox.Tremendous">Tremendous</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.WordShine">Word shining effect</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.KaraokeMode.Animation.WordShine.Description">That's glorious</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ShinyCjk">Enable CJK word shining effect</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ShinyCjk.Description">Enable word shining effect for multiple CJK characters</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.DuetView">Duet view</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.DuetView.Description">Multiple vocalists show on opposite sides of the screen to make duets or multi-singer tracks easy to sing along to</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.RightAlignFirst">Right alignment first</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.RightAlignFirst.Description">Align lyrics to the right first</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling">Pulling effect</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.Description">Set power for pulling effect</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.Disabled">Disabled</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.Low">Low</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.Regular">Regular</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.Medium">Medium (Default)</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.High">High</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.Pulling.ComboBox.Tremendous">Tremendous</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.MagicStripFeature">Magic Strip feature description</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.MagicStripFeature.Description">Display corresponding functions when using the Magic Strip</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ShowMagicStripTutorial">Show Magic Strip tutorial</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ShowMagicStripTutorial.Description">Always show the tutorial of Magic Strip after entering Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ShowMagicStripTutorial.Help" xml:space="preserve">Introducing Magic Strip! 

You can press the strip button to exit Apple Music Lyrics, 
swipe down to minimize, 
swipe left or right to maximize or recover, 
and swipe up to cancel. 

You can also press your right mouse button to swipe up to go to the first line of lyrics, 
swipe down to go to the last line of lyrics, 
swipe left or right to go to current line, 
and a single right click will do nothing.</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.AnimatedTime">Animated time status</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.AnimatedTime.Description">Enable animations for time status changes</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ZoomingRestore">Zooming restore</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.ZoomingRestore.Description">Restore zooming in Apple Music Lyrics</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset">Style preset</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.Description">Details are different in different system versions</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.Default">Default</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.Custom">Custom</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.iOS162AndLater">iOS 16.2 and later</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.iOS163AndLater">iOS 16.3 and later</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.iOS164AndLater">iOS 16.4 and later</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.iOS170AndLater">iOS 17.0 and later</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.StylePreset.ComboBox.iOS171AndLater">iOS 17.1 and later</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.TransitionWidth">Transition width</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.TransitionWidth.Description">Opacity transition width</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.InlineAnimation">Inline animation</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.InlineAnimation.Description">Animation details in lyrics lines</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.LineSwitchingOpacitySpeed">Opacity switching</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.LineSwitchingOpacitySpeed.Description">Syllable line opacity switching speed</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.SyllablePreplayOpacity">Syllable preplay opacity</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.SyllablePreplayOpacity.Description">Opacity for syllables at preplay mode</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BackgroundVocalFlyout">Background Vocal flyout</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BackgroundVocalFlyout.Description">Background Vocal flyout animation and direction</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.MobileLayout">Mobile layout</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.MobileLayout.Description">Apple Music mobile layout</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.WordShineEffect">Word shining effect</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.WordShineEffect.Description">Word shining effect is different on iOS and Android</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BreathingDotsAlignment">Breathing Dots alignment</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BreathingDotsAlignment.Description">Breathing Dots are always left aligned on iOS, but remain on the same side as the lyrics on Android</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.HighlightLineZooming">Highlight zooming</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.HighlightLineZooming.Description">Adjust current highlight line's zooming level</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.PreventSleep">Prevent sleep</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.PreventSleep.Description">Prevent from turning off display or sleeping</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.PreventSleep.ComboBox.Always">Always</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.PreventSleep.ComboBox.FullscreenOnly">Fullscreen only</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BuggyApple">Buggy Apple</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.BuggyApple.Description">Apple without bugs is no longer Apple</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.EnableTraditional">Enable traditional version</system:String>
<system:String x:Key="String.Page.Settings.AppleMusicLyrics.EnableTraditional.Description">Add entry to Apple Music Lyrics (Traditional) in main menu</system:String>
<system:String x:Key="String.Page.Settings.LyricifyFullscreen">Lyricify Fullscreen</system:String>
<system:String x:Key="String.Page.Settings.LyricifyFullscreen.BlurLyrics">Blur lyrics</system:String>
<system:String x:Key="String.Page.Settings.LyricifyFullscreen.BlurLyrics.Description">Enable blur effect on lyrics</system:String>
<system:String x:Key="String.Page.Settings.LyricifyFullscreen.ColorfulLogo">Colorful logo</system:String>
<system:String x:Key="String.Page.Settings.LyricifyFullscreen.ColorfulLogo.Description">Use colorful Lyricify logo instead of single color Lyricify logo</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland">Dynamic Lyrics Island</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode">Byland mode</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.Description">Byland or Island, it's up to you! Different styles enjoy different features</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.Help" xml:space="preserve">Dynamic Lyrics Island will automatically disappear at your cursor entrance in Byland mode, but in Island mode, you can use your cursor to move the island. 
You will be able to close Dynamic Lyrics Island by right click menu in Island Mode, but in Byland mode, you can only close by main menu or hotkey.</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.ScreenIndex">Screen index</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.ScreenIndex.Description">Select which screen you want Dynamic Lyrics Island to display on in byland mode</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.ScreenIndex.ScreenItem">Screen {0}</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BylandMode.ScreenIndex.ScreenItem.Primary">Screen {0} (Primary display)</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.DuoLine">Always show two lines</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.DuoLine.Description">Always show two lines of lyrics even when translation is not available</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.HideTranslation">Hide translation and pronunciation</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.HideTranslation.Description">Hide translation and pronunciation when they are available</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BoldText">Bold Text</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.BoldText.Description">Use bold text in Dynamic Lyrics Island</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.KaraokeMode">Karaoke mode</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.KaraokeMode.Description">Have you ever seen lyrics shining?</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.AutoHide">Auto hide</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.AutoHide.Description">By turning on, Dynamic Lyrics Island will be hidden at pause</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.FullscreenHide">Fullscreen hide</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.FullscreenHide.Description">Hide Dynamic Lyrics Island when you have program running at fullscreen mode</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.ShowArtistImage">Show artist image</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.ShowArtistImage.Description">Show artist image on the left side of the Dynamic Lyrics Island after you switch to a new song</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.Opacity">Opacity</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.Scale">Scale</system:String>
<system:String x:Key="String.Page.Settings.DynamicLyricsIsland.Scale.Description">Controlling the size and scaling of the Dynamic Lyrics Island</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics">Desktop Lyrics</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.DuoLineMode">Duo-Line mode</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.DuoLineMode.Description">By turning off, only one line of lyrics will be displayed</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EfficiencyMode">Efficiency mode</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EfficiencyMode.Description">Lyricify is committed to helping reduce carbon emissions and energy usage causing environmental impact</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsSwitchingAnimation">Lyrics switching animation</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsSwitchingAnimation.Description">Play animation when switching to another lyrics line</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsSwitchingAnimation.BlurEffect">Blur effect</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsSwitchingAnimation.BlurEffect.Description">Enable blur effect at line switching</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.KaraokeMode">Karaoke mode</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.KaraokeMode.Description">Get karaoke style of lyrics display</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.AutoHide">Auto hide</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.AutoHide.Description">By turning on, Desktop Lyrics will be hidden at pause</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.FullscreenHide">Fullscreen hide</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.FullscreenHide.Description">Hide Desktop Lyrics when you have program running at fullscreen mode</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EnterHide">Transparency hide</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EnterHide.Description">Set a lower opacity for Desktop Lyrics when cursor enters at locked state</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EnterHide.Opacity">Opacity</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.EnterHide.Opacity.Description">Set this to 0 if you want to hide Desktop Lyrics</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Opacity">Opacity</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.BorderThickness">Border thickness</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsAlign">Lyrics align</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsAlign.ComboBox.Center">Center (Default)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsAlign.ComboBox.Left">Left</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.LyricsAlign.ComboBox.Right">Right</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors">Colors</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.Description">It might be the most customizable Desktop Lyrics ever</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.Button.Reset">Reset</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle">Duo line style</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle.Description">Two separated lines. Lines with translation won't use duo line style</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle.HighlightLine.Fill">Highlight line (Fill)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle.HighlightLine.Border">Highlight line (Border)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle.NextLine.Fill">Next line (Fill)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.DuoLineStyle.NextLine.Border">Next line (Border)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle">Single line style</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle.Description">Display only one line. Translation will be displayed if available</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle.Fill">Fill</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle.Border">Border</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle.TranslationLine.Fill">Translation line (Fill)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.SingleLineStyle.TranslationLine.Border">Translation line (Border)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle">Karaoke style</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle.Description">This applies to both duo line and single line</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle.Played.Fill">Played (Fill)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle.Played.Border">Played (Border)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle.Preplay.Fill">Preplay (Fill)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.KaraokeStyle.Preplay.Border">Preplay (Border)</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.ArtworkMainColor">Artwork main color</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.Black">Black</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.White">White</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Colors.Custom">Custom</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect">Shadow effect</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Description">Drop shadow effect under lyrics</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Color">Color</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Depth">Depth</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Direction">Direction</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Direction.Description">Default value: 315°</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Opacity">Opacity</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.ShadowEffect.Radius">Radius</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Position">Position & size</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Position.Description">If Desktop Lyrics isn't displayed correctly, you can try to Reset</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Position.Button.Reset">Reset</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Lock">Lock</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Lock.Description">Lock Desktop Lyrics's position and size</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Lock.Button.Unlock">Unlock</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Lock.HideUnlock">Hide unlock button</system:String>
<system:String x:Key="String.Page.Settings.DesktopLyrics.Lock.HideUnlock.Description">Hide unlock button so it won't interrupt your operation</system:String>
<system:String x:Key="String.Page.Settings.Functions">Functions</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed">Follow Feed</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.Description">Get new releases</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.CheckAtStartup">Check at startup</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.CheckAtStartup.Description">Check for new releases every time you run Lyricify</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.OnlyCheckPopularReleases">Only check "Popular releases"</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.OnlyCheckPopularReleases.Description">This will reduce Spotify Web API requests and have lower possibility to get a API Rate Limit Error (429 Error). By turning this option on, some new releases might not be notified. (Lyricify recommends you to turn this on if you have followed more than 20 artists)</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization">Artists check customization</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization.Description">You can choose part of your followed artists for Lyricify to check for new releases, you can also add artists that you are not even following</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization.ChooseArtists">Choose artists</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization.ChooseArtists.Button.AddOrEdit">Add or Edit</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization.ChooseArtists.Description">Choose artists for Lyricify to check</system:String>
<system:String x:Key="String.Page.Settings.Functions.FollowFeed.ArtistsCheckCustomization.ChooseArtists.Choosen">Chosen artists</system:String>
<system:String x:Key="String.Page.Settings.Spotify">Spotify</system:String>
<system:String x:Key="String.Page.Settings.Spotify.PreferredRecommendationRegion">Preferred recommendation region</system:String>
<system:String x:Key="String.Page.Settings.Spotify.PreferredRecommendationRegion.Description">This will affect your Home page</system:String>
<system:String x:Key="String.Page.Settings.Spotify.PreferredRecommendationRegion.ComboBox.Default">Default (your account's region)</system:String>
<system:String x:Key="String.Page.Settings.Spotify.PreferredRecommendationRegion.ComboBox.InternetLocation">Internet Location (your IP's region)</system:String>
<system:String x:Key="String.Page.Settings.Advanced">Advanced</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Spotify.EnableTrackRelinking">Enable track's artwork relinking</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Spotify.EnableTrackRelinking.Description">Use relinked artwork instead of artwork from original track when the track is relinked</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Spotify.EnableTrackRelinking.Help" xml:space="preserve">The availability of a track depends on the country registered in the user’s Spotify profile settings. Often Spotify has several instances of a track in its catalogue, each available in a different set of markets. This commonly happens when the track the album is on has been released multiple times under different licenses in different markets. 

These tracks are linked together so that when a user tries to play a track that isn’t available in their own market, the Spotify mobile, desktop, and web players try to play another instance of the track that is available in the user’s market.</system:String>
<system:String x:Key="String.Page.Settings.Advanced.LyricifyIntelligentEngine">Lyricify Intelligent Engine</system:String>
<system:String x:Key="String.Page.Settings.Advanced.LyricifyIntelligentEngine.Description">Provide powerful intelligent technology and functional support for the connection and interaction between Lyricify and Spotify</system:String>
<system:String x:Key="String.Page.Settings.Advanced.LyricifyIntelligentEngine.Description.Premium">Spotify Premium subscription is required!</system:String>
<system:String x:Key="String.Page.Settings.Advanced.LyricifyIntelligentEngine.Button.GetPremium">Get Spotify Premium</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement">Enable Media Session enhancement</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.Description">Use system Media Session to improve experience when you are using Spotify desktop client. (Make sure you have enabled "Show desktop overlay when using media keys" in Spotify settings)</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.PlaybackUpdateEnhancement">Enable playback update enhancement</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.PlaybackUpdateEnhancement.Description">Superb track switching experience powered by Lyricify Intelligent Engine</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.TimelineCorrection">Enable timeline correction</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.TimelineCorrection.Description">Improve timeline precision</system:String>
<system:String x:Key="String.Page.Settings.Advanced.MediaSession.EnableEnhancement.TimelineCorrection.CrossfadeNotice">Timeline correction might not work properly when crossfade is enabled</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableLyricsPreload">Enable lyrics preload</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableLyricsPreload.Description">Preload lyrics can make lyrics loading imperceptible at track switching</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableImagePreload">Enable image preload</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableImagePreload.Description">Preload images can make album artwork loading imperceptible at track switching</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableRemoveLikedSongsConfirmation">Enable dislike confirmation</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableRemoveLikedSongsConfirmation.Description">Request for confirmation before removing songs from your library (Liked Songs)</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableChineseConversion">Enable Chinese conversion</system:String>
<system:String x:Key="String.Page.Settings.Advanced.EnableChineseConversion.Description">Enable Chinese conversion for Spotify contents</system:String>
<system:String x:Key="String.Page.Settings.Advanced.DeviceLatency">Device latency</system:String>
<system:String x:Key="String.Page.Settings.Advanced.DeviceLatency.Description">In milliseconds. This argument is designed for Bluetooth playback devices' latency, DO NOT use this for lyrics offset. Refresh lyrics to take effect</system:String>
<system:String x:Key="String.Page.Settings.Advanced.DeviceLatency.Button.Configure">Configure</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Manage.Hotkey">Hotkey Management</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Manage.Hotkey.Description">Open Hotkey Manager to manage global hotkeys</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Manage.Hotkey.Button.Open">Open</system:String>
<system:String x:Key="String.Page.Settings.Advanced.ApiTooManyRequestErrorWaitingBar">Spotify API waiting bar</system:String>
<system:String x:Key="String.Page.Settings.Advanced.ApiTooManyRequestErrorWaitingBar.Description">Show the bottom progress bar at track switching's 429 errors</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage">Welcome message</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.Description">Welcome message at Lyricify startup</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.CurrentWelcomeMessage">Current welcome message</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.CustomizeWelcomeMessage">Customize your welcome message</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.CustomizeWelcomeMessage.Description">Enter {NAME} to type your username (Click to insert {NAME})</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.CustomizeWelcomeMessage.PlaceHolder">Type the message here</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.ComboBox.Standard">Standard welcome</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.ComboBox.Supreme">Supreme welcome</system:String>
<system:String x:Key="String.Page.Settings.Advanced.WelcomeMessage.ComboBox.Custom">Custom message</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates">Updates</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.Description">Settings about Lyricify updates</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.Button.Check">Check Updates</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.StoreOptions.Notify">Notify</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.StoreOptions.Download">Download and Install Later</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.StoreOptions.DownloadAndInstall">Download and Install Immediately</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.ForceUpdate">Auto update</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.ForceUpdate.Description">Automatically detect and install new versions of Lyricify</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.UpdateSource">Update source</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.UpdateSource.Description">Select update download source (select GitHub Proxy if you are in Chinese Mainland and you don't have a proxy service, otherwise select GitHub)</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.UpdateSource.Sources.GitHub">GitHub</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.UpdateSource.Sources.GitHubProxy">GitHub Proxy (ghproxy.com)</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Updates.MicrosoftStore.Description">Updates are managed by Microsoft Store.</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.ProxyPresetForLyricifyServer">Lyricify server proxy preset</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.ProxyPresetForLyricifyServer.Description">Disable proxy for Lyricify server requests might improve the experience if you are in Chinese mainland</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.ProxyPresetForLyricifyServer.ComboBox.Enable">Enable proxy</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.ProxyPresetForLyricifyServer.ComboBox.Auto">Automatic</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.ProxyPresetForLyricifyServer.ComboBox.Disable">Disable proxy</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.DisableProxyForLyricifyServer">Disable proxy for Lyricify server requests</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.DisableProxyForLyricifyServer.Description">Disable proxy for those requests might improve experience if you are in China mainland</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.EnableManualProxySettings">Enable manual proxy settings</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.EnableManualProxySettings.Description">This will override your system proxy settings in Lyricify</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Host">Host</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Port">Port</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Username">Username</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Password">Password</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Test">Test</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Test.ProxyOverrideEnabled">Proxy override not enabled, the test result could be different. Still test?</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Test.Status">Network Status</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Test.Result.Connected">Connected</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Test.Result.Disconnected">Disconnected</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Button.Apply">Apply</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Proxy.Notice">Some functions might need a restart to take effect.</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile">Settings file</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.Description">Directly edit settings file (Advanced)</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.Button.Open">Open</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.Button.Load">Load</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.Button.ResetAll">Reset All</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.ResetAll.Ask">Are you sure to reset all your settings?</system:String>
<system:String x:Key="String.Page.Settings.Advanced.SettingsFile.ResetAll.Done">A manual restart of Lyricify might be needed.</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Log">Log</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Log.Description">Log operations</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Log.Button.Open">Open</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Log.Button.OpenLyrics">Open Lyrics Log</system:String>
<system:String x:Key="String.Page.Settings.Advanced.Log.Button.OpenFolder">Open Folder</system:String>
<!-- Page Horizontal Notice -->
<system:String x:Key="String.Page.Mobile.HorizontalNotice.Message">Current page does not support Mobile View, please resize your window to exit Mobile View</system:String>
<!--
Menu
-->
<!-- MainWindow -->
<!-- Three Dot Main Menu -->
<system:String x:Key="String.Menu.MainWindow.Main.View">View</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.Topmost">Topmost</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.MinimizeToTray">Minimize to Tray</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.Zoom.In">Zoom In</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.Zoom.Out">Zoom Out</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.Zoom.Reset">Reset Zoom</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.FontSize.In">Increase Font Size</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.FontSize.Out">Decrease Font Size</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.View.FontSize.Reset">Reset Font Size</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.RefreshLyrics">Refresh Lyrics</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Translation">Translation</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.DesktopLyrics">Desktop Lyrics</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.DynamicLyricsIsland">Dynamic Lyrics Island</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.AppleMusicLyrics">Apple Music Lyrics</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.AppleMusicLyricsTraditional">Apple Music Lyrics (Traditional)</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.LyricifyFullscreen">Lyricify Fullscreen</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.MobileUIFullscreen">Mobile UI Fullscreen</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Settings">Settings</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced">Advanced</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.BackupCenter">Backup & Automation Center</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.CustomConfigurationManager">Custom Configuration Manager</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.DeviceLatencyManager">Device Latency Manager</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.HotkeyManager">Hotkey Manager</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.LocalFilesManager">Local Files Manager</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.LoginToSpotifyWeb">Login to Spotify Web</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.RefreshPlaybackInfo">Refresh Spotify Playback Info</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.CopyRefreshToken">Copy Refresh Token</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.MediaSessionStatus">Media Session Status</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.NetworkDiagnose">Network Diagnose</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.Advanced.ChangeLyricifyPassword">Change Lyricify Account Password</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About">About & Help</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.About">About</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.Follow">Follow</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.Follow.NeteaseCloudMusic">Netease Cloud Music</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.Follow.Bilibili">Bilibili</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.Follow.OneRepublic">OneRepublic</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetHelp">Get help</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetHelp.TelegramGroup">Telegram Group</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetHelp.QQGroup">QQ Group</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetHelp.QQGroup.UserGroup">User Group {0}: {1}</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetNewReleases">Get new releases</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetNewReleases.TelegramChannel">Telegram Channel</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetNewReleases.LyricifyOfficialWebsite">Lyricify Official Website</system:String>
<system:String x:Key="String.Menu.MainWindow.Main.About.GetNewReleases.LanzousCloud">Lanzous Cloud</system:String>
<!-- Main Lyrics Line -->
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.Copy">Copy</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.CopyTranslation">Copy translation</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.CopyLineWithTranslation">Copy line with translation</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.CopyAllLines">Copy all lines</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.CopyAllTranslations">Copy all translations</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.CopyAllLinesWithTranslation">Copy all lines with translation</system:String>
<system:String x:Key="String.Menu.MainWindow.MainLyricsLine.Menu.Share">Share</system:String>
<!-- Pinned Item -->
<system:String x:Key="String.Menu.MainWindow.PinnedItem.Rename">Rename</system:String>
<system:String x:Key="String.Menu.MainWindow.PinnedItem.MoveUp">Move Up</system:String>
<system:String x:Key="String.Menu.MainWindow.PinnedItem.MoveDown">Move Down</system:String>
<system:String x:Key="String.Menu.MainWindow.PinnedItem.Remove">Remove</system:String>
<!-- Dynamic Lyrics Island -->
<system:String x:Key="String.Menu.DynamicLyricsIsland.Notice">Double click to hide for 2s</system:String>
<system:String x:Key="String.Menu.DynamicLyricsIsland.Center">Align Center</system:String>
<system:String x:Key="String.Menu.DynamicLyricsIsland.Close">Close</system:String>
<!-- Desktop Lyrics -->
<system:String x:Key="String.Menu.DesktopLyrics.DuoLineMode">Duo-Line Mode</system:String>
<system:String x:Key="String.Menu.DesktopLyrics.LyricsAlign">Lyrics Align</system:String>
<!-- Apple Music Lyrics -->
<system:String x:Key="String.Menu.AppleMusicLyrics.Zoom.In">Zoom In</system:String>
<system:String x:Key="String.Menu.AppleMusicLyrics.Zoom.Out">Zoom Out</system:String>
<system:String x:Key="String.Menu.AppleMusicLyrics.Zoom.Reset">Reset Zoom</system:String>
<system:String x:Key="String.Menu.AppleMusicLyrics.Blur">Blur Lyrics</system:String>
<system:String x:Key="String.Menu.AppleMusicLyrics.BoldText">Bold Text</system:String>
<system:String x:Key="String.Menu.AppleMusicLyrics.Translation">Chinese Translation</system:String>
<!-- Notification Icon -->
<system:String x:Key="String.Menu.NotificationIcon.UnlockDesktopLyrics">Unlock Desktop Lyrics</system:String>
<system:String x:Key="String.Menu.NotificationIcon.MinimizeToTray">Minimize to tray</system:String>
<system:String x:Key="String.Menu.NotificationIcon.Restart">Restart</system:String>
<system:String x:Key="String.Menu.NotificationIcon.Exit">Exit</system:String>
<!-- Pages -->
<system:String x:Key="String.Menu.Pages.CopyAlbumInfo">Copy album info</system:String>
<system:String x:Key="String.Menu.Pages.CopyAlbumUPC">Copy album UPC</system:String>
<system:String x:Key="String.Menu.Pages.CheckAlbumAvailability">Check album availability</system:String>
<system:String x:Key="String.Menu.Pages.CheckPlaylistAvailability">Check playlist availability</system:String>
<system:String x:Key="String.Menu.Pages.CopyArtistInfo">Copy artist info</system:String>
<system:String x:Key="String.Menu.Pages.CopyPlaylistInfo">Copy playlist info</system:String>
<system:String x:Key="String.Menu.Pages.CopyUserInfo">Copy user info</system:String>
<system:String x:Key="String.Menu.Pages.CopyTrackList">Copy track list</system:String>
<system:String x:Key="String.Menu.Pages.CopyTopTracks">Copy top tracks</system:String>
<system:String x:Key="String.Menu.Pages.Pin">Pin to quick access</system:String>
<system:String x:Key="String.Menu.Pages.Unpin">Unpin from quick access</system:String>
<system:String x:Key="String.Menu.Pages.CopySpotifyURI">Copy Spotify URI</system:String>
<system:String x:Key="String.Menu.Pages.CopySpotifyLink">Copy Spotify link</system:String>
<system:String x:Key="String.Menu.Pages.ShowInSpotify">Show in Spotify</system:String>
<system:String x:Key="String.Menu.Pages.SaveArtwork">Save artwork</system:String>
<!-- Track -->
<system:String x:Key="String.Menu.Track.CopyTrackInfo">Copy track info</system:String>
<system:String x:Key="String.Menu.Track.CopyTrackISRC">Copy track ISRC</system:String>
<system:String x:Key="String.Menu.Track.AddToQueue">Add to queue</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer">Sleep timer</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.TurnOffTimer">Turn off timer</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.StopAudioIn">Stop audio in:</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.PlayFullTrack">Play full track then stop</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.WaitPlayFullTrack">Waiting for the song to finish playing</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.1">1 minute</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.5">5 minutes</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.10">10 minutes</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.15">15 minutes</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.30">30 minutes</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.45">45 minutes</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Time.60">1 hour</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Hour">{0} hour left</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Hours">{0} hours left</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Minute">{0} minute left</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Minutes">{0} minutes left</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Second">{0} second left</system:String>
<system:String x:Key="String.Menu.Track.SleepTimer.Left.Seconds">{0} seconds left</system:String>
<system:String x:Key="String.Menu.Track.GoToPlaylist">Go to playlist</system:String>
<system:String x:Key="String.Menu.Track.GoToAlbum">Go to album</system:String>
<system:String x:Key="String.Menu.Track.GoToArtist">Go to artist</system:String>
<system:String x:Key="String.Menu.Track.ShowCredits">Show credits</system:String>
<system:String x:Key="String.Menu.Track.OpenTrackManagement">Open Track Management</system:String>
<system:String x:Key="String.Menu.Track.CopySpotifyURI">Copy Spotify URI</system:String>
<system:String x:Key="String.Menu.Track.CopySpotifyLink">Copy Spotify link</system:String>
<system:String x:Key="String.Menu.Track.ShowInSpotify">Show in Spotify</system:String>
<!-- Tools -->
<system:String x:Key="String.Tools.Page.RefreshButton">RELOAD</system:String>
<system:String x:Key="String.Tools.Page.LoadingAPILimitError.Notice">Oops, you have reached Spotify's API rate limit, try to reload later.</system:String>
<system:String x:Key="String.Tools.Page.LoadingAPILimitError.Notice.Network">Oops, something's wrong. Please check your Internet connection.</system:String>
<system:String x:Key="String.Tools.Page.LoadingAPILimitError.Notice.Internal">Oops, something's wrong. Please ask the developer for help.</system:String>
<system:String x:Key="String.Tools.FollowButton.Follow">FOLLOW</system:String>
<system:String x:Key="String.Tools.FollowButton.Following">FOLLOWING</system:String>
<system:String x:Key="String.Tools.HeartButton.AskRemove">Are you sure to remove this from your library?</system:String>
<system:String x:Key="String.Tools.AdvancedItemsPanel.SeeMore">SEE MORE</system:String>
<system:String x:Key="String.Tools.AdvancedItemsPanel.SeeLess">SEE LESS</system:String>
<system:String x:Key="String.Tools.AdvancedItemsPanel.OnlyVisibleToYou">Only visible to you</system:String>
<system:String x:Key="String.Tools.DisplayItem.Artist">Artist</system:String>
<system:String x:Key="String.Tools.DisplayItem.By">By {0}</system:String>
<!--
Windows
-->
<!-- Welcome -->
<system:String x:Key="String.Windows.Welcome">Welcome to Lyricify</system:String>
<system:String x:Key="String.Windows.Welcome.Intro.MoreThanLyrics">More than lyrics</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Title">Let's get started</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Agreement">Continue means you agree with Lyricify's user agreements</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Button.Continue">Continue</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Title">Now it's time to finish Spotify authorization in your web browser</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.AuthFinish">Spotify authorization finished, please wait for a few more seconds</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Trouble">Having trouble logging in?</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Trouble.CopyAuthLink">Web browser is not opened:</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Trouble.CopyAuthLink.Help">Copy Spotify Authorization Link</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Trouble.PasteAuthLink">Succeeded authorization not detected:</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Trouble.PasteAuthLink.Help">Enter Authorization Callback Link Manually</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.CustomClient.Configure">Configure Custom API Client</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.CustomClient.Configured">Custom API Client Configured</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.ProxySettings">Proxy Settings</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Button.Cancel">Cancel</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Cancel.Title">Lyricify is about to close</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Cancel.Button.Retry">Retry</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Cancel.Button.Close">Close</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Error.Title">Something's wrong, here's more about the error</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Error.Button.Retry">Retry</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Error.Button.Close">Close</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.Title" xml:space="preserve">Successfully connected to Spotify! </system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.Explore">Now sit back and relax, let's explore Lyricify.</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.WelcomeBack">Welcome back to Lyricify!</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.UserNumber">You are No. {0:N0} Lyricify user</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.FailedToRegister">Failed to register on Lyricify server. Server side functions might be limited. A re-login might solve this issue.</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.Button.Go">Go</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.PlayNotice">We have noticed that you are not playing songs on Spotify. Since Lyricify is a lyrics app, not a music player, you need to play songs on Spotify in order to view lyrics in Lyricify.</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Success.PlayNotice.Button.Continue">Continue</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Button.Continue">Continue</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Ask.Title">Since you are using Custom API Client, it is recommended to authorize public API client in order to use Lyricify under extreme conditions</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Ask.Skip">Skip this step (not recommended)</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Ask.Skip.Ask">Are you sure to skip this step? It is highly recommended to authorize public API client in order to use Lyricify under extreme conditions.</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Auth.Title">Finish Spotify authorization in your web browser, just like what you have just did</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Auth.Skip">Skip</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Error.Title">Something's wrong, but you can still use Lyricify, just sit back and relax</system:String>
<system:String x:Key="String.Windows.Welcome.Auth.Public.Success.Title">Successfully connected to public Spotify API client. Let's go Lyricify!</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Preset">Preset</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Preset.ComboBox.Default">Default</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Preset.ComboBox.Quality">Best Quality</system:String>
<system:String x:Key="String.Windows.Welcome.Settings.Preset.ComboBox.Performance">Best Performance</system:String>
<!-- Font Selector -->
<system:String x:Key="String.Windows.FontSelector">Font Selector</system:String>
<system:String x:Key="String.Windows.FontSelector.InstalledFonts">Installed Fonts</system:String>
<system:String x:Key="String.Windows.FontSelector.SetFontFamily">Set Font Family</system:String>
<system:String x:Key="String.Windows.FontSelector.SetFontFamily.SearchBar.PlaceHolder">Filter fonts</system:String>
<system:String x:Key="String.Windows.FontSelector.AddToList">Add to list</system:String>
<system:String x:Key="String.Windows.FontSelector.RemoveFromList">Remove from list</system:String>
<system:String x:Key="String.Windows.FontSelector.MoveUp">Move up</system:String>
<system:String x:Key="String.Windows.FontSelector.MoveDown">Move down</system:String>
<system:String x:Key="String.Windows.FontSelector.Preview">Preview</system:String>
<system:String x:Key="String.Windows.FontSelector.TypeHereToPreview">Type here to preview</system:String>
<system:String x:Key="String.Windows.FontSelector.OK">OK</system:String>
<system:String x:Key="String.Windows.FontSelector.Cancel">Cancel</system:String>
<!-- Share Lyrics -->
<system:String x:Key="String.Windows.ShareLyrics">Share Lyrics</system:String>
<system:String x:Key="String.Page.ShareLyrics.SelectLyrics">Select lyrics</system:String>
<system:String x:Key="String.Page.ShareLyrics.SelectLyrics.SelectCount">{0} line selected</system:String>
<system:String x:Key="String.Page.ShareLyrics.SelectLyrics.SelectCount.Plural">{0} lines selected</system:String>
<system:String x:Key="String.Page.ShareLyrics.SelectLyrics.Button.Continue">Continue</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share">Share</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.ClickForMore">Click for more</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.ToggleSwitch.ShowTranslation">Show translation</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.ToggleSwitch.ColorfulLogo">Colorful logo</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Apple.ToggleSwitch.ShowTranslation">Show Translation</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Apple.ToggleSwitch.ShowBackgroundVocals">Show Background Vocals</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Apple.ToggleSwitch.ColorfulLogo">Colorful Logo</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Apple.ToggleSwitch.BoldText">Bold Text</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Button.Copy">Copy</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Button.Rendering">Rendering</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Button.Save">Save</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.FileDialog.Filter">JPEG Image (*.jpg)|*.jpg</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Message.Failed">Failed to save.</system:String>
<system:String x:Key="String.Page.ShareLyrics.Share.Message.RenderFailed">Something's wrong, failed to render.</system:String>
<!-- Configure Web Window -->
<system:String x:Key="String.Window.ConfigureWeb.Notice1">Login to Spotify here to enable playback inside Lyricify</system:String>
<system:String x:Key="String.Window.ConfigureWeb.Notice2">If the Spotify Web page is displayed properly, then Lyricify should be able to play audio. (A restart of Lyricify might be needed)</system:String>
<system:String x:Key="String.Window.ConfigureWeb.ToggleSwitch">Enable Internal Player</system:String>
<!-- Custom Configuration Manager -->
<system:String x:Key="String.Window.CustomConfigurationManager">Custom Configuration Manager</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Description">Load ideas from your creations, or even customizations from other users.</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Bar.Name">Name</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Bar.Description">Description</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Bar.File">File</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Bar.Path">Path</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Bar.IsEnabled">IsEnabled</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.AddConfiguration">Add Configuration</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.AddConfigurationSubscription">Add Configuration Subscription</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.AddConfigurationSubscription.InputNotice">Subscription URL</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.AddConfigurationSubscription.InvalidUrl">Invalid URL</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.ReloadAllConfiguration">Reload All Configurations</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.RemoveAllConfigurations">Remove All Configurations</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.HelpDocument">Help Document</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Button.Close">Close</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Message.AskRemoveOne">Are you sure to remove this configuration?</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Message.AskRemoveAll">Are you sure to remove all configurations?</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.AddDialogTitle">Select a custom configuration file</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.AddDialogTitle.Filter">Xaml Document (*.xaml)|*.xaml</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.Rename">Rename</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.EditDescription">Edit description</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.OpenFile">Open file</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.OpenSubscriptionUrl">Open subscription URL</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.CopySubscriptionUrl">Copy subscription URL</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.Reload">Reload</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.Remove">Remove</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.MoveUp">Move up</system:String>
<system:String x:Key="String.Window.CustomConfigurationManager.Item.Menu.MoveDown">Move down</system:String>
<!-- Device Latency Manager -->
<system:String x:Key="String.Window.DeviceLatencyManager">Device Latency Manager</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Description">Set individual device latencies for each playback device.</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Description.Additional">This is designed for playback devices' latency (such as Bluetooth devices), do not use this for lyrics offset.</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DefaultLatency">Default latency</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DefaultLatency.Description">A whole number in milliseconds, the default value is 0.</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DeviceList">Device List</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DeviceItem.ComboBoxLatencyOption.Default">Default</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DeviceItem.ComboBoxLatencyOption.Custom">Custom</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DeviceItem.Menu.Remove">Remove</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DeviceItem.Icon.CurrentDevice.ToolTip">Current playback device</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.CurrentLatency">Current Latency:</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.CurrentLatency.Value">{0} ms</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.DisconnectedOrDisabled">Disconnected or disabled</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Button.RefreshDeviceList">Refresh Device List</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Button.RefreshLyrics">Refresh Lyrics</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Button.Close">Close</system:String>
<system:String x:Key="String.Window.DeviceLatencyManager.Button.Close.Notice">All settings will be saved automatically.</system:String>
<!-- Hotkey Manager -->
<system:String x:Key="String.Window.HotkeyManager">Hotkey Manager</system:String>
<system:String x:Key="String.Window.HotkeyManager.Description">You can manage global hotkeys here. (Use Backspace to clear a shortcut)</system:String>