Added Info if Master PW Lost
This commit is contained in:
parent
20f68a60b8
commit
6d1a1b5e16
|
@ -5,6 +5,7 @@
|
|||
"id": "d091b369-f63d-459c-846e-5a4323e31745",
|
||||
"version": "1.0.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"skipFeatureDeployment": true,
|
||||
"isDomainIsolated": false,
|
||||
"developer": {
|
||||
"name": "SPFXAppDev",
|
||||
|
|
|
@ -244,6 +244,10 @@ export default class PasswordVault extends SPFxAppDevWebPartComponent<PasswordVa
|
|||
{this.renderOpenVaultForm()}
|
||||
|
||||
{showForm &&
|
||||
<>
|
||||
<MessageBar messageBarType={MessageBarType.warning}>
|
||||
{strings.DontLoseMasterpasswordLabel}
|
||||
</MessageBar>
|
||||
<div className='spfxappdev-grid'>
|
||||
<div className="spfxappdev-grid-row">
|
||||
<div className="spfxappdev-grid-col spfxappdev-sm12">
|
||||
|
@ -350,6 +354,7 @@ export default class PasswordVault extends SPFxAppDevWebPartComponent<PasswordVa
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
}
|
||||
</>
|
||||
);
|
||||
|
|
|
@ -13,6 +13,7 @@ define([], function() {
|
|||
"WrongPasswordLabel": "Falsches Passwort",
|
||||
"OpenVaultLabel": "Tresor entsperren",
|
||||
"UsernameCopiedLabel": "Benutzername kopiert",
|
||||
"PasswordCopiedLabel": "Passwort kopiert"
|
||||
"PasswordCopiedLabel": "Passwort kopiert",
|
||||
"DontLoseMasterpasswordLabel": "Wenn Sie das Master passwort vergessen, können Sie den Tresor nicht mehr entsperren und alle Daten gehen verloren. Es ist nicht möglich das Passwort wiederherzustellen."
|
||||
}
|
||||
});
|
|
@ -13,6 +13,7 @@ define([], function() {
|
|||
"WrongPasswordLabel": "Wrong Password",
|
||||
"OpenVaultLabel": "Open vault",
|
||||
"UsernameCopiedLabel": "Username copied",
|
||||
"PasswordCopiedLabel": "Password copied"
|
||||
"PasswordCopiedLabel": "Password copied",
|
||||
"DontLoseMasterpasswordLabel": "If you forget the master password, you will not be able to unlock the vault and all data will be lost. It is not possible to recover the password."
|
||||
}
|
||||
});
|
|
@ -13,6 +13,7 @@ declare interface IPasswordVaultWebPartStrings {
|
|||
OpenVaultLabel: string;
|
||||
UsernameCopiedLabel: string;
|
||||
PasswordCopiedLabel: string;
|
||||
DontLoseMasterpasswordLabel: string;
|
||||
}
|
||||
|
||||
declare module 'PasswordVaultWebPartStrings' {
|
||||
|
|
Loading…
Reference in New Issue