changeset 111:91fe61693247

Localized the overrideCheckInbox option info and set the default DB value to true.
author Zerotorescue
date Fri, 01 Oct 2010 23:39:44 +0200
parents 4b779ae4f41f
children 981c6ac45a3f
files Core.lua Modules/Config.lua
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Core.lua	Thu Sep 30 15:23:35 2010 +0200
+++ b/Core.lua	Fri Oct 01 23:39:44 2010 +0200
@@ -33,7 +33,7 @@
 				continueOpening = false,
 				waitTime = 5,
 				initialDelay = 0.5,
-				overrideCheckInbox = false,
+				overrideCheckInbox = true,
 			},
 			modules = {
 				BeanCounterSupport = true,
--- a/Modules/Config.lua	Thu Sep 30 15:23:35 2010 +0200
+++ b/Modules/Config.lua	Fri Oct 01 23:39:44 2010 +0200
@@ -405,8 +405,8 @@
 					overrideCheckInbox = {
 						order = 12,
 						type = "toggle",
-						name = "|cffff0000Experimental|r: Don't refresh the mailbox while there is still mail waiting to be opened",
-						desc = "|cffff0000Note:|r This functionality is still very experimental. Your mailbox might not update properly if you enable this.\n\nToggling this on will prevent the mailbox from automatically refreshing while there is still openable mail remaining.\n\nIf you close the mailbox while there is still mail remaining, your client will always try to refresh the inbox when you reopen it. This feature will wait with refreshing until there is no openable mail remaining, possibly saving a few seconds.",
+						name = L["Don't refresh the mailbox while there is still mail waiting to be opened"],
+						desc = L["Having this option toggled on will prevent the mailbox from automatically refreshing while there is still openable mail remaining.\n\nIf you close the mailbox while there is still mail remaining, your client will always try to refresh the inbox when you reopen it. This feature will wait with refreshing until there is no openable mail remaining, possibly saving a few seconds."],
 						width = "full",
 						get =  function() return MailOpener.db.profile.general.overrideCheckInbox; end,
 						set = function(i, v) MailOpener.db.profile.general.overrideCheckInbox = v; end,