Cleanup appName tokens

Co-authored-by: Stevie Robinson <stevie.robinson@gmail.com>

Closes #4317
This commit is contained in:
Bogdan 2023-11-19 22:04:14 +02:00
parent c4b33673ad
commit 7d38336bb5
37 changed files with 753 additions and 753 deletions

View file

@ -64,7 +64,7 @@ function AuthenticationRequiredModalContent(props) {
className={styles.authRequiredAlert}
kind={kinds.WARNING}
>
{translate('AuthenticationRequiredWarning', { appName: 'Lidarr' })}
{translate('AuthenticationRequiredWarning')}
</Alert>
{
@ -77,7 +77,7 @@ function AuthenticationRequiredModalContent(props) {
type={inputTypes.SELECT}
name="authenticationMethod"
values={authenticationMethodOptions}
helpText={translate('AuthenticationMethodHelpText', { appName: 'Lidarr' })}
helpText={translate('AuthenticationMethodHelpText')}
helpTextWarning={authenticationMethod.value === 'none' ? translate('AuthenticationMethodHelpTextWarning') : undefined}
helpLink="https://wiki.servarr.com/lidarr/faq#forced-authentication"
onChange={onInputChange}