comparison enUS.lua @ 0:98c6f55e6619

First commit
author Xiiph
date Sat, 05 Feb 2011 16:45:02 +0100
parents
children 6af2d0a0c537
comparison
equal deleted inserted replaced
-1:000000000000 0:98c6f55e6619
1 -- enUS.lua
2 local L = LibStub("AceLocale-3.0"):NewLocale("ICU", "enUS", true)
3 if not L then return end
4
5 --@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true)@
6 --@do-not-package@
7 L["Well Fed reminder!"] = true
8 L["Flask reminder!"] = true
9 L["Your Flask runs out in less than 10 minutes!"] = true
10
11 L["Options"] = true
12 L["Shows the blizzard addon configuration window"] = true
13
14 L["Raid Check"] = true
15 L["Checks the raid for flask/food buffs"] = true
16
17 L["Raid Check (Silent)"] = true
18 L["Checks the raid for flask/food buffs, but does not remind raiders, regardless of other settings."] = true
19
20 L["General Settings"] = true
21
22 L["Check for Flask"] = true
23 L["Checks the raid for valid flasks and reports results"] = true
24
25 L["Flask expiration"] = true
26 L["Check for soon to expire flask buffs"] = true
27
28 L["Checks the raid for valid food buffs and reports results"] = true
29 L["Check for Food"] = true
30
31 L["Advertise ICU"] = true
32 L["Let everyone know you are using ICU! Prefixes whispers and reports"] = true
33
34 L["Raid reminder"] = true
35 L["Whisper the raider lacking (or soon to expire, if enabled) food/flask buff a reminder"] = true
36
37 L["Report results"] = true
38 L["Report the results after finishing"] = true
39
40 L["Report Destination"] = true
41 L["Report the results to the following channel"] = true
42
43 L["Officer"] = true
44 L["Guild"] = true
45 L["Raid"] = true
46 L["Say"] = true
47 L["Self"] = true
48
49 L["Manual checks only"] = true
50 L["Only perform buff checks if initiated manually (via /icu check)"] = true
51
52 L["Check after readycheck"] = true
53 L["Don't check buffs until ready check has finished (or timed out)"] = true
54
55 L["Flask reminder"] = true
56 L["Message whispered to raiders missing a cataclysm flask"] = true
57
58 L["Flask expiration"] = true
59 L["Message whispered to raiders with less than 10 minutes left on their flask"] = true
60
61 L["Food reminder"] = true
62 L["Message whispered to raiders missing the well-fed buff"] = true
63
64 L["ICU"] = true
65 L["Report"] = true
66
67 L["Missing Flask"] = true
68 L["Missing Food"] = true
69
70
71 --@end-do-not-package@