vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | --[[ TinyTip by Thrae |
2 | -- |
||
3 | -- |
||
4 | -- English Localization (Default) |
||
5 | -- For TinyTipChat |
||
6 | -- |
||
7 | -- TinyTipChatLocale should be defined in your FIRST localization |
||
8 | -- code. |
||
9 | -- |
||
10 | -- Note: Other localization is in TinyTipLocale_enEN. |
||
11 | -- |
||
12 | --]] |
||
13 | |||
14 | if TinyTipChatLocale then |
||
15 | TinyTipChatLocale_MenuTitle = "TinyTip Options" |
||
16 | |||
17 | TinyTipChatLocale_On = "On" |
||
18 | TinyTipChatLocale_Off = "Off" |
||
19 | TinyTipChatLocale_GameDefault = "Game's Default" |
||
20 | TinyTipChatLocale_TinyTipDefault = "TinyTip's Default" |
||
21 | |||
22 | if getglobal("TinyTipAnchorExists") then |
||
23 | TinyTipChatLocale_Opt_Main_Anchor = "Anchoring" |
||
24 | TinyTipChatLocale_Opt_MAnchor = "Unit Anchor" |
||
25 | TinyTipChatLocale_Opt_FAnchor = "Frame Anchor" |
||
26 | TinyTipChatLocale_Opt_MOffX = "Unit Offset [X]" |
||
27 | TinyTipChatLocale_Opt_MOffY = "Unit Offset [Y]" |
||
28 | TinyTipChatLocale_Opt_FOffX = "Frame Offset [X]" |
||
29 | TinyTipChatLocale_Opt_FOffY = "Frame Offset [Y]" |
||
30 | TinyTipChatLocale_Opt_AnchorAll = "Anchor Custom Tooltips" |
||
31 | TinyTipChatLocale_Opt_AlwaysAnchor = "Always Anchor GameTooltip" |
||
32 | |||
33 | TinyTipChatLocale_ChatMap_Anchor = { |
||
34 | ["LEFT"] = "LEFT", |
||
35 | ["RIGHT"] = "RIGHT", |
||
36 | ["BOTTOMRIGHT"] = "BOTTOMRIGHT", |
||
37 | ["BOTTOMLEFT"] = "BOTTOMLEFT", |
||
38 | ["BOTTOM"] = "BOTTOM", |
||
39 | ["TOP"] = "TOP", |
||
40 | ["TOPLEFT"] = "TOPLEFT", |
||
41 | ["TOPRIGHT"] = "TOPRIGHT", |
||
42 | ["CENTER"] = "CENTER" |
||
43 | } |
||
44 | |||
45 | TinyTipChatLocale_Anchor_Cursor = "CURSOR" |
||
46 | TinyTipChatLocale_Anchor_Sticky = "STICKY" |
||
47 | |||
48 | TinyTipChatLocale_Desc_Main_Anchor = "Set the tooltip's positioning." |
||
49 | TinyTipChatLocale_Desc_MAnchor = "Set the anchor for the tooltip when mousing over units in the world frame." |
||
50 | TinyTipChatLocale_Desc_FAnchor = "Set the anchor for the tooltip when mousing over ANY frame (except the WorldFrame)." |
||
51 | TinyTipChatLocale_Desc_MOffX = "Set the horizontal offset from the anchor point for units." |
||
52 | TinyTipChatLocale_Desc_MOffY = "Set the vertical offset from the anchor point for units." |
||
53 | TinyTipChatLocale_Desc_FOffX = "Set the horizontal offset from the anchor point when mousing over ANY frame." |
||
54 | TinyTipChatLocale_Desc_FOffY = "Set the vertical offset from the anchor point when mousing over ANY frame." |
||
55 | TinyTipChatLocale_Desc_AnchorAll = "Apply Custom Anchoring to ALL Frame tooltips using GameTooltip_SetDefaultAnchor, not just GameTooltip." |
||
56 | TinyTipChatLocale_Desc_AlwaysAnchor = "Force Frame Anchoring whenever the GameTooltip shows up. This can be used with mineral veins, etc. and any frame that uses GameTooltip." |
||
57 | |||
58 | if getglobal("GetAddOnMetadata")("TinyTipExtras", "Title") then |
||
59 | TinyTipChatLocale_Opt_ETAnchor = "Extra Tooltip Anchor" |
||
60 | TinyTipChatLocale_Opt_ETOffX = "Extra Tooltip Offset [X]" |
||
61 | TinyTipChatLocale_Opt_ETOffY = "Extra Tooltip Offset [Y]" |
||
62 | TinyTipChatLocale_Desc_ETAnchor = "Set the anchor for the Extra Tooltip." |
||
63 | TinyTipChatLocale_Desc_ETOffX = "Set the horizontal offset from the anchor point for the Extra Tooltip." |
||
64 | TinyTipChatLocale_Desc_ETOffY = "Set the vertical offset from the anchor point for the Extra Tooltip." |
||
65 | |||
66 | TinyTipChatLocale_Opt_PvPIconAnchor1 = "PvP Rank Icon Anchor" |
||
67 | TinyTipChatLocale_Opt_PvPIconAnchor2 = "PvP Rank Icon Relative Anchor" |
||
68 | TinyTipChatLocale_Opt_PvPIconOffX = "PvP Rank Icon Offset [X]" |
||
69 | TinyTipChatLocale_Opt_PvPIconOffY = "PvP Rank Icon Offset [Y]" |
||
70 | |||
71 | TinyTipChatLocale_Desc_PvPIconAnchor1 = "Set the anchor for the PvP Rank Icon." |
||
72 | TinyTipChatLocale_Desc_PvPIconAnchor2 = "Set the relative anchor for the PvP Rank Icon." |
||
73 | TinyTipChatLocale_Desc_PvPIconOffX = "Set the horizontal offset from the anchor point for the PvP Rank Icon." |
||
74 | TinyTipChatLocale_Desc_PvPIconOffY = "Set the vertical offset from the anchor point for the PvP Rank Icon." |
||
75 | |||
76 | TinyTipChatLocale_Opt_RTIconAnchor1 = "Raid Target Icon Anchor" |
||
77 | TinyTipChatLocale_Opt_RTIconAnchor2 = "Raid Target Icon Relative Anchor" |
||
78 | TinyTipChatLocale_Opt_RTIconOffX = "Raid Target Icon Offset [X]" |
||
79 | TinyTipChatLocale_Opt_RTIconOffY = "Raid Target Icon Offset [Y]" |
||
80 | |||
81 | TinyTipChatLocale_Desc_RTIconAnchor1 = "Set the anchor for the Raid Target Icon." |
||
82 | TinyTipChatLocale_Desc_RTIconAnchor2 = "Set the relative anchor for the Raid Target Icon." |
||
83 | TinyTipChatLocale_Desc_RTIconOffX = "Set the horizontal offset from the anchor point for the Raid Target Icon." |
||
84 | TinyTipChatLocale_Desc_RTIconOffY = "Set the vertical offset from the anchor point for the Raid Target Icon." |
||
85 | |||
86 | TinyTipChatLocale_Opt_BuffAnchor1 = "Buff Anchor" |
||
87 | TinyTipChatLocale_Opt_BuffAnchor2 = "Buff Relative Anchor" |
||
88 | TinyTipChatLocale_Opt_BuffOffX = "Buff Offset [X]" |
||
89 | TinyTipChatLocale_Opt_BuffOffY = "Buff Offset [Y]" |
||
90 | |||
91 | TinyTipChatLocale_Opt_DebuffAnchor1 = "Debuff Anchor" |
||
92 | TinyTipChatLocale_Opt_DebuffAnchor2 = "Debuff Relative Anchor" |
||
93 | TinyTipChatLocale_Opt_DebuffOffX = "Debuff Offset [X]" |
||
94 | TinyTipChatLocale_Opt_DebuffOffY = "Debuff Offset [Y]" |
||
95 | |||
96 | TinyTipChatLocale_Desc_BuffAnchor1 = "Set the anchor for the Buff Icons." |
||
97 | TinyTipChatLocale_Desc_BuffAnchor2 = "Set the relative anchor for the Buff Icons." |
||
98 | TinyTipChatLocale_Desc_BuffOffX = "Set the horizontal offset from the anchor point for the Buff Icons." |
||
99 | TinyTipChatLocale_Desc_BuffOffY = "Set the vertical offset from the anchor point for the Buff Icons." |
||
100 | |||
101 | TinyTipChatLocale_Desc_DebuffAnchor1 = "Set the anchor for the Debuff Icons." |
||
102 | TinyTipChatLocale_Desc_DebuffAnchor2 = "Set the relative anchor for the Debuff Icons." |
||
103 | TinyTipChatLocale_Desc_DebuffOffX = "Set the horizontal offset from the anchor point for the Debuff Icons." |
||
104 | TinyTipChatLocale_Desc_DebuffOffY = "Set the vertical offset from the anchor point for the Debuff Icons." |
||
105 | end |
||
106 | end |
||
107 | |||
108 | TinyTipChatLocale_Opt_Main_Text = "Text" |
||
109 | TinyTipChatLocale_Opt_HideLevelText = "Hide Level Text" |
||
110 | TinyTipChatLocale_Opt_HideRace = "Hide Race and Creature Type Text" |
||
111 | TinyTipChatLocale_Opt_KeyElite = "Use Classification Keys" |
||
112 | TinyTipChatLocale_Opt_PvPRank = "PvP Rank" |
||
113 | TinyTipChatLocale_Opt_HideGuild = "Hide Guild Text" |
||
114 | TinyTipChatLocale_Opt_LevelGuess = "Level Guestimate" |
||
115 | TinyTipChatLocale_Opt_ReactionText = "Show Reaction Text" |
||
116 | |||
117 | TinyTipChatLocale_Desc_Main_Text = "Change what text is displayed inside the unit tooltip." |
||
118 | TinyTipChatLocale_Desc_HideLevelText = "Toggle whether to hide the level text." |
||
119 | TinyTipChatLocale_Desc_HideRace = "Toggle whether to hide a player's race or a creature's type." |
||
120 | TinyTipChatLocale_Desc_KeyElite = "Use * for Elite, ! for Rare, !* for Rare Elite, and ** for World Boss." |
||
121 | TinyTipChatLocale_Desc_PvPRank = "Set the options for the PvP Rank to be shown in text." |
||
122 | TinyTipChatLocale_Desc_HideGuild = "Toggle whether to hide the guild name." |
||
123 | TinyTipChatLocale_Desc_ReactionText = "Toggle whether to show the reaction text (Friendly, Hostile, etc.)" |
||
124 | TinyTipChatLocale_Desc_LevelGuess = "Toggle whether to show >(Your Level +10) instead of ?? for unknown levels." |
||
125 | |||
126 | TinyTipChatLocale_Opt_Main_Appearance = "Appearance" |
||
127 | TinyTipChatLocale_Opt_Scale = "Scale" |
||
128 | TinyTipChatLocale_Opt_Fade = "FadeOut Effect" |
||
129 | TinyTipChatLocale_Opt_BGColor = "Backdrop Coloring" |
||
130 | TinyTipChatLocale_Opt_Border = "Border Coloring" |
||
131 | TinyTipChatLocale_Opt_SmoothBorder = "Smooth Out Border And Background" |
||
132 | TinyTipChatLocale_Opt_Friends = "Coloring For Friends and Guildmates" |
||
133 | TinyTipChatLocale_Opt_HideInFrames = "Hide Tooltip For Unit Frames" |
||
134 | TinyTipChatLocale_Opt_FormatDisabled = "Disable Tooltip Formating" |
||
135 | TinyTipChatLocale_Opt_Compact = "Display Compact Tooltip" |
||
136 | |||
137 | TinyTipChatLocale_ChatIndex_PvPRank = { |
||
138 | [1] = TinyTipChatLocale_Off, |
||
139 | [2] = "Show Rank Name", |
||
140 | [3] = "Show Rank Number after Name" |
||
141 | } |
||
142 | |||
143 | TinyTipChatLocale_ChatIndex_Fade = { |
||
144 | [1] = "Always FadeOut", |
||
145 | [2] = "Never FadeOut" |
||
146 | } |
||
147 | |||
148 | TinyTipChatLocale_ChatIndex_BGColor = { |
||
149 | [1] = TinyTipChatLocale_GameDefault, |
||
150 | [2] = "Color NPCs like PCs", |
||
151 | [3] = "Always Black" |
||
152 | } |
||
153 | |||
154 | TinyTipChatLocale_ChatIndex_Border = { |
||
155 | [1] = TinyTipChatLocale_GameDefault, |
||
156 | [2] = "Hide Border" |
||
157 | } |
||
158 | |||
159 | TinyTipChatLocale_ChatIndex_Friends = { |
||
160 | [1] = "Color Only Name", |
||
161 | [2] = "Don't Color" |
||
162 | } |
||
163 | |||
164 | TinyTipChatLocale_Desc_Main_Appearance = "Set the look and behavior of the tooltip." |
||
165 | TinyTipChatLocale_Desc_Fade = "Toggle whether to let the tooltip fade out or simply hide." |
||
166 | TinyTipChatLocale_Desc_Scale = "Set the scale of the tooltip (and attached icons)." |
||
167 | TinyTipChatLocale_Desc_BGColor = "Set the color scheme for the unit tooltip's backdrop." |
||
168 | TinyTipChatLocale_Desc_Border = "Set the color scheme for the unit tooltip's border." |
||
169 | TinyTipChatLocale_Desc_SmoothBorder = "Toogle whether to change the default alpha and size of the tooltip's border and background." |
||
170 | TinyTipChatLocale_Desc_Friends = "Set whether to color the backdrop or name differently for friends and guildmates." |
||
171 | TinyTipChatLocale_Desc_HideInFrames = "Hide the tooltip while mousing over unit frames." |
||
172 | TinyTipChatLocale_Desc_FormatDisabled = "Disable TinyTip's special tooltip formating." |
||
173 | TinyTipChatLocale_Desc_Compact = "Compact the tooltip without changing its scale." |
||
174 | |||
175 | if getglobal("GetAddOnMetadata")("TinyTipExtras", "Title") then |
||
176 | TinyTipChatLocale_Opt_PvPIconScale = "PvP Icon Scale" |
||
177 | TinyTipChatLocale_Opt_RTIconScale = "Raid Target Icon Scale" |
||
178 | TinyTipChatLocale_Opt_BuffScale = "Buff and Debuff Icon Scale" |
||
179 | |||
180 | TinyTipChatLocale_Desc_PvPIconScale = "Set the scale of the PvP Icon." |
||
181 | TinyTipChatLocale_Desc_RTIconScale = "Set the scale of the Raid Target Icon." |
||
182 | TinyTipChatLocale_Desc_BuffScale = "Set the scale of the Buff And Debuff Icons." |
||
183 | |||
184 | TinyTipChatLocale_Opt_Main_Targets = "Target Of ..." |
||
185 | TinyTipChatLocale_Opt_ToT = "Tooltip's Unit" |
||
186 | TinyTipChatLocale_Opt_ToP = "Party" |
||
187 | TinyTipChatLocale_Opt_ToR = "Raid" |
||
188 | |||
189 | TinyTipChatLocale_ChatIndex_ToT = { |
||
190 | [1] = "Show Tooltip Unit's Target In New Line", |
||
191 | [2] = "Show Target On Same Line As UnitName" |
||
192 | } |
||
193 | |||
194 | TinyTipChatLocale_ChatIndex_ToP = { |
||
195 | [1] = "Show Each Name", |
||
196 | [2] = "Show # Of Players" |
||
197 | } |
||
198 | |||
199 | TinyTipChatLocale_ChatIndex_ToR = { |
||
200 | [1] = "Show # Of Players", |
||
201 | [2] = "Show Count Of Each Class", |
||
202 | [3] = "Show ALL Names" |
||
203 | } |
||
204 | |||
205 | TinyTipChatLocale_Desc_Main_Targets = "Add target of target information to the unit tooltip." |
||
206 | TinyTipChatLocale_Desc_ToT = "Set whether to show the name of tooltip unit's target." |
||
207 | TinyTipChatLocale_Desc_ToP = "Set the options for seeing if anyone in your party is targeting the tooltip's unit." |
||
208 | TinyTipChatLocale_Desc_ToR = "Set the options for seeing if anyone in your raid is targeting the tooltip's unit." |
||
209 | |||
210 | TinyTipChatLocale_Opt_Main_Extras = "Extras" |
||
211 | TinyTipChatLocale_Opt_PvPIcon = "Show PvP Rank Icon" |
||
212 | TinyTipChatLocale_Opt_ExtraTooltip = "TinyTip's Extra Tooltip" |
||
213 | TinyTipChatLocale_Opt_Buffs = "Buffs" |
||
214 | TinyTipChatLocale_Opt_Debuffs = "Debuffs" |
||
215 | TinyTipChatLocale_Opt_ManaBar = "Show Mana StatusBar" |
||
216 | TinyTipChatLocale_Opt_RTIcon = "Show Raid Target Icon" |
||
217 | |||
218 | TinyTipChatLocale_ChatIndex_ExtraTooltip = { |
||
219 | [1] = "Show Other Addons Info", |
||
220 | [2] = "Show Other Addons & TinyTip's Extra Info" |
||
221 | } |
||
222 | |||
223 | TinyTipChatLocale_ChatIndex_Buffs = { |
||
224 | [1] = "Show 8 Buffs", |
||
225 | [2] = "Show Only Castable Buffs", |
||
226 | [3] = "Show Count of Castable Buffs in tooltip" |
||
227 | } |
||
228 | |||
229 | TinyTipChatLocale_ChatIndex_Debuffs = { |
||
230 | [1] = "Show 8 Debuffs", |
||
231 | [2] = "Show Only Dispellable Debuffs", |
||
232 | [3] = "Show Count of Dispellable Debuffs in tooltip", |
||
233 | [4] = "Show Count of each type of Dispellable Debuff in tooltip", |
||
234 | [5] = "Show Count of ALL types of Debuffs in tooltip" |
||
235 | } |
||
236 | |||
237 | TinyTipChatLocale_Desc_Main_Extras = "Extra features not included in TinyTip core." |
||
238 | TinyTipChatLocale_Desc_PvPIcon = "Toggle whether to show an icon for the player's PvP rank to the left of the tooltip." |
||
239 | TinyTipChatLocale_Desc_ExtraTooltip = "Add information from other addons and/or TinyTip into a separate tooltip." |
||
240 | TinyTipChatLocale_Desc_Buffs = "Show information about a unit's buffs." |
||
241 | TinyTipChatLocale_Desc_Debuffs = "Show information about a unit's debuffs." |
||
242 | TinyTipChatLocale_Desc_ManaBar = "Show a status bar for mana below the health bar." |
||
243 | TinyTipChatLocale_Desc_RTIcon = "Show the raid target icon for the tooltip's unit, if it exists." |
||
244 | end |
||
245 | |||
246 | TinyTipChatLocale_Opt_Profiles = "Save Settings Per Character" |
||
247 | TinyTipChatLocale_Desc_Profiles = "Toggle whether to save your settings per character or globally." |
||
248 | |||
249 | TinyTipChatLocale_Opt_Main_Default = "Reset Options" |
||
250 | TinyTipChatLocale_Desc_Main_Default = "Return this addon's settings back to their defaults." |
||
251 | |||
252 | -- slash command-related stuff |
||
253 | TinyTipChatLocale_DefaultWarning = "Are you SURE you want to return your settings to their default values? Type in " |
||
254 | TinyTipChatLocale_NotValidCommand = "is not a valid command." |
||
255 | |||
256 | TinyTipChatLocale_Confirm = "confirm" -- must be lowercase! |
||
257 | TinyTipChatLocale_Opt_Slash_Default = "default" -- ditto |
||
258 | |||
259 | -- we're done with this. |
||
260 | TinyTipChatLocale = nil |
||
261 | end |