Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutch@xamarin.com>2012-01-05 07:51:19 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2012-01-05 07:51:19 +0400
commit6a52e3bb6376437a7e675cd0b3ae881cbd1eb267 (patch)
treea9e42a632ede33c1b4f0418da15a51ae7df922d3
parentfb135cce2446bf86b85b4747db984b32610e0b87 (diff)
[Ide] Add button mnemonics to error report dialog
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/LogReportingStartup.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/LogReportingStartup.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/LogReportingStartup.cs
index 4a656b06d7..e492aa8215 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/LogReportingStartup.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/LogReportingStartup.cs
@@ -44,9 +44,9 @@ namespace MonoDevelop.Ide
// Attach a handler for when exceptions need to be processed
LogReportingService.UnhandledErrorOccured = (enabled, ex, willShutdown) => {
- var doNotSend = new AlertButton (GettextCatalog.GetString ("Do Not Send"));
- var sendOnce = new AlertButton (GettextCatalog.GetString ("Send This Time"));
- var alwaysSend = new AlertButton (GettextCatalog.GetString ("Always Send"));
+ var doNotSend = new AlertButton (GettextCatalog.GetString ("Do _Not Send"));
+ var sendOnce = new AlertButton (GettextCatalog.GetString ("_Send This Time"));
+ var alwaysSend = new AlertButton (GettextCatalog.GetString ("_Always Send"));
AlertButton[] buttons = null;
string message = null;