mirror of https://github.com/Radarr/Radarr
Fix custom format translations
This commit is contained in:
parent
90a1e1dbb3
commit
ffde07e4d6
|
@ -120,9 +120,7 @@ const COLUMNS = [
|
|||
name: 'customFormats',
|
||||
label: React.createElement(Icon, {
|
||||
name: icons.INTERACTIVE,
|
||||
get title() {
|
||||
return translate('CustomFormat');
|
||||
},
|
||||
title: () => translate('CustomFormat'),
|
||||
}),
|
||||
isSortable: true,
|
||||
isVisible: true,
|
||||
|
|
|
@ -110,9 +110,7 @@ const columns = [
|
|||
name: 'customFormatScore',
|
||||
label: React.createElement(Icon, {
|
||||
name: icons.SCORE,
|
||||
get title() {
|
||||
return translate('CustomFormatScore');
|
||||
}
|
||||
title: () => translate('CustomFormatScore')
|
||||
}),
|
||||
isSortable: true,
|
||||
isVisible: true
|
||||
|
|
|
@ -598,6 +598,7 @@
|
|||
"MoreDetails": "More details",
|
||||
"MoreInfo": "More Info",
|
||||
"MountCheckMessage": "Mount containing a movie path is mounted read-only: ",
|
||||
"MoveAutomatically": "Move Automatically",
|
||||
"MoveFiles": "Move Files",
|
||||
"MoveFolders1": "Would you like to move the movie folders to '{0}' ?",
|
||||
"MoveFolders2": "Would you like to move the movie files from '{0}' to '{1}' ?",
|
||||
|
|
Loading…
Reference in New Issue