Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Serg-Norseman committed Dec 26, 2016
2 parents e9404c7 + cdcb9c6 commit 7118059
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 68 deletions.
149 changes: 81 additions & 68 deletions projects/GEDKeeper2/GKUI/BaseWin.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions projects/GEDKeeper2/GKUI/BaseWin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ private void contextMenu_Opening(object sender, CancelEventArgs e)
this.miRecordDuplicate.Visible = (recView == this.ListPersons);
}

private void miRecordAdd_Click(object sender, EventArgs e)
{
this.RecordAdd();
}

private void miRecordEdit_Click(object sender, EventArgs e)
{
this.RecordEdit(null, null);
Expand Down Expand Up @@ -1176,6 +1181,7 @@ void ILocalization.SetLang()
this.tabsRecords.TabPages[ 9].Text = LangMan.LS(LSID.LSID_RPCommunications);
this.tabsRecords.TabPages[10].Text = LangMan.LS(LSID.LSID_RPLocations);

this.miRecordAdd.Text = LangMan.LS(LSID.LSID_MIRecordAdd);
this.miRecordEdit.Text = LangMan.LS(LSID.LSID_MIRecordEdit);
this.miRecordDelete.Text = LangMan.LS(LSID.LSID_MIRecordDelete);
this.miRecordDuplicate.Text = LangMan.LS(LSID.LSID_RecordDuplicate);
Expand Down

0 comments on commit 7118059

Please sign in to comment.