diff --git a/resources/i18n/sv.json b/resources/i18n/sv.json index 30bf89ec..a9383107 100644 --- a/resources/i18n/sv.json +++ b/resources/i18n/sv.json @@ -10,6 +10,7 @@ "playCount": "Spelningar", "title": "Titel", "artist": "Artist", + "composer": "Kompositör", "album": "Album", "path": "Sökväg", "genre": "Genre", diff --git a/ui/src/album/AlbumSongs.jsx b/ui/src/album/AlbumSongs.jsx index d705617e..8a7fd2ae 100644 --- a/ui/src/album/AlbumSongs.jsx +++ b/ui/src/album/AlbumSongs.jsx @@ -108,6 +108,9 @@ const AlbumSongs = (props) => { /> ), artist: isDesktop && , + composer: isDesktop && ( + + ), duration: , year: isDesktop && ( { columns: toggleableFields, omittedColumns: ['title'], defaultOff: [ + 'composer', 'channels', 'bpm', 'year', diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json index 2a04b812..600fa74a 100644 --- a/ui/src/i18n/en.json +++ b/ui/src/i18n/en.json @@ -10,6 +10,7 @@ "playCount": "Plays", "title": "Title", "artist": "Artist", + "composer": "Composer", "album": "Album", "path": "File path", "libraryName": "Library", diff --git a/ui/src/song/SongList.jsx b/ui/src/song/SongList.jsx index f067e11d..98684132 100644 --- a/ui/src/song/SongList.jsx +++ b/ui/src/song/SongList.jsx @@ -145,6 +145,7 @@ const SongList = (props) => { return { album: isDesktop && , artist: , + composer: , albumArtist: , trackNumber: isDesktop && , playCount: isDesktop && ( @@ -192,6 +193,7 @@ const SongList = (props) => { resource: 'song', columns: toggleableFields, defaultOff: [ + 'composer', 'channels', 'bpm', 'playDate',