Mercurial > wow > icu
diff enUS.lua @ 0:98c6f55e6619
First commit
author | Xiiph |
---|---|
date | Sat, 05 Feb 2011 16:45:02 +0100 |
parents | |
children | 6af2d0a0c537 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/enUS.lua Sat Feb 05 16:45:02 2011 +0100 @@ -0,0 +1,71 @@ +-- enUS.lua +local L = LibStub("AceLocale-3.0"):NewLocale("ICU", "enUS", true) +if not L then return end + +--@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true)@ +--@do-not-package@ +L["Well Fed reminder!"] = true +L["Flask reminder!"] = true +L["Your Flask runs out in less than 10 minutes!"] = true + +L["Options"] = true +L["Shows the blizzard addon configuration window"] = true + +L["Raid Check"] = true +L["Checks the raid for flask/food buffs"] = true + +L["Raid Check (Silent)"] = true +L["Checks the raid for flask/food buffs, but does not remind raiders, regardless of other settings."] = true + +L["General Settings"] = true + +L["Check for Flask"] = true +L["Checks the raid for valid flasks and reports results"] = true + +L["Flask expiration"] = true +L["Check for soon to expire flask buffs"] = true + +L["Checks the raid for valid food buffs and reports results"] = true +L["Check for Food"] = true + +L["Advertise ICU"] = true +L["Let everyone know you are using ICU! Prefixes whispers and reports"] = true + +L["Raid reminder"] = true +L["Whisper the raider lacking (or soon to expire, if enabled) food/flask buff a reminder"] = true + +L["Report results"] = true +L["Report the results after finishing"] = true + +L["Report Destination"] = true +L["Report the results to the following channel"] = true + +L["Officer"] = true +L["Guild"] = true +L["Raid"] = true +L["Say"] = true +L["Self"] = true + +L["Manual checks only"] = true +L["Only perform buff checks if initiated manually (via /icu check)"] = true + +L["Check after readycheck"] = true +L["Don't check buffs until ready check has finished (or timed out)"] = true + +L["Flask reminder"] = true +L["Message whispered to raiders missing a cataclysm flask"] = true + +L["Flask expiration"] = true +L["Message whispered to raiders with less than 10 minutes left on their flask"] = true + +L["Food reminder"] = true +L["Message whispered to raiders missing the well-fed buff"] = true + +L["ICU"] = true +L["Report"] = true + +L["Missing Flask"] = true +L["Missing Food"] = true + + +--@end-do-not-package@ \ No newline at end of file