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@2
|
4 -- UTF8
|
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@4
|
10 L["Nobody is missing a proper flask."] = true
|
Xiiph@4
|
11 L["Nobody is missing a proper food buff."] = true
|
Xiiph@4
|
12
|
Xiiph@0
|
13 L["Options"] = true
|
Xiiph@0
|
14 L["Shows the blizzard addon configuration window"] = true
|
Xiiph@0
|
15
|
Xiiph@0
|
16 L["Raid Check"] = true
|
Xiiph@0
|
17 L["Checks the raid for flask/food buffs"] = true
|
Xiiph@0
|
18
|
Xiiph@0
|
19 L["Raid Check (Silent)"] = true
|
Xiiph@0
|
20 L["Checks the raid for flask/food buffs, but does not remind raiders, regardless of other settings."] = true
|
Xiiph@0
|
21
|
Xiiph@0
|
22 L["General Settings"] = true
|
Xiiph@0
|
23
|
Xiiph@0
|
24 L["Check for Flask"] = true
|
Xiiph@0
|
25 L["Checks the raid for valid flasks and reports results"] = true
|
Xiiph@0
|
26
|
Xiiph@0
|
27 L["Flask expiration"] = true
|
Xiiph@0
|
28 L["Check for soon to expire flask buffs"] = true
|
Xiiph@0
|
29
|
Xiiph@0
|
30 L["Checks the raid for valid food buffs and reports results"] = true
|
Xiiph@0
|
31 L["Check for Food"] = true
|
Xiiph@0
|
32
|
Xiiph@0
|
33 L["Advertise ICU"] = true
|
Xiiph@0
|
34 L["Let everyone know you are using ICU! Prefixes whispers and reports"] = true
|
Xiiph@0
|
35
|
Xiiph@0
|
36 L["Raid reminder"] = true
|
Xiiph@0
|
37 L["Whisper the raider lacking (or soon to expire, if enabled) food/flask buff a reminder"] = true
|
Xiiph@0
|
38
|
Xiiph@7
|
39 L["Report ready checks"] = true
|
Xiiph@7
|
40 L["Report the results of ready checks"] = true
|
Xiiph@7
|
41
|
Xiiph@7
|
42 L["Report buff checks"] = true
|
Xiiph@7
|
43 L["Report flask/food check results"] = true
|
Xiiph@0
|
44
|
Xiiph@0
|
45 L["Report Destination"] = true
|
Xiiph@0
|
46 L["Report the results to the following channel"] = true
|
Xiiph@0
|
47
|
Xiiph@0
|
48 L["Officer"] = true
|
Xiiph@0
|
49 L["Guild"] = true
|
Xiiph@0
|
50 L["Raid"] = true
|
Xiiph@0
|
51 L["Say"] = true
|
Xiiph@0
|
52 L["Self"] = true
|
Xiiph@0
|
53
|
Xiiph@7
|
54 L["Everyone is ready."] = true
|
Xiiph@7
|
55 L["Not Ready"] = true
|
Xiiph@7
|
56
|
Xiiph@0
|
57 L["Manual checks only"] = true
|
Xiiph@0
|
58 L["Only perform buff checks if initiated manually (via /icu check)"] = true
|
Xiiph@0
|
59
|
Xiiph@7
|
60 L["Inspect AFTER ready check finishes"] = true
|
Xiiph@7
|
61 L["Don't check buffs until the ready check has finished (or timed out)"] = true
|
Xiiph@7
|
62
|
Xiiph@0
|
63 L["Flask reminder"] = true
|
Xiiph@0
|
64 L["Message whispered to raiders missing a cataclysm flask"] = true
|
Xiiph@0
|
65
|
Xiiph@0
|
66 L["Flask expiration"] = true
|
Xiiph@0
|
67 L["Message whispered to raiders with less than 10 minutes left on their flask"] = true
|
Xiiph@0
|
68
|
Xiiph@0
|
69 L["Food reminder"] = true
|
Xiiph@0
|
70 L["Message whispered to raiders missing the well-fed buff"] = true
|
Xiiph@0
|
71
|
Xiiph@1
|
72 L["Messages"] = true
|
Xiiph@1
|
73 L["Disabled Zones"] = true
|
Xiiph@1
|
74
|
Xiiph@1
|
75 -- Zones
|
Xiiph@1
|
76 L['Toggle ICU automatic checking |cffcc0000off|r in the selected zones.'] = true
|
Xiiph@3
|
77 L["Enable ICU in all zones"] = true
|
Xiiph@3
|
78
|
Xiiph@1
|
79 L["Blackwing Descent"] = true
|
Xiiph@1
|
80 L["Baradin Hold"] = true
|
Xiiph@1
|
81 L["Throne of the Four Winds"] = true
|
Xiiph@5
|
82 L["The Bastion of Twilight"] = true
|
Xiiph@1
|
83
|
Xiiph@0
|
84 L["ICU"] = true
|
Xiiph@0
|
85 L["Report"] = true
|
Xiiph@0
|
86
|
Xiiph@0
|
87 L["Missing Flask"] = true
|
Xiiph@0
|
88 L["Missing Food"] = true
|
Xiiph@0
|
89 --@end-do-not-package@ |