diff --git a/frontend/src/Indexer/Info/IndexerInfoModalContent.tsx b/frontend/src/Indexer/Info/IndexerInfoModalContent.tsx
index 71a609485..9056f70f5 100644
--- a/frontend/src/Indexer/Info/IndexerInfoModalContent.tsx
+++ b/frontend/src/Indexer/Info/IndexerInfoModalContent.tsx
@@ -134,9 +134,11 @@ function IndexerInfoModalContent(props: IndexerInfoModalContentProps) {
{baseUrl.replace(/(:\/\/)api\./, '$1')}
- {`${
- protocol === 'usenet' ? 'Newznab' : 'Torznab'
- } Url`}
+
+ {protocol === 'usenet'
+ ? translate('NewznabUrl')
+ : translate('TorznabUrl')}
+
{`${window.location.origin}${window.Prowlarr.urlBase}/${id}/api`}
diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json
index aa497b0ab..31a8f07c5 100644
--- a/src/NzbDrone.Core/Localization/Core/en.json
+++ b/src/NzbDrone.Core/Localization/Core/en.json
@@ -296,6 +296,7 @@
"Name": "Name",
"NetCore": ".NET",
"New": "New",
+ "NewznabUrl": "Newznab Url",
"NextExecution": "Next Execution",
"No": "No",
"NoBackupsAreAvailable": "No backups are available",
@@ -487,6 +488,7 @@
"Tomorrow": "Tomorrow",
"Torrent": "Torrent",
"Torrents": "Torrents",
+ "TorznabUrl": "Torznab Url",
"TotalHostGrabs": "Total Host Grabs",
"TotalHostQueries": "Total Host Queries",
"TotalIndexerQueries": "Total Indexer Queries",