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