Mercurial > wow > mailopener
diff Modules/Collected.lua @ 57:8d1a34cec258
Any English professors near? ?2 mail? vs ?2 mails?.
| author | Zerotorescue |
|---|---|
| date | Sun, 12 Sep 2010 22:20:55 +0200 |
| parents | 75c36b3d5443 |
| children | eadff31e61e8 |
line wrap: on
line diff
--- a/Modules/Collected.lua Sun Sep 12 22:12:53 2010 +0200 +++ b/Modules/Collected.lua Sun Sep 12 22:20:55 2010 +0200 @@ -239,12 +239,12 @@ local timeSpentMinutes = floor( timeSpent / 60 ); local timeSpentSeconds = ( timeSpent % 60 ); if timeSpentMinutes ~= 0 then - printMessage = printMessage .. format("Collected a total of %d mails within %d minutes and %d seconds. ", mailOpened, timeSpentMinutes, timeSpentSeconds); + printMessage = printMessage .. format("Collected a total of %d mail within %d minutes and %d seconds. ", mailOpened, timeSpentMinutes, timeSpentSeconds); else - printMessage = printMessage .. format("Collected a total of %d mails within %d seconds. ", mailOpened, timeSpentSeconds); + printMessage = printMessage .. format("Collected a total of %d mail within %d seconds. ", mailOpened, timeSpentSeconds); end else - printMessage = printMessage .. format("Collected a total of %d mails. ", mailOpened); + printMessage = printMessage .. format("Collected a total of %d mail. ", mailOpened); end elseif timeSpent and timeSpent > 0 then local timeSpentMinutes = floor( timeSpent / 60 ); @@ -281,12 +281,12 @@ local timeSpentMinutes = floor( sessionTimeSpent / 60 ); local timeSpentSeconds = ( sessionTimeSpent % 60 ); if timeSpentMinutes ~= 0 then - printMessage = printMessage .. format("Collected a total of %d mails within %d minutes and %d seconds this session. ", mailOpened, timeSpentMinutes, timeSpentSeconds); + printMessage = printMessage .. format("Collected a total of %d mail within %d minutes and %d seconds this session. ", mailOpened, timeSpentMinutes, timeSpentSeconds); else - printMessage = printMessage .. format("Collected a total of %d mails within %d seconds this session. ", mailOpened, timeSpentSeconds); + printMessage = printMessage .. format("Collected a total of %d mail within %d seconds this session. ", mailOpened, timeSpentSeconds); end else - printMessage = printMessage .. format("Collected a total of %d mails this session. ", sessionMailOpened); + printMessage = printMessage .. format("Collected a total of %d mail this session. ", sessionMailOpened); end elseif sessionTimeSpent then local timeSpentMinutes = floor( sessionTimeSpent / 60 );
