1 | local i=CzWoW_interface;
|
---|
2 | local n=CzWoW_interface_entoname;
|
---|
3 |
|
---|
4 | --GameMenuFrame begin
|
---|
5 | CzWoW_MAIN_MENU:SetText(i["MAIN_MENU"]);
|
---|
6 | GameMenuButtonOptions:SetText(i["VIDEOOPTIONS_MENU"]);
|
---|
7 | GameMenuButtonSoundOptions:SetText(i["SOUNDOPTIONS_MENU"]);
|
---|
8 | GameMenuButtonUIOptions:SetText(i["UIOPTIONS_MENU"]);
|
---|
9 | GameMenuButtonKeybindings:SetText(i["KEY_BINDINGS"]);
|
---|
10 | GameMenuButtonMacros:SetText(i["MACROS"]);
|
---|
11 | GameMenuButtonLogout:SetText(i["LOGOUT"]);
|
---|
12 | GameMenuButtonQuit:SetText(i["EXIT_GAME"]);
|
---|
13 | GameMenuButtonContinue:SetText(i["RETURN_TO_GAME"]);
|
---|
14 | --GameMenuFrame end
|
---|
15 |
|
---|
16 | --OptionsFrame begin
|
---|
17 | CzWoW_VIDEOOPTIONS_MENU:SetText(i["VIDEOOPTIONS_MENU"]);
|
---|
18 | OptionsFrameResolutionDropDownLabel:SetText(i["RESOLUTION"]);
|
---|
19 | OptionsFrameRefreshDropDownLabel:SetText(i["REFRESH_RATE"]);
|
---|
20 | OptionsFrameMultiSampleDropDownLabel:SetText(i["MULTISAMPLE"]);
|
---|
21 | OptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
22 | OptionsFrameOkay:SetText(i["OKAY"]);
|
---|
23 | OptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
24 | getglobal("OptionsFrameDisplay".."Title"):SetText(i["DISPLAY"]);
|
---|
25 | getglobal("OptionsFrameBrightness".."Title"):SetText(i["OPTIONS_BRIGHTNESS"]);
|
---|
26 | getglobal("OptionsFrameWorldAppearance".."Title"):SetText(i["WORLD_APPEARANCE"]);
|
---|
27 | getglobal("OptionsFramePixelShaders".."Title"):SetText(i["PIXEL_SHADERS"]);
|
---|
28 | getglobal("OptionsFrameMiscellaneous".."Title"):SetText(i["MISCELLANEOUS"]);
|
---|
29 |
|
---|
30 | for index, value in pairs(OptionsFrameSliders) do
|
---|
31 | value.text = i[n[value.text]];
|
---|
32 | --value.tooltipText = i[n[value.tooltipText]];
|
---|
33 | end;
|
---|
34 | --OptionsFrame end
|
---|
35 |
|
---|
36 |
|
---|
37 | --SoundOptionsFrame begin
|
---|
38 | CzWoW_SOUND_OPTIONS:SetText(i["SOUND_OPTIONS"]);
|
---|
39 | SoundOptionsFrameOkay:SetText(i["OKAY"]);
|
---|
40 | SoundOptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
41 | SoundOptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
42 | getglobal("SoundOptionsFramePlayback".."Title"):SetText(i["PLAYBACK"]);
|
---|
43 | getglobal("SoundOptionsFrameHardware".."Title"):SetText(i["HARDWARE"]);
|
---|
44 | getglobal("SoundOptionsFrameVolume".."Title"):SetText(i["VOLUME"]);
|
---|
45 | SoundOptionsOutputDropDownLabel:SetText(i["GAME_SOUND_OUTPUT"]);
|
---|
46 |
|
---|
47 | for index, value in pairs(SoundOptionsFrameSliders) do
|
---|
48 | value.text = i[n[value.text]];
|
---|
49 | --value.tooltipText = i[n[value.tooltipText]];
|
---|
50 | end;
|
---|
51 | --SoundOptionsFrame end
|
---|
52 |
|
---|
53 | --UI Options begin
|
---|
54 | InterfaceOptionsFrameHeaderText:SetText(i["INTERFACE_OPTIONS"]);
|
---|
55 | InterfaceOptionsFrameOkay:SetText(i["OKAY"]);
|
---|
56 | InterfaceOptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
57 | InterfaceOptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
58 | InterfaceOptionsFrameTab1:SetText(i["GAME"]);
|
---|
59 | InterfaceOptionsFrameTab2:SetText(i["ADDONS"]);
|
---|
60 |
|
---|
61 | for index, value in pairs(uvarInfo) do
|
---|
62 | --value.text = i[n[value.text]];
|
---|
63 | value.event = i[n[value.event]];
|
---|
64 | end;
|
---|
65 | --UI Options end
|
---|
66 |
|
---|
67 | --hooksecurefunc(GameTooltip, "SetOwner", function(a, object) DEFAULT_CHAT_FRAME:AddMessage(object:GetName()); end);
|
---|
68 |
|
---|
69 | --GameTooltipFrame begin
|
---|
70 | local oldTooltipSetText=GameTooltip["SetText"];
|
---|
71 | GameTooltip["SetText"]=function(object, text, r, g, b, alphaValue, textWrap)
|
---|
72 | if type(n[text])=="string" then
|
---|
73 | text=i[n[text]];
|
---|
74 | end
|
---|
75 | oldTooltipSetText(object, text, r, g, b, alphaValue, textWrap);
|
---|
76 | end
|
---|
77 | --hooksecurefunc(GameTooltip, "SetText", TooltipSetText);
|
---|
78 |
|
---|
79 | --GameTooltipFrame end
|
---|
80 |
|
---|
81 |
|
---|
82 | --Set global var with CZ texts
|
---|
83 | for index, value in pairs(i) do
|
---|
84 | setglobal(index,i[index]);
|
---|
85 | end
|
---|
86 |
|
---|
87 | -- Generated button
|
---|
88 |
|
---|
89 |
|
---|
90 |
|
---|
91 | -- file: ActionBarFrame.xml
|
---|
92 |
|
---|
93 |
|
---|
94 | -- file: ActionButtonTemplate.xml
|
---|
95 |
|
---|
96 |
|
---|
97 | -- file: ArenaFrame.xml
|
---|
98 | ArenaFrameFrameLabel:SetText(i["ARENA_BATTLES"]);
|
---|
99 | ArenaFrameNameHeader:SetText(i["ARENA_RATED_BATTLE"]);
|
---|
100 | ArenaFrameZoneDescription:SetText(i["ARENA_MASTER_TEXT"]);
|
---|
101 | ArenaFrameNameHeader2:SetText(i["ARENA_PRACTICE_BATTLE"]);
|
---|
102 | ArenaFrameCancelButton:SetText(i["CANCEL"]);
|
---|
103 | ArenaFrameJoinButton:SetText(i["BATTLEFIELD_JOIN"]);
|
---|
104 | ArenaFrameGroupJoinButton:SetText(i["BATTLEFIELD_GROUP_JOIN"]);
|
---|
105 |
|
---|
106 |
|
---|
107 | -- file: ArenaRegistrarFrame.xml
|
---|
108 | AvailableServicesText:SetText(i["ARENA_CHARTER_PURCHASE"]);
|
---|
109 | RegistrationText:SetText(i["ARENA_CHARTER_TURN_IN"]);
|
---|
110 | ArenaRegistrarFrameGoodbyeButton:SetText(i["CANCEL"]);
|
---|
111 | ArenaRegistrarButton1:SetText(i["ARENA_TEAM_2V2"]);
|
---|
112 | ArenaRegistrarButton2:SetText(i["ARENA_TEAM_3V3"]);
|
---|
113 | ArenaRegistrarButton3:SetText(i["ARENA_TEAM_5V5"]);
|
---|
114 | ArenaRegistrarButton4:SetText(i["ARENA_TEAM_2V2"]);
|
---|
115 | ArenaRegistrarButton5:SetText(i["ARENA_TEAM_3V3"]);
|
---|
116 | ArenaRegistrarButton6:SetText(i["ARENA_TEAM_5V5"]);
|
---|
117 | ArenaRegistrarPurchaseText:SetText(i["ARENA_REGISTRAR_PURCHASE_TEXT"]);
|
---|
118 | ArenaRegistrarCostLabel:SetText(i["COSTS_LABEL"]);
|
---|
119 | ArenaRegistrarFrameCancelButton:SetText(i["CANCEL"]);
|
---|
120 | ArenaRegistrarFramePurchaseButton:SetText(i["PURCHASE"]);
|
---|
121 | PVPBannerFrameGreetingText:SetText(i["ARENA_BANNER_VENDOR_GREETING"]);
|
---|
122 | PVPColorPickerButton1:SetText(i["EMBLEM_SYMBOL_COLOR"]);
|
---|
123 | PVPColorPickerButton2:SetText(i["EMBLEM_BORDER_COLOR"]);
|
---|
124 | PVPColorPickerButton3:SetText(i["EMBLEM_BACKGROUND"]);
|
---|
125 | PVPBannerFrameCancelButton:SetText(i["CLOSE"]);
|
---|
126 | PVPBannerFrameSaveButton:SetText(i["SAVE"]);
|
---|
127 | PVPBannerFrameAcceptButton:SetText(i["ACCEPT"]);
|
---|
128 | PVPBannerFrameCancelButton:SetText(i["CANCEL"]);
|
---|
129 |
|
---|
130 |
|
---|
131 | -- file: AudioOptionsFrame.xml
|
---|
132 | AudioOptionsFrameTab1:SetText(i["VOICE_SOUND"]);
|
---|
133 | AudioOptionsFrameTab2:SetText(i["VOICE"]);
|
---|
134 |
|
---|
135 |
|
---|
136 | -- file: BankFrame.xml
|
---|
137 | BankFrameSlotCost:SetText(i["COSTS_LABEL"]);
|
---|
138 | BankFramePurchaseButton:SetText(i["BANKSLOTPURCHASE"]);
|
---|
139 |
|
---|
140 |
|
---|
141 | -- file: BasicControls.xml
|
---|
142 |
|
---|
143 |
|
---|
144 | -- file: BattlefieldFrame.xml
|
---|
145 | BattlefieldFrameFrameLabel:SetText(i["BATTLEFIELDS"]);
|
---|
146 | BattlefieldFrameNameHeader:SetText(i["BATTLEFIELD_NAME"]);
|
---|
147 | BattlefieldFrameCancelButton:SetText(i["CANCEL"]);
|
---|
148 | BattlefieldFrameJoinButton:SetText(i["BATTLEFIELD_JOIN"]);
|
---|
149 | BattlefieldFrameGroupJoinButton:SetText(i["BATTLEFIELD_GROUP_JOIN"]);
|
---|
150 |
|
---|
151 |
|
---|
152 | -- file: Bindings.xml
|
---|
153 |
|
---|
154 |
|
---|
155 | -- file: Blizzard_TalentUITemplates.xml
|
---|
156 |
|
---|
157 |
|
---|
158 | -- file: BonusActionBarFrame.xml
|
---|
159 |
|
---|
160 |
|
---|
161 | -- file: BuffFrame.xml
|
---|
162 |
|
---|
163 |
|
---|
164 | -- file: CastingBarFrame.xml
|
---|
165 |
|
---|
166 |
|
---|
167 | -- file: CharacterFrame.xml
|
---|
168 | CharacterNameText:SetText(i["NAME"]);
|
---|
169 | CharacterFrameTab1:SetText(i["CHARACTER"]);
|
---|
170 | CharacterFrameTab2:SetText(i["PET"]);
|
---|
171 | CharacterFrameTab3:SetText(i["REPUTATION"]);
|
---|
172 | CharacterFrameTab4:SetText(i["SKILLS"]);
|
---|
173 | CharacterFrameTab5:SetText(i["PVP"]);
|
---|
174 |
|
---|
175 |
|
---|
176 | -- file: CharacterFrameTemplates.xml
|
---|
177 |
|
---|
178 |
|
---|
179 | -- file: ChatConfigFrame.xml
|
---|
180 | ChatConfigCategoryFrameTitle:SetText(i["CATEGORIES"]);
|
---|
181 | ChatConfigCategoryFrameButton1:SetText(i["CHAT"]);
|
---|
182 | ChatConfigCategoryFrameButton2:SetText(i["COMBAT"]);
|
---|
183 | ChatConfigCategoryFrameButton3:SetText(i["GLOBAL_CHANNELS"]);
|
---|
184 | ChatConfigCategoryFrameButton4:SetText(i["OTHER"]);
|
---|
185 | ChatConfigCombatSettingsFiltersDeleteButton:SetText(i["DELETE"]);
|
---|
186 | ChatConfigCombatSettingsFiltersAddFilterButton:SetText(i["ADD_FILTER"]);
|
---|
187 | ChatConfigCombatSettingsFiltersCopyFilterButton:SetText(i["COPY_FILTER"]);
|
---|
188 | CombatConfigColorsExampleTitle:SetText(i["EXAMPLE_TEXT"]);
|
---|
189 | CombatConfigColorsHighlightingTitle:SetText(i["HIGHLIGHTING"]);
|
---|
190 | CombatConfigFormattingExampleTitle:SetText(i["EXAMPLE_TEXT"]);
|
---|
191 | --CombatConfigSettingsSaveButton:SetText(i["SAVE"]);
|
---|
192 | --CombatConfigSettingsDefaultButton:SetText(i["CHAT_DEFAULTS"]);
|
---|
193 | CombatLogDefaultButton:SetText(i["COMBATLOG_DEFAULTS"]);
|
---|
194 | ChatConfigFrameCancelButton:SetText(i["CANCEL"]);
|
---|
195 | ChatConfigFrameOkayButton:SetText(i["OKAY"]);
|
---|
196 |
|
---|
197 |
|
---|
198 | -- file: ChatFrame.xml
|
---|
199 |
|
---|
200 |
|
---|
201 | -- file: CinematicFrame.xml
|
---|
202 |
|
---|
203 |
|
---|
204 | -- file: ClassTrainerFrameTemplates.xml
|
---|
205 |
|
---|
206 |
|
---|
207 | -- file: CoinPickupFrame.xml
|
---|
208 | CoinPickupOkayButton:SetText(i["OKAY"]);
|
---|
209 | CoinPickupCancelButton:SetText(i["COINPICKUP_CANCEL"]);
|
---|
210 |
|
---|
211 |
|
---|
212 | -- file: ColorPickerFrame.xml
|
---|
213 | ColorPickerCancelButton:SetText(i["CANCEL"]);
|
---|
214 | ColorPickerOkayButton:SetText(i["OKAY"]);
|
---|
215 | OpacityFrameSliderText:SetText(i["OPACITY"]);
|
---|
216 |
|
---|
217 |
|
---|
218 | -- file: CombatFeedback.xml
|
---|
219 |
|
---|
220 |
|
---|
221 | -- file: CombatLog.xml
|
---|
222 |
|
---|
223 |
|
---|
224 | -- file: ComboFrame.xml
|
---|
225 |
|
---|
226 |
|
---|
227 | -- file: ContainerFrame.xml
|
---|
228 |
|
---|
229 |
|
---|
230 | -- file: Cooldown.xml
|
---|
231 |
|
---|
232 |
|
---|
233 | -- file: DressUpFrame.xml
|
---|
234 | DressUpFrameTitleText:SetText(i["DRESSUP_FRAME"]);
|
---|
235 | DressUpFrameDescriptionText:SetText(i["DRESSUP_FRAME_INSTRUCTIONS"]);
|
---|
236 | DressUpFrameCancelButton:SetText(i["CLOSE"]);
|
---|
237 | DressUpFrameResetButton:SetText(i["RESET"]);
|
---|
238 |
|
---|
239 |
|
---|
240 | -- file: DurabilityFrame.xml
|
---|
241 |
|
---|
242 |
|
---|
243 | -- file: FadingFrame.xml
|
---|
244 |
|
---|
245 |
|
---|
246 | -- file: FloatingChatFrame.xml
|
---|
247 |
|
---|
248 |
|
---|
249 | -- file: Fonts.xml
|
---|
250 |
|
---|
251 |
|
---|
252 | -- file: FriendsFrame.xml
|
---|
253 | FriendsFrameToggleTab1:SetText(i["FRIENDS"]);
|
---|
254 | FriendsFrameToggleTab2:SetText(i["IGNORE"]);
|
---|
255 | FriendsFrameToggleTab3:SetText(i["MUTED"]);
|
---|
256 | FriendsFrameAddFriendButton:SetText(i["ADD_FRIEND"]);
|
---|
257 | FriendsFrameRemoveFriendButton:SetText(i["REMOVE_FRIEND"]);
|
---|
258 | FriendsFrameSendMessageButton:SetText(i["SEND_MESSAGE"]);
|
---|
259 | FriendsFrameGroupInviteButton:SetText(i["GROUP_INVITE"]);
|
---|
260 | IgnoreFrameToggleTab1:SetText(i["FRIENDS"]);
|
---|
261 | IgnoreFrameToggleTab2:SetText(i["IGNORE"]);
|
---|
262 | IgnoreFrameToggleTab3:SetText(i["MUTED"]);
|
---|
263 | FriendsFrameIgnorePlayerButton:SetText(i["IGNORE_PLAYER"]);
|
---|
264 | FriendsFrameStopIgnoreButton:SetText(i["STOP_IGNORE"]);
|
---|
265 | MutedFrameToggleTab1:SetText(i["FRIENDS"]);
|
---|
266 | MutedFrameToggleTab2:SetText(i["IGNORE"]);
|
---|
267 | MutedFrameToggleTab3:SetText(i["MUTED"]);
|
---|
268 | FriendsFrameMutedPlayerButton:SetText(i["MUTE_PLAYER"]);
|
---|
269 | FriendsFrameUnmuteButton:SetText(i["UNMUTE"]);
|
---|
270 | WhoFrameColumnHeader1:SetText(i["NAME"]);
|
---|
271 | WhoFrameColumnHeader3:SetText(i["LEVEL_ABBR"]);
|
---|
272 | WhoFrameColumnHeader4:SetText(i["CLASS"]);
|
---|
273 | WhoFrameGroupInviteButton:SetText(i["GROUP_INVITE"]);
|
---|
274 | WhoFrameAddFriendButton:SetText(i["ADD_FRIEND"]);
|
---|
275 | WhoFrameWhoButton:SetText(i["REFRESH"]);
|
---|
276 | GuildFrameNotesLabel:SetText(i["GUILD_MOTD_LABEL"]);
|
---|
277 | GuildFrameLFGButtonText:SetText(i["SHOW_OFFLINE_MEMBERS"]);
|
---|
278 | GuildFrameColumnHeader1:SetText(i["NAME"]);
|
---|
279 | GuildFrameColumnHeader2:SetText(i["ZONE"]);
|
---|
280 | GuildFrameColumnHeader3:SetText(i["LEVEL_ABBR"]);
|
---|
281 | GuildFrameColumnHeader4:SetText(i["CLASS"]);
|
---|
282 | GuildFrameGuildStatusColumnHeader1:SetText(i["NAME"]);
|
---|
283 | GuildFrameGuildStatusColumnHeader2:SetText(i["RANK"]);
|
---|
284 | GuildFrameGuildStatusColumnHeader3:SetText(i["LABEL_NOTE"]);
|
---|
285 | GuildFrameGuildStatusColumnHeader4:SetText(i["LASTONLINE"]);
|
---|
286 | GuildFrameControlButton:SetText(i["GUILDCONTROL"]);
|
---|
287 | GuildFrameAddMemberButton:SetText(i["ADDMEMBER"]);
|
---|
288 | GuildFrameGuildInformationButton:SetText(i["GUILD_INFORMATION"]);
|
---|
289 | GuildControlWithdrawGoldText:SetText(i["GUILDCONTROL_WITHDRAW_GOLD"]);
|
---|
290 | GuildControlWithdrawGoldAmountText:SetText(i["GOLD_PER_DAY"]);
|
---|
291 | GuildControlPopupFrameCancelButton:SetText(i["CANCEL"]);
|
---|
292 | GuildControlPopupAcceptButton:SetText(i["ACCEPT"]);
|
---|
293 | GuildBankTabLabel:SetText(i["GUILDBANK_TAB_COLON"]);
|
---|
294 | GuildControlTabPermissionsWithdrawItemsText:SetText(i["GUILDCONTROL_WITHDRAW_ITEMS"]);
|
---|
295 | GuildBankTabPermissionsTab6:SetText(i["6"]);
|
---|
296 | GuildBankTabPermissionsTab5:SetText(i["5"]);
|
---|
297 | GuildBankTabPermissionsTab4:SetText(i["4"]);
|
---|
298 | GuildBankTabPermissionsTab3:SetText(i["3"]);
|
---|
299 | GuildBankTabPermissionsTab2:SetText(i["2"]);
|
---|
300 | GuildBankTabPermissionsTab1:SetText(i["1"]);
|
---|
301 | GuildInfoTitle:SetText(i["GUILD_INFORMATION"]);
|
---|
302 | GuildInfoSaveButton:SetText(i["ACCEPT"]);
|
---|
303 | GuildInfoCancelButton:SetText(i["CLOSE"]);
|
---|
304 | GuildInfoGuildEventButton:SetText(i["GUILD_EVENT_LOG"]);
|
---|
305 | GuildMemberDetailZoneLabel:SetText(i["ZONE_COLON"]);
|
---|
306 | GuildMemberDetailRankLabel:SetText(i["RANK_COLON"]);
|
---|
307 | GuildMemberDetailOnlineLabel:SetText(i["LAST_ONLINE_COLON"]);
|
---|
308 | GuildMemberDetailNoteLabel:SetText(i["NOTE_COLON"]);
|
---|
309 | GuildMemberDetailOfficerNoteLabel:SetText(i["OFFICER_NOTE_COLON"]);
|
---|
310 | GuildMemberRemoveButton:SetText(i["REMOVE"]);
|
---|
311 | GuildMemberGroupInviteButton:SetText(i["GROUP_INVITE"]);
|
---|
312 | GuildEventLogTitle:SetText(i["GUILD_EVENT_LOG"]);
|
---|
313 | GuildEventLogCancelButton:SetText(i["CLOSE"]);
|
---|
314 | FriendsFrameTab1:SetText(i["FRIENDS"]);
|
---|
315 | FriendsFrameTab2:SetText(i["IGNORE"]);
|
---|
316 | FriendsFrameTab2:SetText(i["WHO"]);
|
---|
317 | FriendsFrameTab3:SetText(i["GUILD"]);
|
---|
318 | FriendsFrameTab4:SetText(i["CHAT"]);
|
---|
319 | FriendsFrameTab5:SetText(i["RAID"]);
|
---|
320 |
|
---|
321 |
|
---|
322 | -- file: GameMenuFrame.xml
|
---|
323 | GameMenuButtonOptions:SetText(i["VIDEOOPTIONS_MENU"]);
|
---|
324 | GameMenuButtonSoundOptions:SetText(i["SOUNDOPTIONS_MENU"]);
|
---|
325 | GameMenuButtonUIOptions:SetText(i["UIOPTIONS_MENU"]);
|
---|
326 | GameMenuButtonMacOptions:SetText(i["MAC_OPTIONS"]);
|
---|
327 | GameMenuButtonKeybindings:SetText(i["KEY_BINDINGS"]);
|
---|
328 | GameMenuButtonMacros:SetText(i["MACROS"]);
|
---|
329 | GameMenuButtonRatings:SetText(i["RATINGS_MENU"]);
|
---|
330 | GameMenuButtonLogout:SetText(i["LOGOUT"]);
|
---|
331 | GameMenuButtonQuit:SetText(i["EXIT_GAME"]);
|
---|
332 | GameMenuButtonContinue:SetText(i["RETURN_TO_GAME"]);
|
---|
333 |
|
---|
334 |
|
---|
335 | -- file: GameTime.xml
|
---|
336 |
|
---|
337 |
|
---|
338 | -- file: GameTooltip.xml
|
---|
339 |
|
---|
340 |
|
---|
341 | -- file: GameTooltipTemplate.xml
|
---|
342 |
|
---|
343 |
|
---|
344 | -- file: GossipFrame.xml
|
---|
345 | GossipFrameGreetingGoodbyeButton:SetText(i["GOODBYE"]);
|
---|
346 | GossipGreetingText:SetText(i["Filler Text"]);
|
---|
347 |
|
---|
348 |
|
---|
349 | -- file: GuildRegistrarFrame.xml
|
---|
350 | AvailableServicesText:SetText(i["AVAILABLE_SERVICES"]);
|
---|
351 | GuildRegistrarFrameGoodbyeButton:SetText(i["CANCEL"]);
|
---|
352 | GuildRegistrarButton1:SetText(i["GUILD_CHARTER_PURCHASE"]);
|
---|
353 | GuildRegistrarButton2:SetText(i["GUILD_CHARTER_REGISTER"]);
|
---|
354 | GuildRegistrarPurchaseText:SetText(i["GUILD_REGISTRAR_PURCHASE_TEXT"]);
|
---|
355 | GuildRegistrarCostLabel:SetText(i["COSTS_LABEL"]);
|
---|
356 | GuildRegistrarFrameCancelButton:SetText(i["CANCEL"]);
|
---|
357 | GuildRegistrarFramePurchaseButton:SetText(i["PURCHASE"]);
|
---|
358 |
|
---|
359 |
|
---|
360 | -- file: HelpFrame.xml
|
---|
361 | --HelpFrameCancelButtonTemplate:SetText(i["CANCEL"]);
|
---|
362 | HelpFrameGMTalkTitle:SetText(i["HELPFRAME_GMTALK_TITLE"]);
|
---|
363 | HelpFrameGMTalkText1:SetText(i["HELPFRAME_GMTALK_TEXT1"]);
|
---|
364 | HelpFrameGMTalkIssue1Header:SetText(i["HELPFRAME_GMTALK_ISSUE1_HEADER"]);
|
---|
365 | HelpFrameGMTalkIssue1:SetText(i["HELPFRAME_GMTALK_ISSUE1"]);
|
---|
366 | HelpFrameGMTalkIssue2Header:SetText(i["HELPFRAME_GMTALK_ISSUE2_HEADER"]);
|
---|
367 | HelpFrameGMTalkIssue2:SetText(i["HELPFRAME_GMTALK_ISSUE2"]);
|
---|
368 | HelpFrameGMTalkIssue3Header:SetText(i["HELPFRAME_GMTALK_ISSUE3_HEADER"]);
|
---|
369 | HelpFrameGMTalkIssue3:SetText(i["HELPFRAME_GMTALK_ISSUE3"]);
|
---|
370 | HelpFrameGMTalkPvpPolicyUrl:SetText(i["PVP_POLICY_URL"]);
|
---|
371 | HelpFrameGMTalkText2:SetText(i["HELPFRAME_GMTALK_TEXT2"]);
|
---|
372 | HelpFrameGMTalkOpenTicket:SetText(i["HELP_TICKET_OPEN"]);
|
---|
373 | HelpFrameReportIssueTitle:SetText(i["HELPFRAME_REPORTISSUE_TITLE"]);
|
---|
374 | HelpFrameReportIssueText1:SetText(i["HELPFRAME_REPORTISSUE_TEXT1"]);
|
---|
375 | HelpFrameReportIssueBulletTitle1:SetText(i["HELPFRAME_REPORTISSUE_BULLET_TITLE1"]);
|
---|
376 | HelpFrameReportIssueText2:SetText(i["HELPFRAME_REPORTISSUE_TEXT2"]);
|
---|
377 | HelpFrameGMTalkOpenTicket:SetText(i["HELP_TICKET_OPEN"]);
|
---|
378 | HelpFrameStuckTitle:SetText(i["HELPFRAME_STUCK_TITLE"]);
|
---|
379 | HelpFrameStuckText1:SetText(i["HELPFRAME_STUCK_TEXT1"]);
|
---|
380 | HelpFrameStuckStuck:SetText(i["STUCK_BUTTON_TEXT"]);
|
---|
381 | HelpFrameStuckOpenTicket:SetText(i["HELP_TICKET_OPEN"]);
|
---|
382 | HelpFrameOpenTicketLabel:SetText(i["HELPFRAME_OPENTICKET_TEXT"]);
|
---|
383 | HelpFrameOpenTicketSubmit:SetText(i["SUBMIT"]);
|
---|
384 | HelpFrameWelcomeTitle:SetText(i["HELPFRAME_WELCOME_TITLE"]);
|
---|
385 | HelpFrameWelcomeText1:SetText(i["HELPFRAME_WELCOME_TEXT1"]);
|
---|
386 | HelpFrameWelcomeGMTalk:SetText(i["KBASE_GMTALK"]);
|
---|
387 | HelpFrameWelcomeReportIssue:SetText(i["KBASE_REPORTISSUE"]);
|
---|
388 | HelpFrameWelcomeStuck:SetText(i["KBASE_CHARSTUCK"]);
|
---|
389 |
|
---|
390 |
|
---|
391 | -- file: HonorFrame.xml
|
---|
392 | HonorLevelText:SetText(i["Level level race class"]);
|
---|
393 | HonorFrameCurrentSessionTitle:SetText(i["HONOR_THIS_SESSION"]);
|
---|
394 | HonorFrameYesterdayTitle:SetText(i["HONOR_YESTERDAY"]);
|
---|
395 | HonorFrameThisWeekTitle:SetText(i["HONOR_THISWEEK"]);
|
---|
396 | HonorFrameLastWeekTitle:SetText(i["HONOR_LASTWEEK"]);
|
---|
397 | HonorFrameLifeTimeTitle:SetText(i["HONOR_LIFETIME"]);
|
---|
398 |
|
---|
399 |
|
---|
400 | -- file: ItemTextFrame.xml
|
---|
401 |
|
---|
402 |
|
---|
403 | -- file: KnowledgeBaseFrame.xml
|
---|
404 | KnowledgeBaseMotdLabel:SetText(i["MOTD_COLON"]);
|
---|
405 | KnowledgeBaseServerMessageLabel:SetText(i["SERVER_MESSAGE_COLON"]);
|
---|
406 | KnowledgeBaseFrameTopIssuesButton:SetText(i["KBASE_TOP_ISSUES"]);
|
---|
407 | KnowledgeBaseFrameSearchButton:SetText(i["SEARCH"]);
|
---|
408 | KnowledgeBaseArticleListFrameTitle:SetText(i["KBASE_TOP_ISSUES"]);
|
---|
409 | KnowledgeBaseArticleListFrameCount:SetText(i["ARTICLE_COUNT"]);
|
---|
410 | KnowledgeBaseArticleListFrameNextButtonText:SetText(i["NEXT"]);
|
---|
411 | KnowledgeBaseArticleListFramePreviousButtonText:SetText(i["PREVIOUS"]);
|
---|
412 | KnowledgeBaseArticleScrollChildFrameBackButton:SetText(i["BACK"]);
|
---|
413 | KnowledgeBaseErrorFrameText:SetText(i["ERROR"]);
|
---|
414 | KnowledgeBaseFrameGMTalk:SetText(i["KBASE_GMTALK"]);
|
---|
415 | KnowledgeBaseFrameReportIssue:SetText(i["KBASE_REPORTISSUE"]);
|
---|
416 | KnowledgeBaseFrameStuck:SetText(i["KBASE_CHARSTUCK"]);
|
---|
417 | KnowledgeBaseFrameOpenTicketEdit:SetText(i["HELP_TICKET_EDIT"]);
|
---|
418 | KnowledgeBaseFrameOpenTicketCancel:SetText(i["HELP_TICKET_ABANDON"]);
|
---|
419 |
|
---|
420 |
|
---|
421 | -- file: LFGFrame.xml
|
---|
422 | LFGParentFrameTitle:SetText(i["LFM_TITLE"]);
|
---|
423 | LookingForGroupText:SetText(i["LOOKING_FOR_GROUP_TEXT"]);
|
---|
424 | LFGWizardFrameLFGButton:SetText(i["LOOK_FOR_GROUP"]);
|
---|
425 | LFGWizardFrameLFMButton:SetText(i["LOOK_FOR_MORE"]);
|
---|
426 | LFMFrameColumnHeader1:SetText(i["NAME"]);
|
---|
427 | LFMFrameColumnHeader2:SetText(i["ZONE"]);
|
---|
428 | LFMFrameColumnHeader3:SetText(i["LEVEL_ABBR"]);
|
---|
429 | LFMFrameColumnHeader4:SetText(i["CLASS"]);
|
---|
430 | LFMFrameGroupInviteButton:SetText(i["GROUP_INVITE"]);
|
---|
431 | LFMFrameSendMessageButton:SetText(i["SEND_MESSAGE"]);
|
---|
432 | LFMFrameSearchButton:SetText(i["REFRESH"]);
|
---|
433 | LFGLabel1:SetText(i["LOOKING_FOR_GROUP_LABEL"]);
|
---|
434 | LFGLabel2:SetText(i["LOOKING_FOR_GROUP_LABEL2"]);
|
---|
435 | LFGLabel3:SetText(i["LOOKING_FOR_GROUP_LABEL2"]);
|
---|
436 | LFGFrameDoneButton:SetText(i["CLOSE"]);
|
---|
437 | LFGFrameClearAllButton:SetText(i["CLEAR_ALL"]);
|
---|
438 | LFGParentFrameTab1:SetText(i["LFG_TITLE"]);
|
---|
439 | LFGParentFrameTab2:SetText(i["LFM_TITLE"]);
|
---|
440 | LFGCommentLabel:SetText(i["COMMENT"]);
|
---|
441 |
|
---|
442 |
|
---|
443 | -- file: Localization.xml
|
---|
444 |
|
---|
445 |
|
---|
446 | -- file: LocalizationPost.xml
|
---|
447 |
|
---|
448 |
|
---|
449 | -- file: LootFrame.xml
|
---|
450 | LootFramePrev:SetText(i["PREV"]);
|
---|
451 | --LootFrameNext:SetText(i["NEXT"]);
|
---|
452 | --GroupLootFrameTemplateName:SetText(i["Item Name"]);
|
---|
453 |
|
---|
454 |
|
---|
455 | -- file: MacOptionsFrame.xml
|
---|
456 | MacOptionsFrameResolutionDropDownLabel:SetText(i["RESOLUTION"]);
|
---|
457 | MacOptionsFrameFramerateDropDownLabel:SetText(i["MOVIE_RECORDING_FRAMERATE"]);
|
---|
458 | MacOptionsFrameCodecDropDownLabel:SetText(i["MOVIE_RECORDING_COMPRESSION"]);
|
---|
459 | MacOptionsButtonCompress:SetText(i["MOVIE_RECORDING_COMPRESSDIALOG"]);
|
---|
460 | MacOptionsFrameText1:SetText(i["MOVIE_RECORDING_TIME"]);
|
---|
461 | MacOptionsFrameText2:SetText(i["00:00:00"]);
|
---|
462 | MacOptionsFrameText3:SetText(i["MOVIE_RECORDING_DATA_RATE"]);
|
---|
463 | MacOptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
464 | MacOptionsFrameOkay:SetText(i["OKAY"]);
|
---|
465 | MacOptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
466 | MacOptionsButtonKeybindings:SetText(i["KEY_BINDINGS_MAC"]);
|
---|
467 | MacOptionsCompressFrameDelete:SetText(i["DELETE"]);
|
---|
468 | MacOptionsCompressFrameSkip:SetText(i["IGNORE"]);
|
---|
469 | MacOptionsCompressFrameCompress:SetText(i["MOVIE_RECORDING_COMPRESSBUTTON"]);
|
---|
470 | MacOptionsCancelFrameQuestion:SetText(i["MOVIE_RECORDING_CANCEL_CONFIRMATION"]);
|
---|
471 | MacOptionsCancelFrameNo:SetText(i["NO"]);
|
---|
472 | MacOptionsCancelFrameYes:SetText(i["YES"]);
|
---|
473 | FolderPickerButton01:SetText(i["YES"]);
|
---|
474 | FolderPickerButton01Name:SetText(i["Player Name"]);
|
---|
475 |
|
---|
476 |
|
---|
477 | -- file: MailFrame.xml
|
---|
478 | --MailItemTemplateCOD:SetText(i["CASH_ON_DELIVERY"]);
|
---|
479 | InboxTitleText:SetText(i["INBOX"]);
|
---|
480 | SendMailTitleText:SetText(i["SENDMAIL"]);
|
---|
481 | SendMailMoneyText:SetText(i["SEND_MONEY"]);
|
---|
482 | --SendMailStationeryButton:SetText(i["CHOOSE_STATIONERY"]);
|
---|
483 | SendMailCancelButton:SetText(i["CANCEL"]);
|
---|
484 | SendMailMailButton:SetText(i["SEND_LABEL"]);
|
---|
485 | MailFrameTab1:SetText(i["INBOX"]);
|
---|
486 | MailFrameTab2:SetText(i["SENDMAIL"]);
|
---|
487 | StationeryPopupCancelButton:SetText(i["CANCEL"]);
|
---|
488 | StationeryPopupOkayButton:SetText(i["OKAY"]);
|
---|
489 | OpenMailTitleText:SetText(i["OPENMAIL"]);
|
---|
490 | OpenMailAttachmentText:SetText(i["TAKE_ATTACHMENTS"]);
|
---|
491 | OpenMailSenderLabel:SetText(i["FROM"]);
|
---|
492 | OpenMailSubjectLabel:SetText(i["MAIL_SUBJECT_LABEL"]);
|
---|
493 | OpenMailReportSpamButton:SetText(i["REPORT_SPAM"]);
|
---|
494 | OpenMailInvoiceItemLabel:SetText(i["ITEM_SOLD_COLON"]);
|
---|
495 | OpenMailInvoicePurchaser:SetText(i["PURCHASED_BY_COLON"]);
|
---|
496 | OpenMailInvoiceSalePrice:SetText(i["SALE_PRICE_COLON"]);
|
---|
497 | OpenMailInvoiceDeposit:SetText(i["DEPOSIT_COLON"]);
|
---|
498 | OpenMailInvoiceHouseCut:SetText(i["AUCTION_HOUSE_CUT_COLON"]);
|
---|
499 | OpenMailInvoiceAmountReceived:SetText(i["AMOUNT_RECEIVED_COLON"]);
|
---|
500 | OpenMailInvoiceNotYetSent:SetText(i["AUCTION_INVOICE_FUNDS_NOT_YET_SENT"]);
|
---|
501 | OpenMailCancelButton:SetText(i["CLOSE"]);
|
---|
502 | OpenMailDeleteButton:SetText(i["DELETE"]);
|
---|
503 | OpenMailReplyButton:SetText(i["REPLY_MESSAGE"]);
|
---|
504 |
|
---|
505 |
|
---|
506 | -- file: MainMenuBar.xml
|
---|
507 |
|
---|
508 |
|
---|
509 | -- file: MainMenuBarBagButtons.xml
|
---|
510 |
|
---|
511 |
|
---|
512 | -- file: MainMenuBarMicroButtons.xml
|
---|
513 |
|
---|
514 |
|
---|
515 | -- file: MerchantFrame.xml
|
---|
516 | --MerchantItemTemplateName:SetText(i["Item Name"]);
|
---|
517 | MerchantNameText:SetText(i["Merchant Name"]);
|
---|
518 | MerchantPageText:SetText(i["Page"]);
|
---|
519 | MerchantRepairText:SetText(i["REPAIR_ITEMS"]);
|
---|
520 | MerchantBuyBackItemName:SetText(i["Item Name"]);
|
---|
521 | MerchantFrameTab1:SetText(i["MERCHANT"]);
|
---|
522 | MerchantFrameTab2:SetText(i["BUYBACK"]);
|
---|
523 |
|
---|
524 |
|
---|
525 | -- file: MinigameFrame.xml
|
---|
526 |
|
---|
527 |
|
---|
528 | -- file: Minimap.xml
|
---|
529 |
|
---|
530 |
|
---|
531 | -- file: MirrorTimer.xml
|
---|
532 |
|
---|
533 |
|
---|
534 | -- file: MoneyFrame.xml
|
---|
535 |
|
---|
536 |
|
---|
537 | -- file: MoneyInputFrame.xml
|
---|
538 |
|
---|
539 |
|
---|
540 | -- file: MovieRecordingProgress.xml
|
---|
541 | MovieProgressBarText:SetText(i["Compressing"]);
|
---|
542 |
|
---|
543 |
|
---|
544 | -- file: MultiActionBars.xml
|
---|
545 |
|
---|
546 |
|
---|
547 | -- file: OpacitySliderFrame.xml
|
---|
548 |
|
---|
549 |
|
---|
550 | -- file: OptionsFrame.xml
|
---|
551 | OptionsFrameResolutionDropDownLabel:SetText(i["RESOLUTION"]);
|
---|
552 | OptionsFrameRefreshDropDownLabel:SetText(i["REFRESH_RATE"]);
|
---|
553 | OptionsFrameMultiSampleDropDownLabel:SetText(i["MULTISAMPLE"]);
|
---|
554 | OptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
555 | OptionsFrameOkay:SetText(i["OKAY"]);
|
---|
556 | OptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
557 |
|
---|
558 |
|
---|
559 | -- file: OptionsFrameTemplates.xml
|
---|
560 | --OptionsSliderTemplateLow:SetText(i["LOW"]);
|
---|
561 | --OptionsSliderTemplateHigh:SetText(i["HIGH"]);
|
---|
562 |
|
---|
563 |
|
---|
564 | -- file: PVPFrame.xml
|
---|
565 | --PVPFrameLabel:SetText(i["PVP_LABEL_HONOR"]);
|
---|
566 | --PVPFramePoints:SetText(i["12,123,213"]);
|
---|
567 | PVPFrameArenaLabel:SetText(i["PVP_LABEL_ARENA"]);
|
---|
568 | PVPFrameArenaPoints:SetText(i["12,123,213"]);
|
---|
569 | PVPHonorKillsLabel:SetText(i["KILLS_PVP"]);
|
---|
570 | PVPHonorHonorLabel:SetText(i["HONOR"]);
|
---|
571 | --PVPFrameLine1TodayLabel:SetText(i["HONOR_TODAY"]);
|
---|
572 | --PVPFrameLine1YesterdayLabel:SetText(i["HONOR_YESTERDAY"]);
|
---|
573 | --PVPFrameLine1LifetimeLabel:SetText(i["HONOR_LIFETIME"]);
|
---|
574 | --PVPFrameLine1LifetimeHonor:SetText(i["-"]);
|
---|
575 | PVPTeamDetailsGamesLabel:SetText(i["GAMES"]);
|
---|
576 | PVPTeamDetailsGames:SetText(i["45"]);
|
---|
577 | PVPTeamDetailsWinLossLabel:SetText(i["WIN_LOSS"]);
|
---|
578 | PVPTeamDetailsRankLabel:SetText(i["RANK"]);
|
---|
579 | PVPTeamDetailsRatingLabel:SetText(i["ARENA_TEAM_RATING"]);
|
---|
580 | PVPTeamDetailsFrameColumnHeader1:SetText(i["NAME"]);
|
---|
581 | PVPTeamDetailsFrameColumnHeader2:SetText(i["CLASS"]);
|
---|
582 | PVPTeamDetailsFrameColumnHeader3:SetText(i["PLAYED"]);
|
---|
583 | PVPTeamDetailsFrameColumnHeader4:SetText(i["WIN_LOSS"]);
|
---|
584 | PVPTeamDetailsFrameColumnHeader5:SetText(i["RATING"]);
|
---|
585 | PVPTeamDetailsAddTeamMember:SetText(i["ADDMEMBER_TEAM"]);
|
---|
586 |
|
---|
587 |
|
---|
588 | -- file: PVPFrameTemplates.xml
|
---|
589 | --PVPTeamDataTemplateRatingLabel:SetText(i["ARENA_TEAM_RATING"]);
|
---|
590 | --PVPTeamDataTemplateTypeLabel:SetText(i["ARENA_THIS_WEEK"]);
|
---|
591 | --PVPTeamDataTemplateGamesLabel:SetText(i["GAMES"]);
|
---|
592 | --PVPTeamDataTemplateWinLossLabel:SetText(i["WIN_LOSS"]);
|
---|
593 | --PVPTeamDataTemplatePlayedLabel:SetText(i["PLAYED"]);
|
---|
594 |
|
---|
595 |
|
---|
596 | -- file: PaperDollFrame.xml
|
---|
597 | CharacterLevelText:SetText(i["Level level race class"]);
|
---|
598 | CharacterTitleText:SetText(i["title of the player"]);
|
---|
599 | MagicResText1:SetText(i["X"]);
|
---|
600 | MagicResText2:SetText(i["X"]);
|
---|
601 | MagicResText3:SetText(i["X"]);
|
---|
602 | MagicResText4:SetText(i["X"]);
|
---|
603 | MagicResText5:SetText(i["X"]);
|
---|
604 |
|
---|
605 |
|
---|
606 | -- file: PartyFrame.xml
|
---|
607 |
|
---|
608 |
|
---|
609 | -- file: PartyFrameTemplates.xml
|
---|
610 |
|
---|
611 |
|
---|
612 | -- file: PetActionBarFrame.xml
|
---|
613 |
|
---|
614 |
|
---|
615 | -- file: PetFrame.xml
|
---|
616 |
|
---|
617 |
|
---|
618 | -- file: PetPaperDollFrame.xml
|
---|
619 | PetLevelText:SetText(i["Level level race class"]);
|
---|
620 | PetTrainingPointLabel:SetText(i["TRAINING_POINTS"]);
|
---|
621 | PetPaperDollCloseButton:SetText(i["CLOSE"]);
|
---|
622 | PetMagicResText1:SetText(i["X"]);
|
---|
623 | PetMagicResText2:SetText(i["X"]);
|
---|
624 | PetMagicResText3:SetText(i["X"]);
|
---|
625 | PetMagicResText4:SetText(i["X"]);
|
---|
626 | PetMagicResText5:SetText(i["X"]);
|
---|
627 |
|
---|
628 |
|
---|
629 | -- file: PetPopup.xml
|
---|
630 |
|
---|
631 |
|
---|
632 | -- file: PetStable.xml
|
---|
633 | PetStableTitleLabel:SetText(i["STABLES"]);
|
---|
634 | PetStableLevelText:SetText(i["Bobby The Fleshripper (Level 99 Raptor)"]);
|
---|
635 | PetStableLoyaltyText:SetText(i["Loyalty: Mans Best Friend"]);
|
---|
636 | PetStableSlotText:SetText(i["STABLE_SLOT_TEXT"]);
|
---|
637 | PetStableCostLabel:SetText(i["COSTS_LABEL"]);
|
---|
638 | PetStablePurchaseButton:SetText(i["PURCHASE"]);
|
---|
639 |
|
---|
640 |
|
---|
641 | -- file: PetitionFrame.xml
|
---|
642 | PetitionFrameMemberTitle:SetText(i["MEMBERS"]);
|
---|
643 | PetitionFrameCancelButton:SetText(i["CLOSE"]);
|
---|
644 | PetitionFrameSignButton:SetText(i["SIGN_CHARTER"]);
|
---|
645 | PetitionFrameRequestButton:SetText(i["REQUEST_SIGNATURE"]);
|
---|
646 | PetitionFrameRenameButton:SetText(i["RENAME_GUILD"]);
|
---|
647 |
|
---|
648 |
|
---|
649 | -- file: PlayerFrame.xml
|
---|
650 |
|
---|
651 |
|
---|
652 | -- file: QuestFrame.xml
|
---|
653 | QuestFrameNpcNameText:SetText(i["Title Text"]);
|
---|
654 | QuestFrameCancelButton:SetText(i["CANCEL"]);
|
---|
655 | QuestFrameCompleteQuestButton:SetText(i["COMPLETE_QUEST"]);
|
---|
656 | QuestRewardRewardTitleText:SetText(i["QUEST_REWARDS"]);
|
---|
657 | QuestRewardItemChooseText:SetText(i["REWARD_CHOOSE"]);
|
---|
658 | QuestFrameGoodbyeButton:SetText(i["CANCEL"]);
|
---|
659 | QuestFrameCompleteButton:SetText(i["CONTINUE"]);
|
---|
660 | QuestProgressTitleText:SetText(i["Quest Title"]);
|
---|
661 | QuestProgressRequiredItemsText:SetText(i["TURN_IN_ITEMS"]);
|
---|
662 | QuestProgressRequiredMoneyText:SetText(i["REQUIRED_MONEY"]);
|
---|
663 | QuestFrameDeclineButton:SetText(i["DECLINE"]);
|
---|
664 | QuestFrameAcceptButton:SetText(i["ACCEPT"]);
|
---|
665 | QuestDetailObjectiveTitleText:SetText(i["QUEST_OBJECTIVES"]);
|
---|
666 | QuestDetailRewardTitleText:SetText(i["QUEST_REWARDS"]);
|
---|
667 | QuestDetailItemChooseText:SetText(i["REWARD_CHOICES"]);
|
---|
668 | QuestDetailItemReceiveText:SetText(i["Reward receive text"]);
|
---|
669 | QuestFrameGreetingGoodbyeButton:SetText(i["GOODBYE"]);
|
---|
670 | GreetingText:SetText(i["Filler Text"]);
|
---|
671 | CurrentQuestsText:SetText(i["CURRENT_QUESTS"]);
|
---|
672 | AvailableQuestsText:SetText(i["AVAILABLE_QUESTS"]);
|
---|
673 |
|
---|
674 |
|
---|
675 | -- file: QuestFrameTemplates.xml
|
---|
676 | --QuestHonorFrameTemplateHonorReceiveText:SetText(i["BONUS_HONOR"]);
|
---|
677 | --QuestPlayerTitleFrameTemplateTitleLabel:SetText(i["REWARD_TITLE"]);
|
---|
678 |
|
---|
679 |
|
---|
680 | -- file: QuestLogFrame.xml
|
---|
681 | QuestLogTitleText:SetText(i["QUEST_LOG"]);
|
---|
682 | QuestLogCollapseAllButton:SetText(i["ALL"]);
|
---|
683 | QuestLogTrackTitle:SetText(i["TRACK_QUEST"]);
|
---|
684 | QuestLogNoQuestsText:SetText(i["QUESTLOG_NO_QUESTS_TEXT"]);
|
---|
685 | QuestLogFrameAbandonButton:SetText(i["ABANDON_QUEST"]);
|
---|
686 | QuestFrameExitButton:SetText(i["EXIT"]);
|
---|
687 | QuestFramePushQuestButton:SetText(i["SHARE_QUEST"]);
|
---|
688 | QuestLogQuestTitle:SetText(i["Quest title"]);
|
---|
689 | QuestLogRequiredMoneyText:SetText(i["REQUIRED_MONEY"]);
|
---|
690 | QuestLogDescriptionTitle:SetText(i["QUEST_DESCRIPTION"]);
|
---|
691 | QuestLogRewardTitleText:SetText(i["QUEST_REWARDS"]);
|
---|
692 | QuestLogItemChooseText:SetText(i["REWARD_CHOICES"]);
|
---|
693 |
|
---|
694 |
|
---|
695 | -- file: QuestTimerFrame.xml
|
---|
696 |
|
---|
697 |
|
---|
698 | -- file: RaidFrame.xml
|
---|
699 | RaidFrameRaidDescription:SetText(i["RAID_DESCRIPTION"]);
|
---|
700 | RaidFrameConvertToRaidButton:SetText(i["CONVERT_TO_RAID"]);
|
---|
701 | RaidFrameRaidInfoButton:SetText(i["RAID_INFO"]);
|
---|
702 | RaidInfoHeader:SetText(i["RAID_INFORMATION"]);
|
---|
703 | RaidInfoSubheader:SetText(i["RAID_INFO_DESC"]);
|
---|
704 | RaidInfoInstanceLabel:SetText(i["INSTANCE"]);
|
---|
705 | RaidInfoIDLabel:SetText(i["ID"]);
|
---|
706 |
|
---|
707 |
|
---|
708 | -- file: RaidWarning.xml
|
---|
709 |
|
---|
710 |
|
---|
711 | -- file: RatingMenuFrame.xml
|
---|
712 | RatingMenuFrameText:SetText(i["RATINGS_TEXT"]);
|
---|
713 | RatingMenuButtonOkay:SetText(i["OKAY"]);
|
---|
714 |
|
---|
715 |
|
---|
716 | -- file: ReadyCheck.xml
|
---|
717 | ReadyCheckFrameYesButton:SetText(i["YES"]);
|
---|
718 | ReadyCheckFrameNoButton:SetText(i["NO"]);
|
---|
719 |
|
---|
720 |
|
---|
721 | -- file: ReputationFrame.xml
|
---|
722 | --ReputationBarTemplateFactionStanding:SetText(i["Revered"]);
|
---|
723 | ReputationFrameFactionLabel:SetText(i["FACTION"]);
|
---|
724 | ReputationFrameStandingLabel:SetText(i["STANDING"]);
|
---|
725 |
|
---|
726 |
|
---|
727 | -- file: SecureTemplates.xml
|
---|
728 |
|
---|
729 |
|
---|
730 | -- file: SkillFrame.xml
|
---|
731 | --SkillFrameAcceptButton:SetText(i["ACCEPT"]);
|
---|
732 | --SkillFrameCancelButton:SetText(i["CLOSE"]);
|
---|
733 |
|
---|
734 |
|
---|
735 | -- file: SoundOptionsFrame.xml
|
---|
736 | SoundOptionsOutputDropDownLabel:SetText(i["GAME_SOUND_OUTPUT"]);
|
---|
737 | SoundOptionsFrameDefaults:SetText(i["DEFAULTS"]);
|
---|
738 | SoundOptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
739 | SoundOptionsFrameOkay:SetText(i["OKAY"]);
|
---|
740 |
|
---|
741 |
|
---|
742 | -- file: SpellBookFrame.xml
|
---|
743 | SpellBookTitleText:SetText(i["SPELLBOOK"]);
|
---|
744 |
|
---|
745 |
|
---|
746 | -- file: StackSplitFrame.xml
|
---|
747 | StackSplitOkayButton:SetText(i["OKAY"]);
|
---|
748 | StackSplitCancelButton:SetText(i["CANCEL"]);
|
---|
749 |
|
---|
750 |
|
---|
751 | -- file: StaticPopup.xml
|
---|
752 |
|
---|
753 |
|
---|
754 | -- file: StatsFrame.xml
|
---|
755 |
|
---|
756 |
|
---|
757 | -- file: TabardFrame.xml
|
---|
758 | TabardFrameGreetingText:SetText(i["TABARDVENDORGREETING"]);
|
---|
759 | TabardFrameCostLabel:SetText(i["TABARDVENDORCOST"]);
|
---|
760 | TabardFrameAcceptButton:SetText(i["ACCEPT"]);
|
---|
761 | TabardFrameCancelButton:SetText(i["CANCEL"]);
|
---|
762 |
|
---|
763 |
|
---|
764 | -- file: TargetFrame.xml
|
---|
765 | TargetDeadText:SetText(i["DEAD"]);
|
---|
766 | TargetofTargetDeadText:SetText(i["DEAD"]);
|
---|
767 |
|
---|
768 |
|
---|
769 | -- file: TaxiFrame.xml
|
---|
770 |
|
---|
771 |
|
---|
772 | -- file: TextStatusBar.xml
|
---|
773 |
|
---|
774 |
|
---|
775 | -- file: TicTacToeFrame.xml
|
---|
776 | --icTacToeFrameTitleText:SetText(i["DRESSUP_FRAME"]);
|
---|
777 |
|
---|
778 |
|
---|
779 | -- file: TotemFrame.xml
|
---|
780 |
|
---|
781 |
|
---|
782 | -- file: TradeFrame.xml
|
---|
783 | --TradeItemTemplateName:SetText(i["Item Name"]);
|
---|
784 | TradeFrameRecipientNameText:SetText(i["Player Name"]);
|
---|
785 | TradeFramePlayerNameText:SetText(i["Recipient Name"]);
|
---|
786 | TradeFramePlayerEnchantText:SetText(i["TRADEFRAME_ENCHANT_SLOT_LABEL"]);
|
---|
787 | TradeFrameRecipientEnchantText:SetText(i["TRADEFRAME_ENCHANT_SLOT_LABEL"]);
|
---|
788 | TradeFrameTradeButton:SetText(i["TRADE"]);
|
---|
789 | TradeFrameCancelButton:SetText(i["CANCEL"]);
|
---|
790 |
|
---|
791 |
|
---|
792 | -- file: TutorialFrame.xml
|
---|
793 | TutorialFrameCheckboxText:SetText(i["ENABLE_TUTORIAL_TEXT"]);
|
---|
794 |
|
---|
795 |
|
---|
796 | -- file: UIDropDownMenu.xml
|
---|
797 |
|
---|
798 |
|
---|
799 | -- file: UIDropDownMenuTemplates.xml
|
---|
800 |
|
---|
801 |
|
---|
802 | -- file: UIErrorsFrame.xml
|
---|
803 |
|
---|
804 |
|
---|
805 | -- file: UIMenu.xml
|
---|
806 |
|
---|
807 | -- file: UIOptionsPanels.xml
|
---|
808 | --InterfaceOptionsSliderTemplateLow:SetText(i["LOW"]);
|
---|
809 | --InterfaceOptionsSliderTemplateHigh:SetText(i["HIGH"]);
|
---|
810 | InterfaceOptionsControlsPanelTitle:SetText(i["CONTROLS_LABEL"]);
|
---|
811 | InterfaceOptionsControlsPanelSubText:SetText(i["CONTROLS_SUBTEXT"]);
|
---|
812 | --InterfaceOptionsControlsPanelLabel:SetText(i["AUTO_LOOT_KEY_TEXT"]);
|
---|
813 | InterfaceOptionsCombatPanelTitle:SetText(i["COMBAT_LABEL"]);
|
---|
814 | InterfaceOptionsCombatPanelSubText:SetText(i["COMBAT_SUBTEXT"]);
|
---|
815 | --InterfaceOptionsCombatPanelLabel:SetText(i["MODE"]);
|
---|
816 | --InterfaceOptionsCombatPanelLabel:SetText(i["SHOW_ENEMY_CAST"]);
|
---|
817 | InterfaceOptionsDisplayPanelTitle:SetText(i["DISPLAY_LABEL"]);
|
---|
818 | InterfaceOptionsDisplayPanelSubText:SetText(i["DISPLAY_SUBTEXT"]);
|
---|
819 | InterfaceOptionsDisplayPanelWorldPVPObjectiveDisplayLabel:SetText(i["WORLD_PVP_DISPLAY"]);
|
---|
820 | InterfaceOptionsQuestsPanelTitle:SetText(i["QUESTS_LABEL"]);
|
---|
821 | InterfaceOptionsQuestsPanelSubText:SetText(i["QUESTS_SUBTEXT"]);
|
---|
822 | InterfaceOptionsSocialPanelTitle:SetText(i["SOCIAL_LABEL"]);
|
---|
823 | InterfaceOptionsSocialPanelSubText:SetText(i["SOCIAL_SUBTEXT"]);
|
---|
824 | InterfaceOptionsActionBarsPanelTitle:SetText(i["ACTIONBARS_LABEL"]);
|
---|
825 | InterfaceOptionsActionBarsPanelSubText:SetText(i["ACTIONBARS_SUBTEXT"]);
|
---|
826 | InterfaceOptionsNamesPanelTitle:SetText(i["NAMES_LABEL"]);
|
---|
827 | InterfaceOptionsNamesPanelSubText:SetText(i["NAMES_SUBTEXT"]);
|
---|
828 | InterfaceOptionsCombatTextPanelTitle:SetText(i["COMBATTEXT_LABEL"]);
|
---|
829 | InterfaceOptionsCombatTextPanelSubText:SetText(i["COMBATTEXT_SUBTEXT"]);
|
---|
830 | --InterfaceOptionsCombatTextPanelLabel:SetText(i["MODE"]);
|
---|
831 | InterfaceOptionsStatusTextPanelTitle:SetText(i["STATUSTEXT_LABEL"]);
|
---|
832 | InterfaceOptionsStatusTextPanelSubText:SetText(i["STATUSTEXT_SUBTEXT"]);
|
---|
833 | InterfaceOptionsPartyRaidPanelTitle:SetText(i["PARTYRAID_LABEL"]);
|
---|
834 | InterfaceOptionsPartyRaidPanelSubText:SetText(i["PARTYRAID_SUBTEXT"]);
|
---|
835 | InterfaceOptionsCameraPanelTitle:SetText(i["CAMERA_LABEL"]);
|
---|
836 | InterfaceOptionsCameraPanelSubText:SetText(i["CAMERA_SUBTEXT"]);
|
---|
837 | --InterfaceOptionsCameraPanelLabel:SetText(i["CAMERA_FOLLOWING_STYLE"]);
|
---|
838 | InterfaceOptionsMousePanelTitle:SetText(i["MOUSE_LABEL"]);
|
---|
839 | InterfaceOptionsMousePanelSubText:SetText(i["MOUSE_SUBTEXT"]);
|
---|
840 | --InterfaceOptionsMousePanelLabel:SetText(i["CLICK_CAMERA_STYLE"]);
|
---|
841 | InterfaceOptionsHelpPanelTitle:SetText(i["HELP_LABEL"]);
|
---|
842 | InterfaceOptionsHelpPanelSubText:SetText(i["HELP_SUBTEXT"]);
|
---|
843 | InterfaceOptionsHelpPanelResetTutorials:SetText(i["RESET_TUTORIALS"]);
|
---|
844 | InterfaceOptionsLanguagesPanelTitle:SetText(i["LANGUAGES_LABEL"]);
|
---|
845 | InterfaceOptionsLanguagesPanelSubText:SetText(i["LANGUAGES_SUBTEXT"]);
|
---|
846 | --InterfaceOptionsLanguagesPanelLabel:SetText(i["LOCALE_INFORMATION"]);
|
---|
847 |
|
---|
848 |
|
---|
849 | -- file: UIPanelTemplates.xml
|
---|
850 |
|
---|
851 |
|
---|
852 | -- file: UIParent.xml
|
---|
853 |
|
---|
854 |
|
---|
855 | -- file: UnitFrame.xml
|
---|
856 |
|
---|
857 |
|
---|
858 | -- file: UnitPopup.xml
|
---|
859 |
|
---|
860 |
|
---|
861 | -- file: VoiceChat.xml
|
---|
862 |
|
---|
863 |
|
---|
864 | -- file: VoiceOptionsFrame.xml
|
---|
865 | VoiceOptionsFrameDisabledMessageText:SetText(i["VOICECHAT_DISABLED"]);
|
---|
866 | VoiceOptionsFrameMicTestText:SetText(i["VOICE_MICROPHONE_TEST"]);
|
---|
867 | VoiceOptionsFrameTypeDropDownLabel:SetText(i["VOICE_CHAT_MODE"]);
|
---|
868 | VoiceOptionsFrameType1Label:SetText(i["KEY_BINDING"]);
|
---|
869 | VoiceOptionsFrameOutputDeviceDropDownLabel:SetText(i["VOICE_CHAT_OUTPUT_DEVICE"]);
|
---|
870 | --VoiceOptionsFrameSlider3Label:SetText(i["VOICE_GAME_DUCKING"]);
|
---|
871 | --VoiceOptionsFrameSlider3Description:SetText(i["VOICE_CHAT_AUDIO_DUCKING"]);
|
---|
872 | --VoiceOptionsFrameSlider3Off:SetText(i["OFF"]);
|
---|
873 | --VoiceOptionsFrameSlider3Normal:SetText(i["VOICE_CHAT_NORMAL"]);
|
---|
874 | VoiceOptionsFrameCancel:SetText(i["CANCEL"]);
|
---|
875 | VoiceOptionsFrameOkay:SetText(i["OKAY"]);
|
---|
876 |
|
---|
877 |
|
---|
878 | -- file: WorldFrame.xml
|
---|
879 | FramerateLabel:SetText(i["FRAMERATE_LABEL"]);
|
---|
880 |
|
---|
881 |
|
---|
882 | -- file: WorldMapFrame.xml
|
---|
883 | WorldMapZoomOutButton:SetText(i["ZOOM_OUT"]);
|
---|
884 | WorldMapFrameAreaLabel:SetText(i["BLAH!"]);
|
---|
885 |
|
---|
886 |
|
---|
887 | -- file: WorldMapFrameTemplates.xml
|
---|
888 |
|
---|
889 |
|
---|
890 | -- file: WorldStateFrame.xml
|
---|
891 | WorldStateScoreFrameLabel:SetText(i["BATTLEFIELDS"]);
|
---|
892 | WorldStateScoreFrameTimerLabel:SetText(i["TIME_TO_PORT"]);
|
---|
893 | WorldStateScoreFrameTab1:SetText(i["ALL"]);
|
---|
894 | WorldStateScoreFrameTab2:SetText(i["FACTION_ALLIANCE"]);
|
---|
895 | WorldStateScoreFrameTab3:SetText(i["FACTION_HORDE"]);
|
---|
896 | WorldStateScoreFrameLeaveButton:SetText(i["LEAVE_BATTLEGROUND"]);
|
---|
897 |
|
---|
898 |
|
---|
899 | -- file: ZoneText.xml
|
---|