Fixed: Various Translations

Fixes #1209
This commit is contained in:
bakerboy448
2022-01-20 23:17:54 -06:00
committed by ta264
parent 62a3355546
commit a321288a71
9 changed files with 40 additions and 21 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ class AuthorDetails extends Component {
<PageToolbar>
<PageToolbarSection>
<PageToolbarButton
label={translate('RefreshScan')}
label={translate('RefreshAndScan')}
iconName={icons.REFRESH}
spinningName={icons.REFRESH}
title={translate('RefreshInformationAndScanDisk')}
@@ -54,7 +54,7 @@ class AddDownloadClientModalContent extends Component {
<Alert kind={kinds.INFO}>
<div>
{translate('ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow')}
{translate('ReadarrSupportsAnyDownloadClient')}
</div>
<div>
{translate('ForMoreInformationOnTheIndividualDownloadClientsClickOnTheInfoButtons')}
@@ -134,7 +134,7 @@ class EditDownloadClientModalContent extends Component {
<FormInputGroup
type={inputTypes.NUMBER}
name="priority"
helpText={translate('PriorityHelpText')}
helpText={translate('IndexerPriorityHelpText')}
min={1}
max={50}
{...priority}
@@ -77,13 +77,13 @@ function EditRemotePathMappingModalContent(props) {
<FormGroup>
<FormLabel>
{translate('RemotePath')}
{translate('SettingsRemotePathMappingRemotePath')}
</FormLabel>
<FormInputGroup
type={inputTypes.TEXT}
name="remotePath"
helpText={translate('RemotePathHelpText')}
helpText={translate('SettingsRemotePathMappingRemotePathHelpText')}
{...remotePath}
onChange={onInputChange}
/>
@@ -91,13 +91,13 @@ function EditRemotePathMappingModalContent(props) {
<FormGroup>
<FormLabel>
{translate('LocalPath')}
{translate('SettingsRemotePathMappingLocalPath')}
</FormLabel>
<FormInputGroup
type={inputTypes.PATH}
name="localPath"
helpText={translate('LocalPathHelpText')}
helpText={translate('SettingsRemotePathMappingLocalPathHelpText')}
{...localPath}
onChange={onInputChange}
/>
@@ -55,10 +55,10 @@ class RemotePathMappings extends Component {
{translate('Host')}
</div>
<div className={styles.path}>
{translate('RemotePath')}
{translate('SettingsRemotePathMappingRemotePath')}
</div>
<div className={styles.path}>
{translate('LocalPath')}
{translate('SettingsRemotePathMappingLocalPath')}
</div>
</div>
@@ -154,7 +154,7 @@ function EditIndexerModalContent(props) {
<FormInputGroup
type={inputTypes.NUMBER}
name="priority"
helpText={translate('PriorityHelpText')}
helpText={translate('IndexerPriorityHelpText')}
min={1}
max={50}
{...priority}
@@ -203,7 +203,7 @@ class RestoreBackupModalContent extends Component {
<ModalFooter>
<div className={styles.additionalInfo}>
Note: Readarr will automatically restart and reload the UI during the restore process.
{translate('RestartReloadNote')}
</div>
<Button onPress={onModalClose}>
+1 -1
View File
@@ -143,7 +143,7 @@ class Health extends Component {
{
!healthIssues &&
<div className={styles.healthOk}>
No issues with your configuration
{translate('HealthNoIssues')}
</div>
}