vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- Version : English - sarf
2 -- Translation by : None
3  
4 BINDING_HEADER_COOLDOWNCOUNTHEADER = "Cooldown Count";
5 BINDING_NAME_COOLDOWNCOUNT = "Cooldown Count Toggle";
6  
7 COOLDOWNCOUNT_CONFIG_HEADER = "Cooldown Count";
8 COOLDOWNCOUNT_CONFIG_HEADER_INFO = "Contains settings for the Cooldown Count,\nan AddOn which displays the time until cooldown\nis done on actions.";
9  
10 COOLDOWNCOUNT_ENABLED = "Enable Cooldown Count";
11 COOLDOWNCOUNT_ENABLED_INFO = "Enables Cooldown Count, displaying the time until cooldown is complete on actions.";
12  
13 COOLDOWNCOUNT_ROGUE_STEALTH = "Rogue Stealth CooldownCount";
14 COOLDOWNCOUNT_ROGUE_STEALTH_INFO = "Enables Cooldown Count on Rogue Stealth.";
15  
16 COOLDOWNCOUNT_NOSPACES = "Remove space between time and time unit";
17 COOLDOWNCOUNT_NOSPACES_INFO = "Removes the space between the time and the time unit, so that, for example, \"19 m\" becomes \"19m\".";
18  
19 COOLDOWNCOUNT_SIDECOUNT = "Offset SideBars Side Count";
20 COOLDOWNCOUNT_SIDECOUNT_INFO = "Will make the cooldown counts on the sidebar be placed further to the middle of the screen.";
21  
22 COOLDOWNCOUNT_FLASHSPEED = "Time between wear-off flashes";
23 COOLDOWNCOUNT_FLASHSPEED_INFO = "Determines how long time should be allowed between each flash when the cooldown timer is about to expire.";
24  
25 COOLDOWNCOUNT_FLASHSPEED_SLIDER_DESCRIPTION = "Length";
26 COOLDOWNCOUNT_FLASHSPEED_SLIDER_APPEND = " second(s)";
27  
28 COOLDOWNCOUNT_HIDEUNTILTIMELEFT = "Hide until...";
29 COOLDOWNCOUNT_HIDEUNTILTIMELEFT_INFO = "Will hide the CooldownCount timers until they reach the specified time (0 = visible all the time).";
30  
31 COOLDOWNCOUNT_HIDEUNTILTIMELEFT_SLIDER_DESCRIPTION = "Length";
32 COOLDOWNCOUNT_HIDEUNTILTIMELEFT_SLIDER_APPEND = " second(s)";
33  
34 COOLDOWNCOUNT_HOURS_FORMAT = "%s h";
35 COOLDOWNCOUNT_MINUTES_FORMAT = "%s m";
36  
37 COOLDOWNCOUNT_HOUR_MINUTES_FORMAT = "%s:%s";
38 COOLDOWNCOUNT_MINUTES_SECONDS_FORMAT = "%s:%s";
39 COOLDOWNCOUNT_SECONDS_FORMAT = "%s";
40  
41 COOLDOWNCOUNT_SECONDS_LONG_FORMAT = "%s s";
42  
43 COOLDOWNCOUNT_USERSCALE = "Change the scale";
44 COOLDOWNCOUNT_USERSCALE_INFO = "Manually changes the scale which CooldownCount uses. Strange results may occur. Default is 1.";
45 COOLDOWNCOUNT_USERSCALE_SLIDER_DESCRIPTION = "Scale";
46 COOLDOWNCOUNT_USERSCALE_SLIDER_APPEND = " percent";
47  
48 COOLDOWNCOUNT_USELONGTIMERS = "Use long timer descriptions";
49 COOLDOWNCOUNT_USELONGTIMERS_INFO = "Will use long (explicit) timer descriptions.";
50  
51 COOLDOWNCOUNT_NORMALCOLOR_SET = "Set color of text";
52 COOLDOWNCOUNT_NORMALCOLOR_SET_INFO = "Set the color of the normal CooldownCount text.";
53  
54 COOLDOWNCOUNT_FLASHCOLOR_SET = "Set color of flash";
55 COOLDOWNCOUNT_FLASHCOLOR_SET_INFO = "Set the color of the flashing CooldownCount text.";
56 COOLDOWNCOUNT_SETTEXT = "Set";
57  
58 COOLDOWNCOUNT_ALPHA = "Alpha";
59 COOLDOWNCOUNT_ALPHA_INFO = "Determines amount of opacity of the CooldownCount.";
60  
61 COOLDOWNCOUNT_ALPHA_SLIDER_DESCRIPTION = "Alpha";
62 COOLDOWNCOUNT_ALPHA_SLIDER_APPEND = " percent";
63  
64  
65 -- Slash Commands
66  
67 COOLDOWNCOUNT_SLASH_ENABLE = "enable";
68 COOLDOWNCOUNT_SLASH_DISABLE = "disable";
69 COOLDOWNCOUNT_SLASH_SET = "set";
70 COOLDOWNCOUNT_SLASH_FLASHSPEED = "flash";
71 COOLDOWNCOUNT_SLASH_SCALE = "scale";
72 COOLDOWNCOUNT_SLASH_ALPHA = "alpha";
73 COOLDOWNCOUNT_SLASH_NOSPACES = "space";
74 COOLDOWNCOUNT_SLASH_NORMALCOLOR = "normalcolor";
75 COOLDOWNCOUNT_SLASH_FLASHCOLOR = "flashcolor";
76 COOLDOWNCOUNT_SLASH_USELONGTIMERS = "uselongtimers";
77 COOLDOWNCOUNT_SLASH_HIDEUNTILTIMELEFT = "hideuntil";
78  
79 COOLDOWNCOUNT_PARAM_ON = "on";
80 COOLDOWNCOUNT_PARAM_OFF = "off";
81 COOLDOWNCOUNT_PARAM_TOGGLE = "toggle";
82  
83  
84 COOLDOWNCOUNT_SLASH_USAGE = {
85 " Usage: /cooldowncount (or /cc) <command> [params]",
86 "",
87 " Commands:",
88 COOLDOWNCOUNT_SLASH_ENABLE.." - enables CooldownCount",
89 COOLDOWNCOUNT_SLASH_DISABLE.." - disables CooldownCount",
90 COOLDOWNCOUNT_SLASH_SET.." - enables/disables CooldownCount",
91 COOLDOWNCOUNT_SLASH_FLASHSPEED.." - controls the flash speed",
92 COOLDOWNCOUNT_SLASH_SCALE.." - controls the scaling",
93 COOLDOWNCOUNT_SLASH_ALPHA.." - controls the alpha",
94 COOLDOWNCOUNT_SLASH_NOSPACES.." - controls the spacing (whether to put a space between number and unit)",
95 COOLDOWNCOUNT_SLASH_NORMALCOLOR.." - choose normal CooldownCount color",
96 COOLDOWNCOUNT_SLASH_FLASHCOLOR.." - choose flashing CooldownCount color",
97 COOLDOWNCOUNT_SLASH_HIDEUNTILTIMELEFT.." - hide until specified number of seconds left, 0 disables",
98 --COOLDOWNCOUNT_SLASH_USELONGTIMERS.." - control long timer descriptions"
99 };
100  
101 COOLDOWNCOUNT_CHAT_ALPHA_NOT_SPECIFIED = "Cooldown Count alpha requires you to specify a number.";
102  
103 COOLDOWNCOUNT_CHAT_USERSCALE = "Cooldown Count user defined scale set to %s.";
104 COOLDOWNCOUNT_CHAT_USERSCALE_NOT_SPECIFIED = "Cooldown Count scale requires you to specify a number.";
105  
106 COOLDOWNCOUNT_CHAT_USELONGTIMERS_ENABLED = "Cooldown Count use long timer descriptions enabled.";
107 COOLDOWNCOUNT_CHAT_USELONGTIMERS_DISABLED = "Cooldown Count use long timer descriptions disabled.";
108  
109  
110  
111 COOLDOWNCOUNT_CHAT_ENABLED = "Cooldown Count enabled.";
112 COOLDOWNCOUNT_CHAT_DISABLED = "Cooldown Count disabled.";
113  
114 COOLDOWNCOUNT_CHAT_ROGUE_STEALTH_ENABLED = "Cooldown Count on Rogue Stealth enabled.";
115 COOLDOWNCOUNT_CHAT_ROGUE_STEALTH_DISABLED = "Cooldown Count on Rogue Stealth disabled.";
116  
117 COOLDOWNCOUNT_CHAT_NOSPACES_ENABLED = "Cooldown Count no spaces enabled.";
118 COOLDOWNCOUNT_CHAT_NOSPACES_DISABLED = "Cooldown Count no spaces disabled.";
119 COOLDOWNCOUNT_CHAT_FLASHSPEED = "Cooldown Count flash speed set to %s.";
120  
121 COOLDOWNCOUNT_CHAT_COMMAND_MAIN_INFO = "Controls Cooldown Count.";
122 COOLDOWNCOUNT_CHAT_COMMAND_ENABLE_INFO = "Enables/disables Cooldown Count.";
123 COOLDOWNCOUNT_CHAT_COMMAND_SIDECOUNT_ENABLE_INFO = "Enables/disables Cooldown Count side bar offset.";
124 COOLDOWNCOUNT_CHAT_COMMAND_FLASHSPEED_INFO = "Sets how long the time should be (in seconds) between each flash when the cooldown is about to expire.";
125 COOLDOWNCOUNT_CHAT_COMMAND_SCALE_INFO = "Sets how big a scale the Cooldown Count numbers should have.";
126  
127 COOLDOWNCOUNT_CHAT_ALPHA_FORMAT = "Cooldown Count alpha set to %2f";
128 COOLDOWNCOUNT_CHAT_NORMAL_COLOR_SET = "Cooldown Count - normal countdown color set.";
129 COOLDOWNCOUNT_CHAT_FLASH_COLOR_SET = "Cooldown Count - flash countdown color set.";
130  
131 COOLDOWNCOUNT_CHAT_HIDEUNTILTIMELEFT = "Cooldown Count hide until time left set to %d.";
132 COOLDOWNCOUNT_CHAT_HIDEUNTILTIMELEFT_NOT_SPECIFIED = "Cooldown Count hide until time left requires you to specify a number.";
133  
134  
135 -- Classes
136  
137 COOLDOWNCOUNT_CLASS_ROGUE = "Rogue";
138