1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -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
@@ -21,23 +21,17 @@ const columns = [
},
{
name: 'name',
get label() {
return translate('Name');
},
label: () => translate('Name'),
isVisible: true
},
{
name: 'size',
get label() {
return translate('Size');
},
label: () => translate('Size'),
isVisible: true
},
{
name: 'time',
get label() {
return translate('Time');
},
label: () => translate('Time'),
isVisible: true
},
{