forked from p34709852/monkey
Fixed and improved the wording in configuration export and import modals.
This commit is contained in:
parent
5ab0137f27
commit
7954dbe1e7
|
@ -105,7 +105,7 @@ const ExportPlaintextChoiceField = (props: {
|
||||||
/>
|
/>
|
||||||
<p className={`export-warning text-secondary`}>
|
<p className={`export-warning text-secondary`}>
|
||||||
Configuration may contain stolen credentials or sensitive data.<br/>
|
Configuration may contain stolen credentials or sensitive data.<br/>
|
||||||
It is advised to use password encryption.
|
It is advised to use the <b>Encrypt with a password</b> option.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
@ -134,7 +134,7 @@ const PasswordInput = (props: {
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div className={'config-import-password-input'}>
|
<div className={'config-import-password-input'}>
|
||||||
<p>File is protected. Enter password:</p>
|
<p>File is protected. Please enter the password:</p>
|
||||||
<Form.Control type='password'
|
<Form.Control type='password'
|
||||||
placeholder='Password'
|
placeholder='Password'
|
||||||
onChange={evt => (props.onChange(evt.target.value))}/>
|
onChange={evt => (props.onChange(evt.target.value))}/>
|
||||||
|
|
Loading…
Reference in New Issue