mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed typos
This commit is contained in:
parent
08b53d1919
commit
31a8838919
4 changed files with 6 additions and 8 deletions
1
Crypto Notepad/Forms/AboutFrom.Designer.cs
generated
1
Crypto Notepad/Forms/AboutFrom.Designer.cs
generated
|
|
@ -47,7 +47,6 @@ private void InitializeComponent()
|
|||
this.appVersionLabel.Size = new System.Drawing.Size(210, 22);
|
||||
this.appVersionLabel.TabIndex = 1;
|
||||
this.appVersionLabel.Text = "Crypto Notepad 1.0.0";
|
||||
this.aboutToolTip.SetToolTip(this.appVersionLabel, "Left click to copy debug info to the clipboard");
|
||||
this.appVersionLabel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.AppVersionLabel_MouseClick);
|
||||
this.appVersionLabel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.AppVersionLabel_MouseDoubleClick);
|
||||
this.appVersionLabel.MouseEnter += new System.EventHandler(this.appVersionLabel_MouseEnter);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using JCS;
|
||||
using Microsoft.Win32;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
|
|
@ -98,7 +97,7 @@ private void AboutToolTip_Draw(object sender, DrawToolTipEventArgs e)
|
|||
private void appVersionLabel_MouseEnter(object sender, EventArgs e)
|
||||
{
|
||||
aboutToolTip.AutoPopDelay = 5000;
|
||||
aboutToolTip.SetToolTip(appVersionLabel, "Left click to copy debug info to the clipboard");
|
||||
aboutToolTip.SetToolTip(appVersionLabel, "Left click for copy debug info to the clipboard");
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -117,12 +117,12 @@
|
|||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aboutToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>176, 17</value>
|
||||
</metadata>
|
||||
<metadata name="randomColorTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>21, 17</value>
|
||||
</metadata>
|
||||
<metadata name="aboutToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>176, 17</value>
|
||||
</metadata>
|
||||
<data name="appInfoRichTextBox.Text" xml:space="preserve">
|
||||
<value>This is an open-source app created by Sigmanor and licensed under MIT.
|
||||
The source code, issues and documentation posted on GitHub.
|
||||
|
|
@ -137,7 +137,7 @@ h5p9sl https://github.com/h5p9sl
|
|||
|
||||
External libraries:
|
||||
|
||||
CustomSettingsProvider: http://www.codeproject.com/Articles/20917/1
|
||||
CustomSettingsProvider: https://www.codeproject.com/Articles/20917/1
|
||||
TextBox Placeholder: https://www.codeproject.com/Articles/319910/0
|
||||
PasswordGenerator: https://github.com/prjseal/PasswordGenerator/
|
||||
OS Version Info: https://www.codeproject.com/Articles/73000/2
|
||||
|
|
|
|||
2
Crypto Notepad/Forms/SettingsForm.Designer.cs
generated
2
Crypto Notepad/Forms/SettingsForm.Designer.cs
generated
|
|
@ -460,7 +460,7 @@ private void InitializeComponent()
|
|||
this.encryptionHintLabel.Size = new System.Drawing.Size(223, 96);
|
||||
this.encryptionHintLabel.TabIndex = 7;
|
||||
this.encryptionHintLabel.Text = resources.GetString("encryptionHintLabel.Text");
|
||||
this.settingsToolTip.SetToolTip(this.encryptionHintLabel, "Left click to permanently hide this hint");
|
||||
this.settingsToolTip.SetToolTip(this.encryptionHintLabel, "Left click for permanently hide this hint");
|
||||
this.encryptionHintLabel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.EncryptionHintLabel_MouseClick);
|
||||
//
|
||||
// passwordIterationsTextBox
|
||||
|
|
|
|||
Loading…
Reference in a new issue