# HG changeset patch # User Zerotorescue # Date 1285969184 -7200 # Node ID 91fe61693247d141c70a57b19f2cc357754c2e7f # Parent 4b779ae4f41f17bb8fd47c0f6dd9b10e951da564 Localized the overrideCheckInbox option info and set the default DB value to true. diff -r 4b779ae4f41f -r 91fe61693247 Core.lua --- 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, diff -r 4b779ae4f41f -r 91fe61693247 Modules/Config.lua --- 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,