Consistent wording to refer to Working Drafts (Doc Versions)

This commit is contained in:
Rich
2015-08-04 13:00:57 +00:00
parent a9745c111a
commit 9854bc7690
3 changed files with 5 additions and 5 deletions

View File

@@ -1938,7 +1938,7 @@ namespace VEPROMS
string message = string.Empty;
if (!MySessionInfo.CanCheckOutItem(args.DocVersionConfig.MyDocVersion.VersionID, CheckOutType.DocVersion, ref message))
{
MessageBox.Show(this, message, "Document Version Already Checked Out", MessageBoxButtons.OK, MessageBoxIcon.Warning);
MessageBox.Show(this, message, "Working Draft Already Checked Out", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.Cursor = Cursors.Default;
return DialogResult.None;
}
@@ -2757,7 +2757,7 @@ namespace VEPROMS
fldbtn.Click += new EventHandler(fldbtn_Click);
if (fi.ChildFolderCount == 0)
{
ButtonItem dvbtn = new ButtonItem("dvbtn", "Document Version");
ButtonItem dvbtn = new ButtonItem("dvbtn", "Working Draft");
btnNew.SubItems.Add(dvbtn);
dvbtn.Click += new EventHandler(dvbtn_Click);
}