-
-
Notifications
You must be signed in to change notification settings - Fork 486
Expand file tree
/
Copy pathen.json
More file actions
1521 lines (1521 loc) · 78.2 KB
/
Copy pathen.json
File metadata and controls
1521 lines (1521 loc) · 78.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"action": {
"addToFavorites": "Add to $t(entity.favorite, {\"count\": 2})",
"addToPlaylist": "Add to $t(entity.playlist, {\"count\": 1})",
"addOrRemoveFromSelection": "Add or remove from selection",
"selectRangeOfItems": "Select a range of items",
"clearQueue": "Clear queue",
"goToCurrent": "Go to current item",
"collapseAllFolders": "Collapse all folders",
"expandAllFolders": "Expand all folders",
"createPlaylist": "Create $t(entity.playlist, {\"count\": 1})",
"createPlaylistFromQueue": "Create $t(entity.playlist, {\"count\": 1}) from queue",
"createRadioStation": "Create $t(entity.radioStation, {\"count\": 1})",
"deletePlaylist": "Delete $t(entity.playlist, {\"count\": 1})",
"deleteRadioStation": "Delete $t(entity.radioStation, {\"count\": 1})",
"selectAll": "Select all",
"deselectAll": "Deselect all",
"downloadStarted": "Started download of {{count}} items",
"editPlaylist": "Edit $t(entity.playlist, {\"count\": 1})",
"goToPage": "Go to page",
"moveToNext": "Move to next",
"moveToBottom": "Move to bottom",
"moveToTop": "Move to top",
"moveUp": "Move up",
"moveDown": "Move down",
"holdToMoveToTop": "Hold to move to top",
"holdToMoveToBottom": "Hold to move to bottom",
"moveItems": "Move items",
"shuffle": "Shuffle",
"shuffleAll": "Shuffle all",
"shuffleSelected": "Shuffle selected",
"refresh": "$t(common.refresh)",
"removeFromFavorites": "Remove from $t(entity.favorite, {\"count\": 2})",
"removeFromPlaylist": "Remove from $t(entity.playlist, {\"count\": 1})",
"removeFromQueue": "Remove from queue",
"setRating": "Set rating",
"toggleSmartPlaylistEditor": "Toggle $t(entity.smartPlaylist) editor",
"viewPlaylists": "View $t(entity.playlist, {\"count\": 2})",
"viewMore": "View more",
"openApplicationDirectory": "Open application directory",
"openIn": {
"lastfm": "Open in Last.fm",
"listenbrainz": "Open in ListenBrainz",
"musicbrainz": "Open in MusicBrainz",
"qobuz": "Open in Qobuz",
"spotify": "Open in Spotify"
}
},
"common": {
"countSelected": "{{count}} selected",
"explicitStatus": "Explicit status",
"action_one": "Action",
"action_other": "Actions",
"add": "Add",
"additionalParticipants": "Additional participants",
"newVersion": "A new version has been installed ({{version}})",
"viewReleaseNotes": "View release notes",
"albumGain": "Album gain",
"albumPeak": "Album peak",
"areYouSure": "Are you sure?",
"ascending": "Ascending",
"back": "Back",
"backward": "Backward",
"biography": "Biography",
"bitDepth": "Bit depth",
"bitrate": "Bitrate",
"bpm": "BPM",
"cancel": "Cancel",
"center": "Center",
"channel_one": "Channel",
"channel_other": "Channels",
"clear": "Clear",
"close": "Close",
"codec": "Codec",
"collapse": "Collapse",
"comingSoon": "Coming soon…",
"configure": "Configure",
"confirm": "Confirm",
"create": "Create",
"currentSong": "Current $t(entity.track, {\"count\": 1})",
"decrease": "Decrease",
"delete": "Delete",
"descending": "Descending",
"description": "Description",
"disable": "Disable",
"disc": "Disc",
"dismiss": "Dismiss",
"doNotShowAgain": "Do not show this again",
"duration": "Duration",
"view": "View",
"edit": "Edit",
"enable": "Enable",
"expand": "Expand",
"example": "Example",
"externalLinks": "External links",
"openFolder": "Open folder",
"faster": "Faster",
"favorite": "Favorite",
"filter_one": "Filter",
"filter_other": "Filters",
"filters": "Filters",
"filter_single": "Single",
"filter_multiple": "Multi",
"forceRestartRequired": "Restart to apply changes… close the notification to restart",
"forward": "Forward",
"gap": "Gap",
"home": "Home",
"increase": "Increase",
"left": "Left",
"limit": "Limit",
"manage": "Manage",
"maximize": "Maximize",
"menu": "Menu",
"minimize": "Minimize",
"modified": "Modified",
"mbid": "MusicBrainz ID",
"grouping": "Grouping",
"mood": "Mood",
"name": "Name",
"no": "No",
"none": "None",
"noResultsFromQuery": "The query returned no results",
"numberOfResults": "{{numberOfResults}} results",
"noFilters": "No filters configured",
"note": "Note",
"ok": "Ok",
"owner": "Owner",
"path": "Path",
"playerMustBePaused": "Player must be paused",
"preview": "Preview",
"previousSong": "Previous $t(entity.track, {\"count\": 1})",
"private": "Private",
"public": "Public",
"quit": "Quit",
"random": "Random",
"rating": "Rating",
"retry": "Retry",
"recordLabel": "Record label",
"releaseType": "Release type",
"refresh": "Refresh",
"reload": "Reload",
"rename": "Rename",
"reset": "Reset",
"resetToDefault": "Reset to default",
"restartRequired": "Restart required",
"right": "Right",
"sampleRate": "Sample rate",
"save": "Save",
"saveAndClose": "Save and close",
"saveAndReplace": "Save and replace",
"saveAs": "Save as",
"search": "Search",
"setting_one": "Setting",
"setting_other": "Settings",
"slower": "Slower",
"share": "Share",
"size": "Size",
"sort": "Sort",
"sortOrder": "Order",
"tags": "Tags",
"title": "Title",
"trackNumber": "Track",
"trackGain": "Track gain",
"trackPeak": "Track peak",
"translation": "Translation",
"undo": "Undo",
"unknown": "Unknown",
"version": "Version",
"year": "Year",
"yes": "Yes",
"explicit": "Explicit",
"clean": "Clean",
"gridRows": "Grid rows",
"tableColumns": "Table columns",
"itemsMore": "{{count}} more",
"lastScan": "Last scan {{date}}",
"newVersionAvailable": "A new version is available",
"scanFolderCount": "{{count}} folders",
"scanItemCount": "{{count}} items",
"scanningLibrary": "Scanning library…"
},
"entity": {
"album_one": "Album",
"album_other": "Albums",
"albumArtist_one": "Album Artist",
"albumArtist_other": "Album Artists",
"albumArtistCount_one": "{{count}} album artist",
"albumArtistCount_other": "{{count}} album artists",
"albumWithCount_one": "{{count}} album",
"albumWithCount_other": "{{count}} albums",
"radioStation_one": "Radio Station",
"radioStation_other": "Radio Stations",
"radioStationWithCount_one": "{{count}} radio station",
"radioStationWithCount_other": "{{count}} radio stations",
"artist_one": "Artist",
"artist_other": "Artists",
"artistWithCount_one": "{{count}} artist",
"artistWithCount_other": "{{count}} artists",
"favorite_one": "Favorite",
"favorite_other": "Favorites",
"folder_one": "Folder",
"folder_other": "Folders",
"folderWithCount_one": "{{count}} folder",
"folderWithCount_other": "{{count}} folders",
"genre_one": "Genre",
"genre_other": "Genres",
"genreWithCount_one": "{{count}} genre",
"genreWithCount_other": "{{count}} genres",
"playlist_one": "Playlist",
"playlist_other": "Playlists",
"play_one": "{{count}} play",
"play_other": "{{count}} plays",
"playlistWithCount_one": "{{count}} playlist",
"playlistWithCount_other": "{{count}} playlists",
"smartPlaylist": "Smart $t(entity.playlist, {\"count\": 1})",
"track_one": "Track",
"track_other": "Tracks",
"song_one": "Song",
"song_other": "Songs",
"trackWithCount_one": "{{count}} track",
"trackWithCount_other": "{{count}} tracks"
},
"error": {
"apiRouteError": "Unable to route request",
"audioDeviceFetchError": "An error occurred when trying to get audio devices",
"authenticationFailed": "Authentication failed",
"badAlbum": "You are seeing this page because this song is not part of an album. You are most likely seeing this issue if you have a song at the top level of your music folder. Jellyfin only groups tracks if they are in a folder",
"badValue": "Invalid option \"{{value}}\". This value no longer exists",
"credentialsRequired": "Credentials required",
"endpointNotImplementedError": "Endpoint {{endpoint}} is not implemented for {{serverType}}",
"genericError": "An error occurred",
"invalidJson": "Invalid JSON",
"invalidServer": "Invalid server",
"localFontAccessDenied": "Access denied to local fonts",
"loginRateError": "Too many login attempts, please try again in a few seconds",
"mpvRequired": "MPV required",
"multipleServerSaveQueueError": "The play queue has one or more songs which are not from the current server. This is not supported",
"networkError": "A network error occurred",
"noNetwork": "Server unavailable",
"noNetworkDescription": "Couldn't connect to this server",
"notificationDenied": "Permissions for notifications were denied. This setting has no effect",
"openError": "Could not open file",
"playbackError": "An error occurred when trying to play the media",
"playbackPausedDueToError": "Playback was paused due to an error",
"remoteDisableError": "An error occurred when trying to $t(common.disable) the remote server",
"remoteEnableError": "An error occurred when trying to $t(common.enable) the remote server",
"remotePortError": "An error occurred when trying to set the remote server port",
"remotePortWarning": "Restart the server to apply the new port",
"saveQueueFailed": "Failed to save queue",
"serverLockSingleServer": "Only one server is allowed when server is locked",
"serverNotSelectedError": "No server selected",
"serverRequired": "Server required",
"sessionExpiredError": "Your session has expired",
"systemFontError": "An error occurred when trying to get system fonts",
"settingsSyncError": "Discrepancies were found between the settings in the renderer and the main process. Restart the application to apply the changes"
},
"filter": {
"album": "$t(entity.album, {\"count\": 1})",
"albumArtist": "$t(entity.albumArtist, {\"count\": 1})",
"matchAnd": "And",
"matchOr": "Or",
"albumCount": "$t(entity.album, {\"count\": 2}) count",
"artist": "$t(entity.artist, {\"count\": 1})",
"biography": "Biography",
"bitrate": "Bitrate",
"bpm": "BPM",
"channels": "$t(common.channel, {\"count\": 2})",
"comment": "Comment",
"communityRating": "Community rating",
"criticRating": "Critic rating",
"dateAdded": "Date added",
"disc": "Disc",
"duration": "Duration",
"favorited": "Favorited",
"fromYear": "From year",
"genre": "$t(entity.genre, {\"count\": 1})",
"id": "ID",
"isCompilation": "Is compilation",
"isFavorited": "Is favorited",
"isPublic": "Is public",
"isRated": "Is rated",
"isRecentlyPlayed": "Is recently played",
"lastPlayed": "Last played",
"mostPlayed": "Most played",
"name": "Name",
"note": "Note",
"owner": "$t(common.owner)",
"path": "Path",
"playCount": "Play count",
"random": "Random",
"rating": "Rating",
"recentlyAdded": "Recently added",
"recentlyPlayed": "Recently played",
"recentlyUpdated": "Recently updated",
"releaseDate": "Release date",
"releaseYear": "Release year",
"search": "Search",
"songCount": "Song count",
"sortName": "Sort name",
"title": "Title",
"toYear": "To year",
"trackNumber": "Track",
"explicitStatus": "$t(common.explicitStatus)"
},
"datetime": {
"minuteShort": "m",
"secondShort": "s",
"hourShort": "h",
"dayShort": "d"
},
"filterOperator": {
"after": "Is after",
"afterDate": "Is after (date)",
"before": "Is before",
"beforeDate": "Is before (date)",
"contains": "Contains",
"endsWith": "Ends with",
"inPlaylist": "Is in",
"inTheLast": "Is in the last",
"inTheRange": "Is in the range",
"inTheRangeDate": "Is in the range (date)",
"is": "Is",
"isNot": "Is not",
"isMissing": "Is missing",
"isPresent": "Is present",
"isGreaterThan": "Is greater than",
"isLessThan": "Is less than",
"matchesRegex": "Matches regex",
"notContains": "Does not contain",
"notInPlaylist": "Is not in",
"notInTheLast": "Is not in the last",
"startsWith": "Starts with"
},
"form": {
"addServer": {
"error_savePassword": "An error occurred when trying to save the password",
"ignoreCors": "Ignore CORS ($t(common.restartRequired))",
"ignoreSsl": "Ignore SSL ($t(common.restartRequired))",
"input_legacyAuthentication": "Enable legacy authentication",
"input_name": "Server Name",
"input_password": "Password",
"input_passwordNoSSO": "Reverse proxy (SSO) authentication is not supported. Only username/password authentication and Subsonic authentication are supported",
"input_preferInstantMix": "Prefer Instant Mix",
"input_preferInstantMixDescription": "Only use instant mix to get similar songs. Useful if you have plugins that modify this behavior",
"input_preferRemoteUrl": "Prefer Public URL",
"input_remoteUrl": "Public URL",
"input_remoteUrlPlaceholder": "Optional: public URL for external features",
"input_savePassword": "Save Password",
"input_url": "URL",
"input_username": "Username",
"success": "Server added successfully",
"title": "Add Server"
},
"largeFetchConfirmation": {
"title": "Add items to the queue",
"description": "This action will add all items in the current filtered view"
},
"addToPlaylist": {
"create": "Create $t(entity.playlist, {\"count\": 1}) {{playlist}}",
"input_playlists": "$t(entity.playlist, {\"count\": 2})",
"noneAdded": "No tracks were added to $t(entity.playlist, {\"count\": 1}) '{{playlist}}'",
"input_skipDuplicates": "Skip duplicates",
"searchOrCreate": "Search $t(entity.playlist, {\"count\": 2}) or type to create a new one",
"success": "Added $t(entity.trackWithCount, {\"count\": {{message}} }) to $t(entity.playlistWithCount, {\"count\": {{numOfPlaylists}} })",
"title": "Add to $t(entity.playlist, {\"count\": 1})"
},
"createPlaylist": {
"input_description": "$t(common.description)",
"input_name": "$t(common.name)",
"input_owner": "$t(common.owner)",
"input_public": "Public",
"success": "$t(entity.playlist, {\"count\": 1}) created successfully",
"title": "Create $t(entity.playlist, {\"count\": 1})"
},
"createPrefilledPlaylist": {
"title": "Create $t(entity.playlist, {\"count\": 1}) from selected songs"
},
"createRadioStation": {
"success": "Radio station created successfully",
"title": "Create radio station",
"input_homepageUrl": "Homepage URL",
"input_name": "Name",
"input_streamUrl": "Stream URL"
},
"editRadioStation": {
"success": "Radio station updated successfully"
},
"deletePlaylist": {
"input_confirm": "Type the name of the $t(entity.playlist, {\"count\": 1}) to confirm",
"success": "$t(entity.playlist, {\"count\": 1}) deleted successfully",
"title": "Delete $t(entity.playlist, {\"count\": 1})"
},
"editPlaylist": {
"publicJellyfinNote": "Jellyfin for some reason does not expose whether a playlist is public or not. If you wish for this to remain public, please have the following input selected",
"success": "$t(entity.playlist, {\"count\": 1}) updated successfully",
"title": "Edit $t(entity.playlist, {\"count\": 1})"
},
"lyricsExport": {
"export": "Export lyrics",
"input_synced": "Export synced lyrics",
"input_offset": "$t(setting.lyricOffset)"
},
"lyricSearch": {
"input_artist": "$t(entity.artist, {\"count\": 1})",
"input_name": "$t(common.name)",
"title": "Lyric search"
},
"queryEditor": {
"title": "Query editor",
"input_optionMatchAll": "Match all",
"input_optionMatchAny": "Match any",
"addRuleGroup": "Add rule group",
"removeRuleGroup": "Remove rule group",
"resetToDefault": "Reset to default",
"clearFilters": "Clear filters"
},
"saveQueue": {
"success": "Saved play queue to server"
},
"shareItem": {
"allowDownloading": "Allow downloading",
"copyToClipboard": "Copy to clipboard: Ctrl+C, enter",
"description": "Description",
"setExpiration": "Set expiration",
"success": "Share link copied to clipboard (or click here to open)",
"successMustClick": "Share created successfully. Click here to open",
"expireInvalid": "Expiration must be in the future",
"createFailed": "Failed to create share (is sharing enabled?)"
},
"shuffleAll": {
"title": "Play random",
"input_kind_albums": "Albums",
"input_kind_songs": "Songs",
"input_kind": "Random picks",
"input_limit_albums": "How many albums?",
"input_limit_songs": "How many songs?",
"input_genre": "$t(entity.genre, {\"count\": 1})",
"input_limit": "How many songs?",
"input_minYear": "From year",
"input_maxYear": "To year",
"input_played": "Play filter",
"input_played_optionAll": "All tracks",
"input_played_optionUnplayed": "Only unplayed tracks",
"input_played_optionPlayed": "Only played tracks"
},
"updateServer": {
"success": "Server updated successfully",
"title": "Update server"
},
"privateMode": {
"enabled": "Private mode enabled, playback status is now hidden from external integrations",
"disabled": "Private mode disabled, playback status is now visible to enabled external integrations",
"title": "Private Mode"
}
},
"page": {
"albumArtistDetail": {
"about": "About {{artist}}",
"appearsOn": "Appears on",
"favoriteSongs": "Favorite songs",
"groupingTypeAll": "All release types",
"groupingTypePrimary": "Primary release types",
"recentReleases": "Recent releases",
"viewDiscography": "View discography",
"relatedArtists": "Related $t(entity.artist, {\"count\": 2})",
"topSongs": "Top songs",
"topSongsCommunity": "Community",
"topSongsFrom": "Top songs from {{title}}",
"topSongsPersonal": "Personal",
"favoriteSongsFrom": "Favorite songs from {{title}}",
"viewAll": "View all",
"viewAllTracks": "View all $t(entity.track, {\"count\": 2})"
},
"albumArtistList": {
"title": "$t(entity.albumArtist, {\"count\": 2})"
},
"albumDetail": {
"moreFromArtist": "More from this $t(entity.artist, {\"count\": 1})",
"moreFromGeneric": "More from {{item}}",
"released": "Released"
},
"albumList": {
"artistAlbums": "Albums by {{artist}}",
"genreAlbums": "\"{{genre}}\" $t(entity.album, {\"count\": 2})",
"title": "$t(entity.album, {\"count\": 2})"
},
"radioList": {
"title": "Radio stations"
},
"releasenotes": {
"commitsSinceStable": "Commits since {{stable}}",
"noNewCommits": "No new commits in this range",
"noStableReleaseToCompare": "No stable release available to compare with"
},
"favorites": {
"title": "$t(entity.favorite, {\"count\": 2})"
},
"windowBar": {
"paused": "(Paused) ",
"privateMode": "(Private mode)"
},
"appMenu": {
"collapseSidebar": "Collapse sidebar",
"commandPalette": "Open command palette",
"expandSidebar": "Expand sidebar",
"goBack": "Go back",
"goForward": "Go forward",
"manageServers": "Manage servers",
"logout": "Logout",
"privateModeOff": "Turn off private mode",
"privateModeOn": "Turn on private mode",
"openBrowserDevtools": "Open browser devtools",
"quit": "$t(common.quit)",
"selectServer": "Select server",
"selectMusicFolder": "Select music folder",
"noMusicFolder": "No music folder selected",
"multipleMusicFolders": "{{count}} music folders selected",
"settings": "$t(common.setting, {\"count\": 2})",
"version": "Version {{version}}"
},
"manageServers": {
"title": "Manage servers",
"serverDetails": "Server details",
"url": "URL",
"username": "Username",
"editServerDetailsTooltip": "Edit server details",
"removeServer": "Remove server"
},
"contextMenu": {
"addFavorite": "$t(action.addToFavorites)",
"addLast": "$t(player.addLast)",
"addNext": "$t(player.addNext)",
"addToFavorites": "$t(action.addToFavorites)",
"addToPlaylist": "$t(action.addToPlaylist)",
"createPlaylist": "$t(action.createPlaylist)",
"deletePlaylist": "$t(action.deletePlaylist)",
"deselectAll": "$t(action.deselectAll)",
"download": "Download",
"moveItems": "$t(action.moveItems)",
"moveToNext": "$t(action.moveToNext)",
"moveToBottom": "$t(action.moveToBottom)",
"moveToTop": "$t(action.moveToTop)",
"numberSelected": "{{count}} selected",
"play": "$t(player.play)",
"playSimilarSongs": "$t(player.playSimilarSongs)",
"removeFromFavorites": "$t(action.removeFromFavorites)",
"removeFromPlaylist": "$t(action.removeFromPlaylist)",
"removeFromQueue": "$t(action.removeFromQueue)",
"setRating": "$t(action.setRating)",
"playShuffled": "$t(player.shuffle)",
"shareItem": "Share item",
"goTo": "Go to",
"goToAlbum": "Go to $t(entity.album, {\"count\": 1})",
"goToAlbumArtist": "Go to $t(entity.albumArtist, {\"count\": 1})",
"showDetails": "Get info",
"editMetadata": "Edit Metadata"
},
"fullscreenPlayer": {
"config": {
"dynamicBackground": "Dynamic background",
"dynamicImageBlur": "Image blur size",
"dynamicIsImage": "Enable background image",
"followCurrentLyric": "Follow current lyric",
"lyricFollowScrollAlignment": "Lyrics follow alignment",
"lyricAlignment": "Lyric alignment",
"lyricOffset": "Lyrics offset (ms)",
"lyricGap": "Lyric gap",
"lyricLineLeadTime": "Line lead time (ms)",
"lyricPaddingLeft": "Lyrics left padding (%)",
"lyricPaddingRight": "Lyrics right padding (%)",
"lyricSize": "Lyric size",
"lyricOpacityNonActive": "Non-active lyric opacity",
"lyricScaleNonActive": "Non-active lyric scale",
"opacity": "Opacity",
"showLyricMatch": "Show lyric match",
"showLyricProvider": "Show lyric provider",
"synchronized": "Synchronized",
"unsynchronized": "Unsynchronized",
"useImageAspectRatio": "Use image aspect ratio"
},
"lyrics": "Lyrics",
"lyricLayers": "Lyric layers",
"lyricLanguage": "Language",
"showPronunciation": "Pronunciation",
"showTranslation": "Translation",
"related": "Related",
"upNext": "Up next",
"visualizer": "Visualizer",
"noLyrics": "No lyrics found"
},
"genreList": {
"showAlbums": "Show $t(entity.genre, {\"count\": 1}) $t(entity.album, {\"count\": 2})",
"showTracks": "Show $t(entity.genre, {\"count\": 1}) $t(entity.track, {\"count\": 2})",
"title": "$t(entity.genre, {\"count\": 2})"
},
"folderList": {
"title": "$t(entity.folder, {\"count\": 2})"
},
"globalSearch": {
"commands": {
"goToPage": "Go to page",
"searchFor": "Search for {{query}}",
"serverCommands": "Server commands"
},
"title": "Commands"
},
"home": {
"explore": "Explore from your library",
"genres": "$t(entity.genre, {\"count\": 2})",
"mostPlayed": "Most Played",
"newlyAdded": "Newly added releases",
"recentlyPlayed": "Recently played",
"recentlyReleased": "Recently released",
"title": "$t(common.home)"
},
"itemDetail": {
"tagConfiguration": "Tag configuration",
"addTagConfig": "Add tag…",
"multiValueToggle": "Multi-value",
"autocompleteSource": "Autocomplete source",
"customValues": "Custom values",
"addCustomValue": "Add custom value…",
"serverSuggestions": "Server",
"copyPath": "Copy path to clipboard",
"copiedPath": "Path copied successfully",
"openFile": "Show track in file manager",
"fileNotWritable": "File is not accessible or not writable",
"triggerRescan": "Trigger library rescan after saving",
"addField": "Add field…",
"emptyFields": "Fields cannot be empty",
"tagsTab": "Tags",
"artworkTab": "Artwork",
"removeArtwork": "Remove Artwork",
"noArtwork": "No Artwork",
"multipleValues": "(Multiple Values)",
"multipleArtworks": "Multiple Artworks",
"noLocalSongs": "No songs with local file paths found",
"readPartialFailure": "Could not read metadata from {{count}} of {{total}} file(s)",
"writePartialFailure": "Failed to save {{count}} file(s)"
},
"playlist": {
"reorder": "Reordering only enabled when sorting by ID"
},
"playlistList": {
"title": "$t(entity.playlist, {\"count\": 2})"
},
"collections": {
"overrideExisting": "Override existing",
"saveAsCollection": "Save as collection"
},
"setting": {
"advanced": "Advanced",
"analytics": "Analytics",
"generalTab": "General",
"hotkeysTab": "Hotkeys",
"playbackTab": "Playback",
"windowTab": "Window",
"updates": "Update",
"cache": "Cache",
"application": "Application",
"queryBuilder": "Query Builder",
"theme": "Theme",
"controls": "Controls",
"sidebar": "Sidebar",
"remote": "Remote",
"exportImport": "Import/export",
"scrobble": "Scrobble",
"audio": "Audio",
"lyrics": "Lyrics",
"lyricsDisplay": "Lyrics Display",
"transcoding": "Transcoding",
"discord": "Discord",
"logger": "Logger",
"playerFilters": "Player Filters"
},
"sidebar": {
"albumArtists": "Album Artists",
"albums": "Albums",
"collections": "Collections",
"artists": "Artists",
"favorites": "Favorites",
"folders": "Folders",
"genres": "Genres",
"home": "Home",
"radio": "Radio Stations",
"myLibrary": "My Library",
"nowPlaying": "Now Playing",
"playlists": "Playlists",
"search": "Search",
"settings": "Settings",
"shared": "Shared Playlists",
"tracks": "Tracks"
},
"trackList": {
"artistTracks": "Tracks by {{artist}}",
"genreTracks": "\"{{genre}}\" $t(entity.track, {\"count\": 2})",
"title": "$t(entity.track, {\"count\": 2})"
}
},
"player": {
"addLast": "Last",
"addNext": "Next",
"addLastShuffled": "Last (shuffled)",
"addNextShuffled": "Next (shuffled)",
"albumRadio": "Album radio",
"artistRadio": "Artist radio",
"holdToShuffle": "Hold to shuffle",
"favorite": "Favorite",
"lyrics": "Lyrics",
"mute": "Mute",
"muted": "Muted",
"next": "Next",
"nextAlbum": "Alt+click for next album",
"play": "Play",
"playbackFetchCancel": "This is taking a while… close the notification to cancel",
"playbackFetchInProgress": "Loading songs…",
"playbackFetchNoResults": "No songs found",
"playbackSpeed": "Playback speed",
"playRandom": "Play random",
"playSimilarSongs": "Play similar songs",
"previous": "Previous",
"previousAlbum": "Alt+click for previous album",
"queue_clear": "Clear queue",
"queue_moveToBottom": "Move selected to bottom",
"queue_moveToTop": "Move selected to top",
"queue_remove": "Remove selected",
"repeat": "Repeat",
"repeat_all": "Repeat all",
"repeat_off": "Repeat disabled",
"repeat_one": "Repeat one",
"repeat_other": "",
"restoreQueueFromServer": "Restore queue from server",
"saveQueueToServer": "Save queue to server",
"shuffle": "Play (shuffled)",
"shuffle_off": "Shuffle disabled",
"skip": "Skip",
"skip_back": "Skip backwards",
"skip_forward": "Skip forwards",
"stop": "Stop",
"toggleFullscreenPlayer": "Toggle fullscreen player",
"trackRadio": "Track radio",
"unfavorite": "Unfavorite",
"pause": "Pause",
"viewQueue": "View queue",
"sleepTimer": "Sleep timer",
"sleepTimer_endOfSong": "End of current song",
"sleepTimer_endOfAlbum": "End of current album",
"sleepTimer_minutes": "{{count}} min",
"sleepTimer_hours": "{{count}} hr",
"sleepTimer_custom": "Custom",
"sleepTimer_off": "Off",
"sleepTimer_timeRemaining": "{{time}} remaining",
"sleepTimer_setCustom": "Set timer",
"sleepTimer_cancel": "Cancel timer",
"scrobbleForceSubmit": "Force scrobble"
},
"queryBuilder": {
"standardTags": "Standard tags",
"customTags": "Custom tags"
},
"releaseType": {
"primary": {
"album": "$t(entity.album, {\"count\": 1})",
"broadcast": "Broadcast",
"ep": "EP",
"other": "Other",
"single": "Single"
},
"secondary": {
"audiobook": "Audiobook",
"audioDrama": "Audio Drama",
"compilation": "Compilation",
"djMix": "DJ Mix",
"demo": "Demo",
"fieldRecording": "Field Recording",
"interview": "Interview",
"live": "Live",
"mixtape": "Mixtape",
"remix": "Remix",
"soundtrack": "Soundtrack",
"spokenWord": "Spoken Word"
}
},
"setting": {
"autoDJ": "Auto DJ",
"autoDJ_itemCount": "Item count",
"autoDJ_itemCount_description": "The number of items attempted to be added to the queue",
"autoDJ_timing": "Timing",
"autoDJ_timing_description": "The number of songs remaining in the queue before auto DJ is triggered",
"autoDJ_mode": "Mode",
"autoDJ_mode_albums": "Albums",
"autoDJ_mode_description": "Choose to add either songs or entire albums to the queue",
"autoDJ_mode_songs": "Songs",
"autoDJ_enabled": "Enable Auto DJ",
"autoDJ_albumStrategy": "Album selection mode",
"autoDJ_songStrategy": "Song selection mode",
"autoDJ_strategy_option_library_random": "Random",
"autoDJ_strategy_option_similar": "Similar",
"autoDJ_allowDuplicates": "Allow duplicates",
"autoDJ_allowDuplicates_description": "Allow songs or albums already in the queue to be added again by Auto DJ",
"autoDJ_onlySimilar": "Only similar",
"autoDJ_onlySimilar_description": "Only add items that are similar to the triggering song. The item count is treated as a maximum amount of items to add instead of being filled up to the limit by other sources",
"autosave": "Automatically save play queue",
"autosave_description": "Enable automatically saving the play queue to your server. This is only possible when using Navidrome/Subsonic, and you cannot have a mixed play queue.",
"autosaveCount": "Automatic play queue save frequency",
"autosaveCount_description": "How many track changes before the queue is saved. 1 (minimum) means every song change",
"accentColor_description": "Sets the accent color for the application",
"accentColor": "Accent color",
"useThemeAccentColor": "Use theme accent color",
"useThemeAccentColor_description": "Use the primary color defined in the selected theme instead of the custom accent color",
"useThemePrimaryShade": "Use theme primary shade",
"useThemePrimaryShade_description": "Use the primary shade defined in the selected theme for primary color variants",
"primaryShade": "Primary shade",
"primaryShade_description": "Override the primary shade (0–9) used for buttons, links, and other primary-colored elements",
"albumBackground_description": "Adds a background image for album pages containing the album art",
"albumBackground": "Album background image",
"albumBackgroundBlur_description": "Adjusts the amount of blur applied to the album background image",
"albumBackgroundBlur": "Album background image blur size",
"analyticsDisable": "Opt-out of usage based analytics",
"analyticsDisable_description": "Anonymized usage data is sent to the developer to help improve the application",
"analyticsEnable": "Send usage-based analytics",
"analyticsEnable_description": "Anonymized usage data is sent to the developer to help improve the application",
"applicationHotkeys_description": "Configure application hotkeys. Toggle the checkbox to set as a global hotkey (desktop only)",
"applicationHotkeys": "Application hotkeys",
"artistBackground": "Artist background image",
"artistBackground_description": "Adds a background image for artist pages containing the artist art",
"artistBackgroundBlur": "Artist background image blur size",
"artistBackgroundBlur_description": "Adjusts the amount of blur applied to the artist background image",
"artistConfiguration": "Album artist page configuration",
"artistConfiguration_description": "Configure what items are shown, and in what order, on the album artist page",
"artistReleaseTypeConfiguration": "Artist release type configuration",
"artistReleaseTypeConfiguration_description": "Configure what release types are shown, and in what order, on the album artist page",
"audioDeviceDefault": "System default",
"audioDevice_description": "Select the audio device to use for playback",
"audioDevice": "Audio device",
"audioExclusiveMode_description": "Enable exclusive output mode. In this mode, the system is usually locked out, and only mpv will be able to output audio. Visualizer system audio capture will not work while this is enabled",
"audioExclusiveMode": "Audio exclusive mode",
"audioPlayer_description": "Select the audio player to use for playback",
"audioPlayer": "Audio player",
"buttonSize_description": "The size of the player bar buttons",
"buttonSize": "Player bar button size",
"clearCache_description": "A 'hard clear' of Feishin. In addition to clearing Feishin's cache, empty the browser cache (saved images and other assets). Server credentials and settings are preserved",
"clearCache": "Clear browser cache",
"clearCacheSuccess": "Cache cleared successfully",
"clearQueryCache_description": "A 'soft clear' of Feishin. This will refresh playlists, track metadata, and reset saved lyrics. Settings, server credentials and cached images are preserved",
"clearQueryCache": "Clear Feishin cache",
"contextMenu_description": "Allows you to hide items that are shown in the menu when you right click on an item. Items that are unchecked will be hidden",
"contextMenu": "Context menu (right click) configuration",
"crossfadeDuration_description": "Sets the duration of the crossfade effect",
"crossfadeDuration": "Crossfade duration",
"crossfadeStyle": "Crossfade style",
"crossfadeStyle_description": "Select the crossfade style to use for the audio player",
"customCss_description": "Custom CSS content. Note: content and remote urls are disallowed properties. A preview of your content is shown below. Additional fields you didn't set are present due to sanitization. Desktop: feishin reads and writes custom.css in the app config directory and reloads it when the file changes",
"customCss": "Custom CSS",
"customCssEnable_description": "Allow for writing custom CSS",
"customCssEnable": "Enable custom CSS",
"customCssNotice": "Warning: while there is some sanitization (disallowing URL() and content:), using custom CSS can still pose risks by changing the interface",
"customFontPath_description": "Sets the path to the custom font to use for the application",
"customFontPath": "Custom font path",
"automaticUpdates": "Automatic updates",
"automaticUpdates_description": "Check for and install updates automatically",
"releaseChannel_optionAlpha": "Alpha (nightly)",
"releaseChannel_optionBeta": "Beta",
"releaseChannel_optionLatest": "Latest",
"releaseChannel": "Release channel",
"releaseChannel_description": "Choose between stable, beta, or alpha (nightly) releases for automatic updates",
"disableLibraryUpdateOnStartup": "Disable checking for new versions on startup",
"discordApplicationId_description": "The application ID for {{discord}} rich presence (defaults to {{defaultId}})",
"discordApplicationId": "{{discord}} application ID",
"discordDisplayType_artistname": "Artist name(s)",
"discordDisplayType_description": "Changes what you are listening to in your status",
"discordDisplayType_songname": "Song name",
"discordDisplayType": "{{discord}} presence display type",
"discordIdleStatus_description": "When enabled, update status while player is idle",
"discordIdleStatus": "Show rich presence idle status",
"discordLinkType_description": "Adds external links to {{lastfm}} or {{musicbrainz}} to the song and artist fields in {{discord}} rich presence. {{musicbrainz}} is the most accurate but requires tags and doesn't provide artist links while {{lastfm}} should always provide a link. Makes no extra network requests",
"discordLinkType_mbz_lastfm": "{{musicbrainz}} with {{lastfm}} fallback",
"discordLinkType_none": "$t(common.none)",
"discordLinkType": "{{discord}} presence links",
"discordListening_description": "Show status as listening instead of playing",
"discordListening": "Show status as listening",
"discordPausedStatus_description": "When enabled, status will show when player is paused",
"discordPausedStatus": "Show rich presence when paused",
"discordRichPresence": "{{discord}} rich presence",
"discordRichPresence_description": "Enable playback status in {{discord}} rich presence. Image keys are: {{icon}}, {{playing}}, and {{paused}}",
"discordServeImage": "Serve {{discord}} images from server",
"discordServeImage_description": "Share cover art for {{discord}} rich presence from server itself, only available for Jellyfin and Navidrome. {{discord}} uses a bot to fetch images, so your server must be reachable from the public internet",
"discordStateIcon": "Show playing icon",
"discordStateIcon_description": "Show a small playing icon in the rich presence status. The paused icon is always shown when \"show rich presence when paused\" is enabled",
"discordUpdateInterval": "{{discord}} rich presence update interval",
"discordUpdateInterval_description": "The time in seconds between each update (minimum 15 seconds)",
"enableAutoTranslation_description": "Enable translation automatically when lyrics are loaded",
"enableAutoTranslation": "Enable auto translation",
"enableFurigana_description": "Display pronunciation guides (furigana) over Japanese kanji lyrics.",
"enableFurigana": "Enable furigana generation",
"enableRomaji_description": "Display a romaji pronunciation line under Japanese lyrics.",
"enableRomaji": "Enable romaji generation",
"equalizer_descriptionMpv": "Parametric equalizer via FFmpeg lavfi (MPV)",
"equalizer_descriptionWebAudio": "Parametric equalizer via Web Audio API",
"equalizer": "Equalizer",
"equalizerBands_description": "Per-band gain. Drag up/down or type a value. Range: -12 to +12 dB.",
"equalizerBands": "Bands",
"equalizerPreamp_description": "Input gain before EQ bands. Set negative when boosting bands to prevent clipping (MPV).",
"equalizerPreamp": "Preamp",
"equalizerPreset_description": "Apply a built-in or saved custom EQ curve",
"equalizerPreset": "Preset",
"equalizerPresetDeletePlaceholder": "Delete custom...",
"equalizerPresetGroupBuiltIn": "Built-in",
"equalizerPresetGroupCustom": "Custom",
"equalizerPresetNamePlaceholder": "Preset name...",
"equalizerPresetSelectPlaceholder": "Select preset",
"equalizerSavePreset_description": "Save the current EQ settings as a named preset",
"equalizerSavePreset": "Save preset",
"enableRemote_description": "Enables the remote control server to allow other devices to control the application",
"enableRemote": "Enable remote control server",
"exitToTray_description": "Exit the application to the system tray",
"exitToTray": "Exit to tray",
"exportImportSettings_control_description": "Export and import settings via JSON",
"exportImportSettings_control_exportText": "Export settings",
"exportImportSettings_control_importText": "Import settings",
"exportImportSettings_control_title": "Import / export settings",
"exportImportSettings_destructiveWarning": "Importing settings is destructive, please review the above before clicking \"import\" below!",
"exportImportSettings_importBtn": "Import settings",
"exportImportSettings_importModalTitle": "Import Feishin settings",
"exportImportSettings_importSuccess": "Settings have been imported successfully!",
"exportImportSettings_notValidJSON": "The file passed is not valid JSON",
"exportImportSettings_offendingKeyError": "\"{{offendingKey}}\" is incorrect - {{reason}}",
"externalLinks_description": "Enables showing external links (Last.fm, MusicBrainz) on artist/album pages",
"externalLinks": "Show external links",
"followCurrentSong_description": "Automatically scroll the play queue to the current playing song",
"followCurrentSong": "Follow current song",
"followLyric_description": "Scroll the lyric to the current playing position",
"followLyric": "Follow current lyric",
"font_description": "Sets the font to use for the application",
"font": "Font",
"fontType_description": "Built-in font selects one of the fonts provided by Feishin. System font allows you to select any font provided by your operating system. Custom allows you to provide your own font",
"fontType_optionBuiltIn": "Built-in font",
"fontType_optionCustom": "Custom font",
"fontType_optionSystem": "System font",
"fontType": "Font type",
"gaplessAudio_description": "Sets the gapless audio setting for mpv",
"gaplessAudio_optionWeak": "Weak (recommended)",
"gaplessAudio": "Gapless audio",
"globalMediaHotkeys_description": "Enable or disable the usage of your system media hotkeys to control playback",
"globalMediaHotkeys": "Global media hotkeys",
"homeConfiguration_description": "Configure what items are shown, and in what order, on the home page",
"homeConfiguration": "Home page configuration",
"homeFeature_description": "Controls whether to show the large featured carousel on the home page",
"homeFeature": "Home featured carousel",
"homeFeatureStyle_description": "Controls the style of the home featured carousel",
"homeFeatureStyle": "Home featured carousel style",
"homeFeatureStyle_optionMultiple": "Multiple",
"homeFeatureStyle_optionSingle": "Single",
"hotkey_browserBack": "Browser back",
"hotkey_browserForward": "Browser forward",
"hotkey_favoriteCurrentSong": "Favorite $t(common.currentSong)",
"hotkey_favoritePreviousSong": "Favorite $t(common.previousSong)",
"hotkey_globalSearch": "Global search",
"hotkey_localSearch": "In-page search",
"hotkey_listNavigateToPage": "List navigate to item page",
"hotkey_listPlayDefault": "List play",
"hotkey_listPlayLast": "List play last",
"hotkey_listPlayNext": "List play next",
"hotkey_listPlayNow": "List play now",
"hotkey_listShowPlayingSong": "Show playing song in list",
"hotkey_navigateHome": "Navigate to home",
"hotkey_playbackNext": "Next track",
"hotkey_playbackNextAlbum": "Next album",
"hotkey_playbackPause": "Pause",
"hotkey_playbackPlay": "Play",
"hotkey_playbackPlayPause": "Play / pause",
"hotkey_playbackPrevious": "Previous track",
"hotkey_playbackPreviousAlbum": "Previous album",
"hotkey_playbackStop": "Stop",
"hotkey_rate0": "Rating clear",
"hotkey_rate1": "Rating 1 star",
"hotkey_rate2": "Rating 2 stars",
"hotkey_rate3": "Rating 3 stars",
"hotkey_rate4": "Rating 4 stars",
"hotkey_rate5": "Rating 5 stars",
"hotkey_skipBackward": "Skip backward",
"hotkey_skipForward": "Skip forward",
"hotkey_toggleCurrentSongFavorite": "Toggle $t(common.currentSong) favorite",
"hotkey_toggleFullScreenPlayer": "Toggle full screen player",
"hotkey_togglePreviousSongFavorite": "Toggle $t(common.previousSong) favorite",
"hotkey_toggleQueue": "Toggle queue",
"hotkey_toggleRepeat": "Toggle repeat",
"hotkey_toggleShuffle": "Toggle shuffle",
"hotkey_unfavoriteCurrentSong": "Unfavorite $t(common.currentSong)",
"hotkey_unfavoritePreviousSong": "Unfavorite $t(common.previousSong)",
"hotkey_volumeDown": "Volume down",
"hotkey_volumeMute": "Volume mute",
"hotkey_volumeUp": "Volume up",
"hotkey_zoomIn": "Zoom in",
"hotkey_zoomOut": "Zoom out",
"imageAspectRatio_description": "If enabled, cover art will be shown using their native aspect ratio. For art that is not 1:1, the remaining space will be empty",
"imageAspectRatio": "Use native cover art aspect ratio",
"language": "Language",
"language_description": "Sets the language for the application ($t(common.restartRequired))",
"lastfm_description": "Show links to Last.fm on artist/album pages",