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

Translate Activity pages

This commit is contained in:
Stevie Robinson
2023-08-05 22:59:07 +02:00
committed by Mark McDowall
parent 02b0710814
commit 322836e2b3
17 changed files with 180 additions and 106 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ import React from 'react';
import Icon from 'Components/Icon';
import Popover from 'Components/Tooltip/Popover';
import { icons, tooltipPositions } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
import QueueStatus from './QueueStatus';
import styles from './QueueDetails.css';
@@ -30,7 +31,7 @@ function QueueDetails(props) {
!hasWarning &&
!hasError
) {
const state = isPaused ? 'Paused' : 'Downloading';
const state = isPaused ? translate('Paused') : translate('Downloading');
if (progress < 5) {
return (