VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms
diff options
context:
space:
mode:
authorvstoykovbg <vstoykovbg@users.noreply.github.com>2019-12-02 23:07:48 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-02 22:07:48 +0100
commitf32c1538323edef56ee8413e7f6c7080a2fdfb49 (patch)
tree0ea2d226ebd2a2fce6297b20ec323f4ad82b6d78 /src/Main/Forms
parent80e7b318067dbc23570f7636ff00086820d71be7 (diff)
downloadVeraCrypt-f32c1538323edef56ee8413e7f6c7080a2fdfb49.tar.gz
VeraCrypt-f32c1538323edef56ee8413e7f6c7080a2fdfb49.zip
fixed typo "this [is (#559)
Diffstat (limited to 'src/Main/Forms')
-rw-r--r--src/Main/Forms/VolumeCreationWizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/Forms/VolumeCreationWizard.cpp b/src/Main/Forms/VolumeCreationWizard.cpp
index c0201b0e..b6d60f42 100644
--- a/src/Main/Forms/VolumeCreationWizard.cpp
+++ b/src/Main/Forms/VolumeCreationWizard.cpp
@@ -175,7 +175,7 @@ namespace VeraCrypt
else if (SelectedVolumeType == VolumeType::Hidden)
{
pageTitle = LangString["SIZE_HIDVOL_TITLE"];
- pageText = LangString["SIZE_HELP_HIDDEN_VOL"] + L"\n\n" + _("Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This not a bug in VeraCrypt but a limitation of the operating system.");
+ pageText = LangString["SIZE_HELP_HIDDEN_VOL"] + L"\n\n" + _("Please note that if your operating system does not allocate files from the beginning of the free space, the maximum possible hidden volume size may be much smaller than the size of the free space on the outer volume. This is not a bug in VeraCrypt but a limitation of the operating system.");
freeSpaceText = StringFormatter (_("Maximum possible hidden volume size for this volume is {0}."), Gui->SizeToString (MaxHiddenVolumeSize));
}
else