1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Simplify column translations

This commit is contained in:
Bogdan
2023-08-04 03:38:24 +03:00
committed by GitHub
parent 9188a9971b
commit 551ea18caf
12 changed files with 76 additions and 224 deletions
+3 -9
View File
@@ -13,23 +13,17 @@ import RootFolderRow from './RootFolderRow';
const rootFolderColumns = [
{
name: 'path',
get label() {
return translate('Path');
},
label: () => translate('Path'),
isVisible: true,
},
{
name: 'freeSpace',
get label() {
return translate('FreeSpace');
},
label: () => translate('FreeSpace'),
isVisible: true,
},
{
name: 'unmappedFolders',
get label() {
return translate('UnmappedFolders');
},
label: () => translate('UnmappedFolders'),
isVisible: true,
},
{