mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
Fixed translations
This commit is contained in:
@@ -15,17 +15,23 @@ import styles from './DiskSpace.css';
|
||||
const columns = [
|
||||
{
|
||||
name: 'path',
|
||||
label: translate('Location'),
|
||||
get label() {
|
||||
return translate('Location');
|
||||
},
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'freeSpace',
|
||||
label: translate('FreeSpace'),
|
||||
get label() {
|
||||
return translate('FreeSpace');
|
||||
},
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'totalSpace',
|
||||
label: translate('TotalSpace'),
|
||||
get label() {
|
||||
return translate('TotalSpace');
|
||||
},
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
|
||||
@@ -94,12 +94,16 @@ const columns = [
|
||||
},
|
||||
{
|
||||
name: 'message',
|
||||
label: translate('Message'),
|
||||
get label() {
|
||||
return translate('Message');
|
||||
},
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'actions',
|
||||
label: translate('Actions'),
|
||||
get label() {
|
||||
return translate('Actions');
|
||||
},
|
||||
isVisible: true
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user