1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-21 02:33:36 +00:00

Add extra encrypted export warning (#1299)

This commit is contained in:
Thomas Rittson
2021-03-05 09:33:29 +10:00
committed by GitHub
parent 53c82f23bf
commit 2b81bd2c8a
3 changed files with 17 additions and 4 deletions

View File

@@ -170,7 +170,9 @@ namespace Bit.App.Pages
switch (FileFormatOptions[FileFormatSelectedIndex].Key)
{
case "encrypted_json":
ExportWarningMessage = _i18nService.T("EncExportVaultWarning");
ExportWarningMessage = _i18nService.T("EncExportKeyWarning") +
"\n\n" +
_i18nService.T("EncExportAccountWarning");
break;
default:
ExportWarningMessage = _i18nService.T("ExportVaultWarning");