mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fix translations for columns
This commit is contained in:
parent
246ee27df5
commit
42308ada89
19 changed files with 157 additions and 64 deletions
|
@ -18,22 +18,22 @@ import styles from './SelectAlbumModalContent.css';
|
|||
const columns = [
|
||||
{
|
||||
name: 'title',
|
||||
label: translate('AlbumTitle'),
|
||||
label: () => translate('AlbumTitle'),
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'albumType',
|
||||
label: translate('AlbumType'),
|
||||
label: () => translate('AlbumType'),
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'releaseDate',
|
||||
label: translate('ReleaseDate'),
|
||||
label: () => translate('ReleaseDate'),
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'status',
|
||||
label: translate('AlbumStatus'),
|
||||
label: () => translate('AlbumStatus'),
|
||||
isVisible: true
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue