1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Simplify label translations in columns

Closes #8922
This commit is contained in:
Bogdan
2023-08-02 12:17:34 +03:00
parent 385c7971bb
commit 69b621b13a
23 changed files with 95 additions and 277 deletions
+3 -7
View File
@@ -21,21 +21,17 @@ const columns = [
},
{
name: 'name',
get label() {
return translate('Name');
},
label: () => translate('Name'),
isVisible: true
},
{
name: 'size',
label: 'Size',
label: () => translate('Size'),
isVisible: true
},
{
name: 'time',
get label() {
return translate('Time');
},
label: () => translate('Time'),
isVisible: true
},
{