changeset 39:b79bb7b449c3

Reworded the QuickAuctions automail status changer config options. (old: auto mailing, new: auto mail status) Changelog rewording to make more sense.
author Zerotorescue
date Sat, 11 Sep 2010 14:12:23 +0200
parents 5dd069184eb9
children b3b72b1549a3
files Changelog.txt Modules/Config.lua Modules/OpenAll.lua
diffstat 3 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/Changelog.txt	Sat Sep 11 01:41:14 2010 +0200
+++ b/Changelog.txt	Sat Sep 11 14:12:23 2010 +0200
@@ -6,8 +6,8 @@
 v1.1.1		Zerotorescue		?		?
 	
 	M Now using more standardized prefixes for changes.
-	M No longer showing spent ¨0 minutes¨ when you spent less than 59 seconds at the mailbox.
-	M When you only opened a single mail, the summary will show ¨from time mail¨ rather than ¨from these mails¨.
+	M No longer showing spent "0 minutes" when you spent less than 59 seconds at the mailbox.
+	M When you only opened only a single mail, the summary will show "from this mail" rather than "from these mails".
 
 v1.1.0		Zerotorescue		Fri, 10 Sep 2010 18:59:58 +0200		rev 31
 
--- a/Modules/Config.lua	Sat Sep 11 01:41:14 2010 +0200
+++ b/Modules/Config.lua	Sat Sep 11 14:12:23 2010 +0200
@@ -310,8 +310,8 @@
 					autoDisableQAAutoMail = {
 						order = 20,
 						type = "toggle",
-						name = "Turn Quick Auction's auto mailing |cffff0000off|r when opening mail",
-						desc = "Quick Auction's auto mailing is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished.",
+						name = "Turn Quick Auction's auto mail status |cffff0000off|r when opening mail",
+						desc = "Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished.",
 						width = "full",
 						get =  function() return MailOpener.db.profile.general.autoDisableQAAutoMail; end,
 						set = function(i, v) MailOpener.db.profile.general.autoDisableQAAutoMail = v; end,
@@ -320,8 +320,8 @@
 					autoReenableQAAutoMail = {
 						order = 30,
 						type = "toggle",
-						name = "Turn Quick Auction's auto mailing |cff00ff00on|r after opening mail has finished",
-						desc = "Quick Auction's auto mailing is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished.",
+						name = "Turn Quick Auction's auto mail status |cff00ff00on|r after opening mail has finished",
+						desc = "Quick Auction's auto mail is buggy when using other mail opening addons. If you are collecting mail while auto mailer is enabled wrong items may be send to the wrong character.\n\nTo solve this you must disable Quick Auction's auto mail while opening mail and you can re-enable it when mail opening is finished.",
 						width = "full",
 						get = function() return MailOpener.db.profile.general.autoReenableQAAutoMail; end,
 						set = function(i, v) MailOpener.db.profile.general.autoReenableQAAutoMail = v; end,
@@ -331,7 +331,7 @@
 					autoSetBackQAAutoMail = {
 						order = 40,
 						type = "toggle",
-						name = "Set Quick Auction's auto mailing |cff00ffffback|r after opening mail has finished (remember it)",
+						name = "Set Quick Auction's auto mail status |cff00ffffback|r after opening mail has finished (remember it)",
 						desc = "Instead of always turning Quick Auction's auto mail on after mail opening you can choose to set it back to the value it was prior to opening mail.",
 						width = "full",
 						get = function() return MailOpener.db.profile.general.autoSetBackQAAutoMail; end,
--- a/Modules/OpenAll.lua	Sat Sep 11 01:41:14 2010 +0200
+++ b/Modules/OpenAll.lua	Sat Sep 11 14:12:23 2010 +0200
@@ -595,7 +595,7 @@
 	self:CancelTimer(self.tmrMailOpener, true);
 	
 	if not simple then
-		-- A simple stop is an automated stop, an advance stop is one manually or after a sever sync
+		-- A simple stop is an automated stop, an advanced stop is one manually or after a sever sync
 		
 		-- Recheck inventory full
 		inventoryFull = false;