1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Add missing app name token for translations

This commit is contained in:
Bogdan 2023-08-29 03:29:46 +03:00
parent 2210ce9394
commit 27f45b8fd6

View File

@ -139,8 +139,8 @@ class SecuritySettings extends Component {
type={inputTypes.SELECT}
name="authenticationMethod"
values={authenticationMethodOptions}
helpText={translate('AuthenticationMethodHelpText')}
helpTextWarning={translate('AuthenticationRequiredWarning')}
helpText={translate('AuthenticationMethodHelpText', { appName: 'Radarr' })}
helpTextWarning={translate('AuthenticationRequiredWarning', { appName: 'Radarr' })}
onChange={onInputChange}
{...authenticationMethod}
/>