1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Add a new LangString 'LINUX_VOL_MOUNTED' to show when volume mounted. Fixes (#1029)

the issue of 'LINUX_VOL_DISMOUNTED' being shown even when not dismounting.
This commit is contained in:
Jertzukka
2023-05-18 23:59:36 +03:00
committed by GitHub
parent 8e443c25cc
commit 8072207eb6
43 changed files with 43 additions and 1 deletions

View File

@@ -1008,7 +1008,7 @@ namespace VeraCrypt
{
if (!message.IsEmpty())
message += L'\n';
message += StringFormatter (LangString["LINUX_VOL_DISMOUNTED"], wstring (volume.Path));
message += StringFormatter (LangString["LINUX_VOL_MOUNTED"], wstring (volume.Path));
}
ShowInfo (message);
}