1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed translations

This commit is contained in:
Bogdan
2023-07-24 09:35:15 +03:00
parent 53eb88d9a9
commit 1190bf791c
51 changed files with 838 additions and 316 deletions
@@ -29,22 +29,30 @@ import styles from './SelectMovieModalContent.css';
const columns = [
{
name: 'title',
label: translate('Title'),
get label() {
return translate('Title');
},
isVisible: true,
},
{
name: 'year',
label: translate('Year'),
get label() {
return translate('Year');
},
isVisible: true,
},
{
name: 'imdbId',
label: translate('ImdbId'),
get label() {
return translate('ImdbId');
},
isVisible: true,
},
{
name: 'tmdbId',
label: translate('TmdbId'),
get label() {
return translate('TmdbId');
},
isVisible: true,
},
];