misc bits of ui wording improvement

This commit is contained in:
2022-08-19 22:27:04 +00:00
parent 5422c4c43d
commit 318fd4d6b2
4 changed files with 4 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ InternalCompressLevel=ultra
[Files]
Source: "..\..\release\AyaNova.PlugIn.V8.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion;
Source: "..\..\release\AyaNova.PlugIn.V8.pdb"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion;
Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\HtmlAgilityPack.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion;
Source: "..\..\source\Plugins\AyaNova.Plugin.V8\libs\ReverseMarkdown.dll"; DestDir: "{app}\plugins\V8Migrate";Permissions: everyone-full;Flags:ignoreversion;

View File

@@ -153,7 +153,7 @@
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(188, 16);
this.label3.TabIndex = 38;
this.label3.Text = "AyaNova 8 \"SuperUser\" login:";
this.label3.Text = "AyaNova 8 \"superuser\" login:";
//
// Auth
//

View File

@@ -48,7 +48,7 @@ namespace AyaNova.PlugIn.V8
var res = await util.AuthenticateAsync(edUserName.Text, edPassword.Text);
if (!res)
{
MessageBox.Show("AyaNova 8 SuperUser account login failed");
MessageBox.Show("AyaNova 8 superuser account login failed");
btnOk.Enabled = btnTest.Enabled = true;
return;
}

View File

@@ -477,6 +477,7 @@ namespace AyaNova.PlugIn.V8
//ERASE DB
progress.Append("Erasing AyaNova 8 data");
progress.SubOp("Erasing destination server database...");
var a = await util.PostAsync("license/permanently-erase-all-data", "\"I understand\"");