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

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/KeyBindingsPanel.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:
71
71
                        col.AddAttribute (crt, "weight", boldCol);
72
72
                        keyTreeView.AppendColumn (col);
73
73
                        
74
 
                        keyTreeView.AppendColumn ("Key Binding", new CellRendererText (), "text", bindingCol);
75
 
                        keyTreeView.AppendColumn ("Description", new CellRendererText (), "text", descCol);
 
74
                        keyTreeView.AppendColumn (GettextCatalog.GetString ("Key Binding"), new CellRendererText (), "text", bindingCol);
 
75
                        keyTreeView.AppendColumn (GettextCatalog.GetString ("Description"), new CellRendererText (), "text", descCol);
76
76
                        
77
77
                        keyTreeView.Selection.Changed += new EventHandler (OnKeysTreeViewSelectionChange);
78
78
                        
80
80
                        accelEntry.KeyReleaseEvent += new KeyReleaseEventHandler (OnAccelEntryKeyRelease);
81
81
                        updateButton.Clicked += new EventHandler (OnUpdateButtonClick);
82
82
                        
83
 
                        schemeCombo.AppendText ("Current");
 
83
                        schemeCombo.AppendText (GettextCatalog.GetString ("Current"));
84
84
                        foreach (string s in KeyBindingService.SchemeNames)
85
85
                                schemeCombo.AppendText (s);
86
86