1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

More Language string migration

This commit is contained in:
nitsua
2020-08-28 23:56:13 -04:00
committed by Qstick
parent 84e769b14e
commit be38ca4728
134 changed files with 849 additions and 468 deletions
@@ -8,6 +8,7 @@ import Popover from 'Components/Tooltip/Popover';
import { kinds, tooltipPositions } from 'Helpers/Props';
import formatBytes from 'Utilities/Number/formatBytes';
import roundNumber from 'Utilities/Number/roundNumber';
import translate from 'Utilities/String/translate';
import QualityDefinitionLimits from './QualityDefinitionLimits';
import styles from './QualityDefinition.css';
@@ -193,11 +194,11 @@ class QualityDefinition extends Component {
anchor={
<Label kind={kinds.INFO}>{minSixty}</Label>
}
title="Minimum Limits"
title={translate('MinimumLimits')}
body={
<QualityDefinitionLimits
bytes={minBytes}
message="No minimum for any runtime"
message={translate('NoMinimumForAnyRuntime')}
/>
}
position={tooltipPositions.BOTTOM}
@@ -209,11 +210,11 @@ class QualityDefinition extends Component {
anchor={
<Label kind={kinds.SUCCESS}>{preferredSixty}</Label>
}
title="Preferred Size"
title={translate('PreferredSize')}
body={
<QualityDefinitionLimits
bytes={preferredBytes}
message="No limit for any runtime"
message={translate('NoLimitForAnyRuntime')}
/>
}
position={tooltipPositions.BOTTOM}
@@ -225,11 +226,11 @@ class QualityDefinition extends Component {
anchor={
<Label kind={kinds.WARNING}>{maxSixty}</Label>
}
title="Maximum Limits"
title={translate('MaximumLimits')}
body={
<QualityDefinitionLimits
bytes={maxBytes}
message="No limit for any runtime"
message={translate('NoLimitForAnyRuntime')}
/>
}
position={tooltipPositions.BOTTOM}