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:36:29 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2012-01-05 07:36:29 +0400
commit8439dc82209459757688bd6cdda142437bbe83c4 (patch)
tree4cd191d8490b440a513e523d1506a6ce02cf05e0
parent37e59d6873c9e9365176141a5860ca595a7b1817 (diff)
[Ide] Improve wording of error reporting settings panel
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/LogAgentOptionsPanel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/LogAgentOptionsPanel.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/LogAgentOptionsPanel.cs
index 7f0cf641a9..cf3994e3b6 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/LogAgentOptionsPanel.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/LogAgentOptionsPanel.cs
@@ -61,7 +61,7 @@ namespace MonoDevelop.Ide.Gui.OptionPanels
global::Stetic.BinContainer.Attach (this);
var value = LogReportingService.ReportCrashes;
- chkCrash = new CheckButton (GettextCatalog.GetString ("Automatically submit crash diagnostic information"));
+ chkCrash = new CheckButton (GettextCatalog.GetString ("Automatically submit error diagnostic information"));
if (value.HasValue)
chkCrash.Active = value.Value;
chkCrash.Toggled += (sender, e) => reportCrash = chkCrash.Active;