diff --git a/frontend/src/Components/Filter/CustomFilters/CustomFiltersModalContent.js b/frontend/src/Components/Filter/CustomFilters/CustomFiltersModalContent.js index e517f5008..07660426e 100644 --- a/frontend/src/Components/Filter/CustomFilters/CustomFiltersModalContent.js +++ b/frontend/src/Components/Filter/CustomFilters/CustomFiltersModalContent.js @@ -50,7 +50,7 @@ function CustomFiltersModalContent(props) {
diff --git a/frontend/src/Indexer/Editor/Tags/TagsModalContent.js b/frontend/src/Indexer/Editor/Tags/TagsModalContent.js index eaa9c5b6a..f34f62780 100644 --- a/frontend/src/Indexer/Editor/Tags/TagsModalContent.js +++ b/frontend/src/Indexer/Editor/Tags/TagsModalContent.js @@ -61,15 +61,15 @@ class TagsModalContent extends Component { } = this.state; const applyTagsOptions = [ - { key: 'add', value: 'Add' }, - { key: 'remove', value: 'Remove' }, - { key: 'replace', value: 'Replace' } + { key: 'add', value: translate('Add') }, + { key: 'remove', value: translate('Remove') }, + { key: 'replace', value: translate('Replace') } ]; return ( - Tags + {translate('Tags')} diff --git a/frontend/src/Indexer/Index/Menus/IndexerIndexSortMenu.js b/frontend/src/Indexer/Index/Menus/IndexerIndexSortMenu.js index 3ce324ff3..dd240d998 100644 --- a/frontend/src/Indexer/Index/Menus/IndexerIndexSortMenu.js +++ b/frontend/src/Indexer/Index/Menus/IndexerIndexSortMenu.js @@ -26,7 +26,7 @@ function IndexerIndexSortMenu(props) { sortDirection={sortDirection} onPress={onSortSelect} > - Status + {translate('Status')} - {'Priority'} + {translate('Priority')} - {'Protocol'} + {translate('Protocol')} - {'Privacy'} + {translate('Privacy')} diff --git a/frontend/src/Settings/Applications/Applications/AddApplicationModalContent.js b/frontend/src/Settings/Applications/Applications/AddApplicationModalContent.js index 6c88a991f..ce8db01e2 100644 --- a/frontend/src/Settings/Applications/Applications/AddApplicationModalContent.js +++ b/frontend/src/Settings/Applications/Applications/AddApplicationModalContent.js @@ -28,7 +28,7 @@ class AddApplicationModalContent extends Component { return ( - Add Application + {translate('AddApplication')} diff --git a/frontend/src/Settings/Applications/Applications/Application.js b/frontend/src/Settings/Applications/Applications/Application.js index d7ebd56e1..728747ecf 100644 --- a/frontend/src/Settings/Applications/Applications/Application.js +++ b/frontend/src/Settings/Applications/Applications/Application.js @@ -71,14 +71,14 @@ class Application extends Component { { syncLevel === 'addOnly' && } { syncLevel === 'fullSync' && } @@ -88,7 +88,7 @@ class Application extends Component { kind={kinds.DISABLED} outline={true} > - Disabled + {translate('Disabled')} } diff --git a/frontend/src/Settings/Indexers/IndexerProxies/IndexerProxy.js b/frontend/src/Settings/Indexers/IndexerProxies/IndexerProxy.js index 4ac3cfc61..84292ae65 100644 --- a/frontend/src/Settings/Indexers/IndexerProxies/IndexerProxy.js +++ b/frontend/src/Settings/Indexers/IndexerProxies/IndexerProxy.js @@ -106,7 +106,7 @@ class IndexerProxy extends Component { kind={kinds.DISABLED} outline={true} > - Disabled + {translate('Disabled')} : null } diff --git a/frontend/src/Store/Actions/historyActions.js b/frontend/src/Store/Actions/historyActions.js index b03d8d26d..172991b60 100644 --- a/frontend/src/Store/Actions/historyActions.js +++ b/frontend/src/Store/Actions/historyActions.js @@ -54,7 +54,7 @@ export const defaultState = { }, { name: 'grabTitle', - label: translate('Grab Title'), + label: translate('GrabTitle'), isSortable: false, isVisible: false }, @@ -78,7 +78,7 @@ export const defaultState = { }, { name: 'elapsedTime', - label: translate('Elapsed Time'), + label: translate('ElapsedTime'), isSortable: false, isVisible: true }, diff --git a/frontend/src/System/Backup/Backups.js b/frontend/src/System/Backup/Backups.js index 3f1e2b4eb..7a5e399d0 100644 --- a/frontend/src/System/Backup/Backups.js +++ b/frontend/src/System/Backup/Backups.js @@ -25,7 +25,7 @@ const columns = [ }, { name: 'size', - label: 'Size', + label: translate('Size'), isVisible: true }, { diff --git a/frontend/src/System/Updates/Updates.js b/frontend/src/System/Updates/Updates.js index 97ed7967c..c17ec1e6c 100644 --- a/frontend/src/System/Updates/Updates.js +++ b/frontend/src/System/Updates/Updates.js @@ -113,7 +113,7 @@ class Updates extends Component { />
- The latest version of Prowlarr is already installed + {translate('TheLatestVersionIsAlreadyInstalled', ['Prowlarr'])}
{ diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index d2ecd4d0f..952022e76 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -3,6 +3,8 @@ "AcceptConfirmationModal": "Accept Confirmation Modal", "Actions": "Actions", "Add": "Add", + "AddApplication": "Add Application", + "AddCustomFilter": "Add Custom Filter", "AddDownloadClient": "Add Download Client", "AddDownloadClientToProwlarr": "Adding a download client allows Prowlarr to send releases direct from the UI while doing a manual search.", "Added": "Added", @@ -322,9 +324,11 @@ "ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Prowlarr release branch, you will not receive updates", "ReleaseStatus": "Release Status", "Reload": "Reload", + "Remove": "Remove", "RemovedFromTaskQueue": "Removed from task queue", "RemoveFilter": "Remove filter", "RemovingTag": "Removing tag", + "Replace": "Replace", "Reset": "Reset", "ResetAPIKey": "Reset API Key", "Restart": "Restart", @@ -411,6 +415,7 @@ "TestAllApps": "Test All Apps", "TestAllClients": "Test All Clients", "TestAllIndexers": "Test All Indexers", + "TheLatestVersionIsAlreadyInstalled": "The latest version of {0} is already installed", "ThemeHelpText": "Change Application UI Theme, 'Auto' Theme will use your OS Theme to set Light or Dark mode. Inspired by {0}", "Time": "Time", "Title": "Title",