Text changes

This commit is contained in:
mcored 2014-03-15 06:56:44 +08:00
parent e91254e0f4
commit 9e9660077e
2 changed files with 4 additions and 4 deletions

View file

@ -191,9 +191,9 @@ public enum FileExistAction
Ask,
[Description("Overwrite file")]
Overwrite,
[Description("Add number end of file name")]
[Description("Append number to the filename")]
UniqueName,
[Description("Don't save")]
[Description("Do not save")]
Cancel
}
}

View file

@ -68,7 +68,7 @@ private void InitializeComponent()
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(352, 32);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Don\'t save";
this.btnCancel.Text = "Do not save";
this.btnCancel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
@ -81,7 +81,7 @@ private void InitializeComponent()
this.btnUniqueName.Name = "btnUniqueName";
this.btnUniqueName.Size = new System.Drawing.Size(352, 32);
this.btnUniqueName.TabIndex = 1;
this.btnUniqueName.Text = "Use unique name: ";
this.btnUniqueName.Text = "Use a unique name: ";
this.btnUniqueName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnUniqueName.UseVisualStyleBackColor = true;
this.btnUniqueName.Click += new System.EventHandler(this.btnUniqueName_Click);