1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -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
@@ -11,23 +11,17 @@ import styles from './ExtraFileTableContent.css';
const columns = [
{
name: 'relativePath',
get label() {
return translate('RelativePath');
},
label: () => translate('RelativePath'),
isVisible: true
},
{
name: 'extension',
get label() {
return translate('Extension');
},
label: () => translate('Extension'),
isVisible: true
},
{
name: 'type',
get label() {
return translate('Type');
},
label: () => translate('Type'),
isVisible: true
},
{