mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
More Language string migration
This commit is contained in:
@@ -134,7 +134,7 @@ class MovieFileEditorRow extends Component {
|
||||
|
||||
<TableRowCellButton
|
||||
className={styles.language}
|
||||
title="Click to change language"
|
||||
title={translate('ClickToChangeLanguage')}
|
||||
onPress={this.onSelectLanguagePress}
|
||||
>
|
||||
{
|
||||
@@ -153,7 +153,7 @@ class MovieFileEditorRow extends Component {
|
||||
|
||||
<TableRowCellButton
|
||||
className={styles.quality}
|
||||
title="Click to change quality"
|
||||
title={translate('ClickToChangeQuality')}
|
||||
onPress={this.onSelectQualityPress}
|
||||
>
|
||||
{
|
||||
@@ -186,7 +186,7 @@ class MovieFileEditorRow extends Component {
|
||||
/>
|
||||
|
||||
<IconButton
|
||||
title="Delete file"
|
||||
title={translate('DeleteFile')}
|
||||
name={icons.REMOVE}
|
||||
onPress={this.onDeletePress}
|
||||
/>
|
||||
@@ -202,7 +202,7 @@ class MovieFileEditorRow extends Component {
|
||||
isOpen={isConfirmDeleteModalOpen}
|
||||
ids={[id]}
|
||||
kind={kinds.DANGER}
|
||||
title="Delete Selected Movie Files"
|
||||
title={translate('DeleteSelectedMovieFiles')}
|
||||
message={'Are you sure you want to delete the selected movie files?'}
|
||||
confirmLabel={translate('Delete')}
|
||||
onConfirm={this.onConfirmDelete}
|
||||
|
||||
@@ -99,7 +99,7 @@ class SelectQualityModalContent extends Component {
|
||||
isPopulated && !error &&
|
||||
<Form>
|
||||
<FormGroup>
|
||||
<FormLabel>Quality</FormLabel>
|
||||
<FormLabel>{translate('Quality')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.SELECT}
|
||||
@@ -111,7 +111,7 @@ class SelectQualityModalContent extends Component {
|
||||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>Proper</FormLabel>
|
||||
<FormLabel>{translate('Proper')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.CHECK}
|
||||
@@ -122,7 +122,7 @@ class SelectQualityModalContent extends Component {
|
||||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>Real</FormLabel>
|
||||
<FormLabel>{translate('Real')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.CHECK}
|
||||
|
||||
Reference in New Issue
Block a user