~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/addins/ChangeLogAddIn/ChangeLogAddInOptionPanelWidget.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-03-29 23:36:33 UTC
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20080329233633-l550uuwvfh1e68at
Tags: upstream-1.0+dfsg
ImportĀ upstreamĀ versionĀ 1.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                
40
40
                public void LoadPanelContents()
41
41
                {
42
 
                        nameEntry.Text = PropertyService.Get ("ChangeLogAddIn.Name", "Full Name");
43
 
                        emailEntry.Text = PropertyService.Get ("ChangeLogAddIn.Email", "Email Address");
 
42
                        nameEntry.Text = PropertyService.Get ("ChangeLogAddIn.Name", GettextCatalog.GetString("Full Name"));
 
43
                        emailEntry.Text = PropertyService.Get ("ChangeLogAddIn.Email", GettextCatalog.GetString("Email Address"));
44
44
                        integrationCheck.Active = PropertyService.Get ("ChangeLogAddIn.VersionControlIntegration", true);
45
45
                }
46
46