source: trunk/Modules/Export/files/3.3.0/CzWoW/Localization.lua

Last change on this file was 327, checked in by maron, 15 years ago

Úprava addonu: vyžší stabilita, odstranění chyby špatného zobrazování vzdálenosti v Gridu, naprogramováno překládání textu tooltipů (nejen názvů), oprava tutoriálu

File size: 45.3 KB
Line 
1local i=CzWoW_interface;
2local n=CzWoW_interface_entoname;
3local CanTranslate = true;
4local BadText = {};
5local BadPartText = {};
6local BadIndex = {};
7
8
9local Translate=function(index)
10 if i[index] then
11 return(i[index])
12 else
13 return(getglobal(index))
14 end
15end
16
17local TranslateByText=function(text)
18 if i[n[text]] then
19 return(i[n[text]])
20 else
21 return(text)
22 end
23end
24
25
26
27BadText["0"] = " ";
28BadText["1"] = " ";
29BadText["2"] = " ";
30BadText["3"] = " ";
31BadText["-"] = " ";
32BadText[" - "] = " ";
33BadText["..."] = " ";
34
35BadPartText["/"] = " ";
36BadPartText["\\"] = " ";
37BadPartText["$"] = " ";
38BadPartText["|"] = " ";
39BadPartText["\""] = " ";
40BadPartText["SPELL_FAILED"] = " ";
41BadPartText["ERR"] = " ";
42BadPartText["http"] = " ";
43BadPartText["%dx%s"] = " ";
44BadPartText["LOOT"] = " ";
45
46BadIndex["COPPER_AMOUNT_TEXTURE"] = " ";
47BadIndex["SPELL_REAGENTS"] = " ";
48BadIndex["SHOW_CASTABLE_DEBUFFS_TEXT"] = " ";
49BadIndex["XP_TEXT"] = " ";
50BadIndex["SPELL_REAGENTS"] = " ";
51BadIndex["SPELL_RANGE"] = " ";
52
53
54---------------------------------------------------------------------
55 -------zacátek hlavní funkce prekladu rozhraní
56---------------------------------------------------------------------
57
58TranslateInterface=function()
59
60--error message in the middle screen
61local old_UIErrorsFrame_OnEvent = UIErrorsFrame_OnEvent;
62local function onEvent(self, event, ...)
63 local arg1, arg2, arg3, arg4 = ...
64 if(event == 'UI_ERROR_MESSAGE') then
65 self:AddMessage(TranslateByText(arg1), 1.0, 0.1, 0.1, 1.0);
66 else
67 old_UIErrorsFrame_OnEvent(self, event, ...);
68 end
69end
70UIErrorsFrame:SetScript('OnEvent', onEvent)
71
72--tutotial
73local old_TutorialFrame_Update = TutorialFrame_Update;
74TutorialFrame_Update=function(currentTutorial)
75 old_TutorialFrame_Update(currentTutorial);
76 local title = _G["TUTORIAL_TITLE"..currentTutorial];
77 local text = _G["TUTORIAL"..currentTutorial];
78 if ( title and text) then
79 TutorialFrameTitle:SetText(TranslateByText(title));
80 TutorialFrameText:SetText(TranslateByText(text));
81 end
82end
83
84--GameTooltipFrame begin
85local oldTooltipSetText=GameTooltip["SetText"];
86GameTooltip["SetText"]=function(object, text, r, g, b, alphaValue, textWrap)
87 text=TranslateByText(text);
88 oldTooltipSetText(object, text, r, g, b, alphaValue, textWrap);
89end
90
91local oldTooltipAddLine=GameTooltip["AddLine"];
92GameTooltip["AddLine"]=function(object, text, r, g, b, alphaValue, textWrap)
93 text=TranslateByText(text);
94 oldTooltipAddLine(object, text, r, g, b, alphaValue, textWrap);
95end
96
97--Set global var with CZ texts
98-- export: vyexportovávat pouze určenou verzi indexu
99
100 for index, value in pairs(i) do
101 CanTranslate = true;
102 en_text = GetText(index);
103
104
105 if (n[en_text]) then else CanTranslate = false; end
106 if (en_text == i[index]) then CanTranslate = false; end
107 if (BadText[i[index]]) then CanTranslate = false; end
108 if (BadIndex[index]) then CanTranslate = false; end
109 if (i[index] == getglobal(index)) then CanTranslate = false; end
110 if (i[index]) then else CanTranslate = false; end
111
112 for index_BadPartText in pairs(BadPartText) do
113 if (string.find(index,index_BadPartText) == 1) then CanTranslate = false; end
114 if (string.find(i[index],index_BadPartText) == 1) then CanTranslate = false; end
115 end
116
117 if (CanTranslate) then
118 setglobal(index,i[index]);
119 end
120
121 end
122
123
124--AlertFrames.xml
125
126--DungeonCompletionAlertFrameTemplateAnimInWaitAndAnimOutDungeonTexture:SetText(Translate("DUNGEON_COMPLETED"));
127--AchievementAlertFrameTemplateAnimInWaitAndAnimOutUnlocked:SetText(Translate("ACHIEVEMENT_UNLOCKED"));
128--AchievementAlertFrameTemplateAnimInWaitAndAnimOutName:SetText(Translate("For the Alliance!"));
129
130--AlternatePowerBar.xml
131
132
133--AudioOptionsPanels.xml
134
135AudioOptionsSoundPanelTitle:SetText(Translate("SOUND_LABEL"));
136AudioOptionsSoundPanelSubText:SetText(Translate("SOUND_SUBTEXT"));
137--AudioOptionsSoundPanelTitleSubTextEnableSoundPlaybackSoundEffectsErrorSpeechEmoteSoundsPetSoundsMusicLoopMusicAmbientSoundsSoundInBGReverbHRTFEnableDSPsSoundQualityHardwareHardwareDropDownLabel:SetText(Translate("GAME_SOUND_OUTPUT"));
138--AudioOptionsSoundPanelTitleSubTextEnableSoundPlaybackSoundEffectsErrorSpeechEmoteSoundsPetSoundsMusicLoopMusicAmbientSoundsSoundInBGReverbHRTFEnableDSPsSoundQualityHardwareHardwareDropDownSoundChannelsUseHardwareVolumeMasterVolumeSoundVolumeLabel:SetText(Translate("SOUND_VOLUME"));
139--AudioOptionsSoundPanelTitleSubTextEnableSoundPlaybackSoundEffectsErrorSpeechEmoteSoundsPetSoundsMusicLoopMusicAmbientSoundsSoundInBGReverbHRTFEnableDSPsSoundQualityHardwareHardwareDropDownSoundChannelsUseHardwareVolumeMasterVolumeSoundVolumeMusicVolumeLabel:SetText(Translate("MUSIC_VOLUME"));
140--AudioOptionsSoundPanelTitleSubTextEnableSoundPlaybackSoundEffectsErrorSpeechEmoteSoundsPetSoundsMusicLoopMusicAmbientSoundsSoundInBGReverbHRTFEnableDSPsSoundQualityHardwareHardwareDropDownSoundChannelsUseHardwareVolumeMasterVolumeSoundVolumeMusicVolumeAmbienceVolumeLabel:SetText(Translate("AMBIENCE_VOLUME"));
141AudioOptionsVoicePanelTitle:SetText(Translate("VOICE_LABEL"));
142AudioOptionsVoicePanelSubText:SetText(Translate("VOICE_SUBTEXT"));
143--AudioOptionsVoicePanelTitleSubTextDisabledMessageText:SetText(Translate("VOICECHAT_DISABLED"));
144--AudioOptionsVoicePanelTitleSubTextDisabledMessageEnableVoiceTalkingEnableMicrophoneInputDeviceDropDownMicrophoneVolumeMicTestText:SetText(Translate("VOICE_MICROPHONE_TEST"));
145--PlayLoopbackSoundButtonBindingChatModeDropDownLabel:SetText(Translate("VOICE_CHAT_MODE"));
146--PlayLoopbackSoundButtonBindingChatModeDropDownChatMode1Label:SetText(Translate("KEY_BINDING"));
147--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownLabel:SetText(Translate("VOICE_CHAT_OUTPUT_DEVICE"));
148--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioLabel:SetText(Translate("VOICE_GAME_DUCKING"));
149--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioDescription:SetText(Translate("VOICE_CHAT_AUDIO_DUCKING"));
150--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioOff:SetText(Translate("OFF"));
151--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioNormal:SetText(Translate("VOICE_CHAT_NORMAL"));
152--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioSoundFadeLabel:SetText(Translate("SOUND_VOLUME"));
153--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioSoundFadeMusicFadeLabel:SetText(Translate("MUSIC_VOLUME"));
154--AudioOptionsVoicePanelVoiceActivateSliderListeningOutputDeviceDropDownSpeakerVolumeAudioSoundFadeMusicFadeAmbienceFadeLabel:SetText(Translate("AMBIENCE_VOLUME"));
155
156--AutoComplete.xml
157
158AutoCompleteInstructions:SetText(Translate("PRESS_TAB"));
159
160--Bindings.xml
161
162
163--BuffFrame.xml
164
165
166--CharacterFrame.xml
167
168CharacterNameText:SetText(Translate("NAME"));
169CharacterFrameTab1:SetText(Translate("CHARACTER"));
170CharacterFrameTab2:SetText(Translate("PETS"));
171CharacterFrameTab3:SetText(Translate("REPUTATION_ABBR"));
172CharacterFrameTab4:SetText(Translate("SKILLS_ABBR"));
173CharacterFrameTab5:SetText(Translate("CURRENCY"));
174
175--ChatConfigFrame.xml
176
177--ChatConfigBoxWithHeaderAndClassColorsTemplateColorHeader:SetText(Translate("COLOR"));
178--ChatConfigBoxWithHeaderAndClassColorsTemplateClassColorHeader:SetText(Translate("SHOW_CLASS_COLOR"));
179--ClassColorLegendTemplateTitle:SetText(Translate("CLASS_COLORS"));
180ChatConfigCategoryFrameTitle:SetText(Translate("CATEGORIES"));
181ChatConfigCategoryFrameButton1:SetText(Translate("CHAT"));
182ChatConfigCategoryFrameButton2:SetText(Translate("COMBAT"));
183ChatConfigCategoryFrameButton3:SetText(Translate("GLOBAL_CHANNELS"));
184ChatConfigCategoryFrameButton4:SetText(Translate("OTHER"));
185--ChatConfigCombatSettings:SetText(Translate("FILTERS"));
186ChatConfigCombatSettingsFiltersDeleteButton:SetText(Translate("DELETE"));
187ChatConfigCombatSettingsFiltersAddFilterButton:SetText(Translate("ADD_FILTER"));
188ChatConfigCombatSettingsFiltersCopyFilterButton:SetText(Translate("COPY_FILTER"));
189--CombatConfigMessageTypesLeftRightMiscMisc:SetText(Translate("MISCELLANEOUS"));
190CombatConfigColorsExampleTitle:SetText(Translate("EXAMPLE_TEXT"));
191--CombatConfigColorsExampleString1ExampleString2ExampleTitleUnitColorsHighlightingTitle:SetText(Translate("HIGHLIGHTING"));
192--CombatConfigColorsExampleString1ExampleString2ExampleTitleUnitColorsHighlightingTitleLineAbilityDamageSchoolColorizeUnitNameUnitName:SetText(Translate("COLORIZE"));
193CombatConfigFormattingExampleTitle:SetText(Translate("EXAMPLE_TEXT"));
194--CombatConfigSettingsNameEditBoxNameEditBox:SetText(Translate("FILTER_NAME"));
195CombatConfigSettingsSaveButton:SetText(Translate("SAVE"));
196ChatConfigFrameDefaultButton:SetText(Translate("CHAT_DEFAULTS"));
197CombatLogDefaultButton:SetText(Translate("COMBATLOG_DEFAULTS"));
198ChatConfigFrameCancelButton:SetText(Translate("CANCEL"));
199ChatConfigFrameOkayButton:SetText(Translate("OKAY"));
200
201--ColorPickerFrame.xml
202
203--ColorPickerFrameHeader:SetText(Translate("COLOR_PICKER"));
204ColorPickerCancelButton:SetText(Translate("CANCEL"));
205ColorPickerOkayButton:SetText(Translate("OKAY"));
206--OpacitySliderFrameText:SetText(Translate("-"));
207--OpacitySliderFrameText:SetText(Translate("+"));
208OpacityFrameSliderText:SetText(Translate("OPACITY"));
209--OpacityFrameSliderText:SetText(Translate("-"));
210--OpacityFrameSliderText:SetText(Translate("+"));
211
212--ContainerFrame.xml
213
214
215--FloatingChatFrame.xml
216
217
218--FocusFrame.xml
219
220--FocusFrameNumericalThreatValue:SetText(Translate("100%"));
221--TargetofFocusDeadText:SetText(Translate("DEAD"));
222
223--FontStyles.xml
224
225
226--Fonts.xml
227
228
229--FriendsFrame.xml
230
231FriendsFrameToggleTab1:SetText(Translate("FRIENDS"));
232FriendsFrameToggleTab2:SetText(Translate("IGNORE"));
233FriendsFrameToggleTab3:SetText(Translate("MUTED"));
234FriendsFrameAddFriendButton:SetText(Translate("ADD_FRIEND"));
235FriendsFrameRemoveFriendButton:SetText(Translate("REMOVE_FRIEND"));
236FriendsFrameSendMessageButton:SetText(Translate("SEND_MESSAGE"));
237FriendsFrameGroupInviteButton:SetText(Translate("GROUP_INVITE"));
238IgnoreFrameToggleTab1:SetText(Translate("FRIENDS"));
239IgnoreFrameToggleTab2:SetText(Translate("IGNORE"));
240IgnoreFrameToggleTab3:SetText(Translate("MUTED"));
241FriendsFrameIgnorePlayerButton:SetText(Translate("IGNORE_PLAYER"));
242FriendsFrameStopIgnoreButton:SetText(Translate("STOP_IGNORE"));
243MutedFrameToggleTab1:SetText(Translate("FRIENDS"));
244MutedFrameToggleTab2:SetText(Translate("IGNORE"));
245MutedFrameToggleTab3:SetText(Translate("MUTED"));
246FriendsFrameMutedPlayerButton:SetText(Translate("MUTE_PLAYER"));
247FriendsFrameUnmuteButton:SetText(Translate("UNMUTE"));
248WhoFrameColumnHeader1:SetText(Translate("NAME"));
249WhoFrameColumnHeader3:SetText(Translate("LEVEL_ABBR"));
250WhoFrameColumnHeader4:SetText(Translate("CLASS"));
251WhoFrameGroupInviteButton:SetText(Translate("GROUP_INVITE"));
252WhoFrameAddFriendButton:SetText(Translate("ADD_FRIEND"));
253WhoFrameWhoButton:SetText(Translate("REFRESH"));
254GuildFrameNotesLabel:SetText(Translate("GUILD_MOTD_LABEL"));
255GuildFrameLFGButtonText:SetText(Translate("SHOW_OFFLINE_MEMBERS"));
256GuildFrameColumnHeader1:SetText(Translate("NAME"));
257GuildFrameColumnHeader2:SetText(Translate("ZONE"));
258GuildFrameColumnHeader3:SetText(Translate("LEVEL_ABBR"));
259GuildFrameColumnHeader4:SetText(Translate("CLASS"));
260GuildFrameGuildStatusColumnHeader1:SetText(Translate("NAME"));
261GuildFrameGuildStatusColumnHeader2:SetText(Translate("RANK"));
262GuildFrameGuildStatusColumnHeader3:SetText(Translate("LABEL_NOTE"));
263GuildFrameGuildStatusColumnHeader4:SetText(Translate("LASTONLINE"));
264GuildFrameControlButton:SetText(Translate("GUILDCONTROL"));
265GuildFrameAddMemberButton:SetText(Translate("ADDMEMBER"));
266GuildFrameGuildInformationButton:SetText(Translate("GUILD_INFORMATION"));
267--GuildControlPopupFrame:SetText(Translate("GUILDCONTROL_SELECTRANK"));
268--GuildControlPopupFrame:SetText(Translate("GUILDCONTROL_ALLOWRANK"));
269GuildControlWithdrawGoldText:SetText(Translate("GUILDCONTROL_WITHDRAW_GOLD"));
270GuildControlWithdrawGoldAmountText:SetText(Translate("GOLD_PER_DAY"));
271GuildControlPopupFrameCancelButton:SetText(Translate("CANCEL"));
272GuildControlPopupAcceptButton:SetText(Translate("ACCEPT"));
273GuildControlPopupFrameEditBox:SetText(Translate("GUILDCONTROL_RANKLABEL"));
274GuildBankTabLabel:SetText(Translate("GUILDBANK_TAB_COLON"));
275GuildControlTabPermissionsWithdrawItemsText:SetText(Translate("GUILDCONTROL_WITHDRAW_ITEMS"));
276GuildBankTabPermissionsTab6:SetText(Translate("6"));
277GuildBankTabPermissionsTab5:SetText(Translate("5"));
278GuildBankTabPermissionsTab4:SetText(Translate("4"));
279GuildBankTabPermissionsTab3:SetText(Translate("3"));
280GuildBankTabPermissionsTab2:SetText(Translate("2"));
281GuildBankTabPermissionsTab1:SetText(Translate("1"));
282GuildInfoTitle:SetText(Translate("GUILD_INFORMATION"));
283GuildInfoSaveButton:SetText(Translate("ACCEPT"));
284GuildInfoCancelButton:SetText(Translate("CLOSE"));
285GuildInfoGuildEventButton:SetText(Translate("GUILD_EVENT_LOG"));
286GuildMemberDetailZoneLabel:SetText(Translate("ZONE_COLON"));
287GuildMemberDetailRankLabel:SetText(Translate("RANK_COLON"));
288GuildMemberDetailOnlineLabel:SetText(Translate("LAST_ONLINE_COLON"));
289GuildMemberDetailNoteLabel:SetText(Translate("NOTE_COLON"));
290GuildMemberDetailOfficerNoteLabel:SetText(Translate("OFFICER_NOTE_COLON"));
291GuildMemberRemoveButton:SetText(Translate("REMOVE"));
292GuildMemberGroupInviteButton:SetText(Translate("GROUP_INVITE"));
293GuildEventLogTitle:SetText(Translate("GUILD_EVENT_LOG"));
294GuildEventLogCancelButton:SetText(Translate("CLOSE"));
295FriendsFrameTab1:SetText(Translate("FRIENDS"));
296FriendsFrameTab2:SetText(Translate("WHO"));
297FriendsFrameTab3:SetText(Translate("GUILD"));
298FriendsFrameTab4:SetText(Translate("CHAT"));
299FriendsFrameTab5:SetText(Translate("RAID"));
300
301--GameTime.xml
302
303
304--HelpFrame.xml
305
306--HelpFrameCancelButtonTemplate:SetText(Translate("CANCEL"));
307--HelpFrameHeader:SetText(Translate("HELP_FRAME_TITLE"));
308HelpFrameGMTalkTitle:SetText(Translate("HELPFRAME_GMTALK_TITLE"));
309HelpFrameGMTalkText1:SetText(Translate("HELPFRAME_GMTALK_TEXT1"));
310HelpFrameGMTalkIssue1Header:SetText(Translate("HELPFRAME_GMTALK_ISSUE1_HEADER"));
311HelpFrameGMTalkIssue1:SetText(Translate("HELPFRAME_GMTALK_ISSUE1"));
312HelpFrameGMTalkIssue2Header:SetText(Translate("HELPFRAME_GMTALK_ISSUE2_HEADER"));
313HelpFrameGMTalkIssue2:SetText(Translate("HELPFRAME_GMTALK_ISSUE2"));
314HelpFrameGMTalkIssue3Header:SetText(Translate("HELPFRAME_GMTALK_ISSUE3_HEADER"));
315HelpFrameGMTalkIssue3:SetText(Translate("HELPFRAME_GMTALK_ISSUE3"));
316HelpFrameGMTalkPvpPolicyUrl:SetText(Translate("PVP_POLICY_URL"));
317HelpFrameGMTalkText2:SetText(Translate("HELPFRAME_GMTALK_TEXT2"));
318HelpFrameGMTalkOpenTicket:SetText(Translate("HELP_TICKET_OPEN"));
319HelpFrameReportIssueTitle:SetText(Translate("HELPFRAME_REPORTISSUE_TITLE"));
320HelpFrameReportIssueText1:SetText(Translate("HELPFRAME_REPORTISSUE_TEXT1"));
321HelpFrameReportIssueBulletTitle1:SetText(Translate("HELPFRAME_REPORTISSUE_BULLET_TITLE1"));
322HelpFrameReportIssueText2:SetText(Translate("HELPFRAME_REPORTISSUE_TEXT2"));
323HelpFrameReportIssueOpenTicket:SetText(Translate("KBASE_REPORTISSUE"));
324HelpFrameLagTitle:SetText(Translate("HELPFRAME_LAG_TITLE"));
325HelpFrameLagText1:SetText(Translate("HELPFRAME_LAG_TEXT1"));
326HelpFrameLagLoot:SetText(Translate("BUTTON_LAG_LOOT"));
327HelpFrameLagAuctionHouse:SetText(Translate("BUTTON_LAG_AUCTIONHOUSE"));
328HelpFrameLagMail:SetText(Translate("BUTTON_LAG_MAIL"));
329HelpFrameLagChat:SetText(Translate("BUTTON_LAG_CHAT"));
330HelpFrameLagMovement:SetText(Translate("BUTTON_LAG_MOVEMENT"));
331HelpFrameLagSpell:SetText(Translate("BUTTON_LAG_SPELL"));
332HelpFrameStuckTitle:SetText(Translate("HELPFRAME_STUCK_TITLE"));
333HelpFrameStuckText1:SetText(Translate("HELPFRAME_STUCK_TEXT1"));
334HelpFrameStuckStuck:SetText(Translate("STUCK_BUTTON_TEXT"));
335HelpFrameStuckOpenTicket:SetText(Translate("HELP_TICKET_OPEN"));
336HelpFrameOpenTicketLabel:SetText(Translate("HELPFRAME_OPENTICKET_TEXT"));
337HelpFrameOpenTicketCancel:SetText(Translate("CANCEL"));
338HelpFrameOpenTicketSubmit:SetText(Translate("SUBMIT"));
339HelpFrameViewResponseIssueHeader:SetText(Translate("GM_RESPONSE_ISSUE_HEADER"));
340HelpFrameViewResponseMessageHeader:SetText(Translate("GM_RESPONSE_MESSAGE_HEADER"));
341HelpFrameViewResponseMoreHelp:SetText(Translate("GM_RESPONSE_MORE_HELP"));
342HelpFrameViewResponseIssueResolved:SetText(Translate("GM_RESPONSE_RESOLVE"));
343HelpFrameWelcomeTitle:SetText(Translate("HELPFRAME_WELCOME_TITLE"));
344HelpFrameWelcomeText1:SetText(Translate("HELPFRAME_WELCOME_TEXT1"));
345HelpFrameWelcomeGMTalk:SetText(Translate("KBASE_GMTALK"));
346HelpFrameWelcomeReportIssue:SetText(Translate("KBASE_REPORTISSUE"));
347HelpFrameWelcomeStuck:SetText(Translate("KBASE_CHARSTUCK"));
348
349--HybridScrollFrame.xml
350
351
352--InterfaceOptionsPanels.xml
353
354InterfaceOptionsControlsPanelTitle:SetText(Translate("CONTROLS_LABEL"));
355InterfaceOptionsControlsPanelSubText:SetText(Translate("CONTROLS_SUBTEXT"));
356--InterfaceOptionsControlsPanelTitleSubTextStickyTargetingAutoDismountAutoClearAFKBlockTradesLootAtMouseAutoLootCorpseAutoLootKeyDropDownLabel:SetText(Translate("AUTO_LOOT_KEY_TEXT"));
357InterfaceOptionsCombatPanelTitle:SetText(Translate("COMBAT_LABEL"));
358InterfaceOptionsCombatPanelSubText:SetText(Translate("COMBAT_SUBTEXT"));
359--InterfaceOptionsCombatPanelTitleSubTextAttackOnAssistAutoRangeStopAutoAttackNameplateClassColorsAutoSelfCastSelfCastKeyDropDownLabel:SetText(Translate("AUTO_SELF_CAST_KEY_TEXT"));
360--InterfaceOptionsCombatPanelTitleSubTextAttackOnAssistAutoRangeStopAutoAttackNameplateClassColorsAutoSelfCastSelfCastKeyDropDownEnemyCastBarsLabel:SetText(Translate("SHOW_ENEMY_CAST"));
361--InterfaceOptionsCombatPanelTitleSubTextAttackOnAssistAutoRangeStopAutoAttackNameplateClassColorsAutoSelfCastSelfCastKeyDropDownEnemyCastBarsOnPortraitOnNameplatesTargetOfTargetTOTDropDownFocusCastKeyDropDownLabel:SetText(Translate("FOCUS_CAST_KEY_TEXT"));
362InterfaceOptionsDisplayPanelTitle:SetText(Translate("DISPLAY_LABEL"));
363InterfaceOptionsDisplayPanelSubText:SetText(Translate("DISPLAY_SUBTEXT"));
364--InterfaceOptionsDisplayPanelTitleSubTextShowCloakShowHelmRotateMinimapScreenEdgeFlashDetailedLootInfoShowFreeBagSpaceShowClockAggroWarningDisplayLabel:SetText(Translate("AGGRO_WARNING_DISPLAY"));
365--InterfaceOptionsDisplayPanelTitleSubTextShowCloakShowHelmRotateMinimapScreenEdgeFlashDetailedLootInfoShowFreeBagSpaceShowClockAggroWarningDisplayShowAggroPercentagePlayAggroSoundsColorblindModeShowItemLevelWorldPVPObjectiveDisplayLabel:SetText(Translate("WORLD_PVP_DISPLAY"));
366InterfaceOptionsObjectivesPanelTitle:SetText(Translate("OBJECTIVES_LABEL"));
367InterfaceOptionsObjectivesPanelSubText:SetText(Translate("OBJECTIVES_SUBTEXT"));
368InterfaceOptionsSocialPanelTitle:SetText(Translate("SOCIAL_LABEL"));
369InterfaceOptionsSocialPanelSubText:SetText(Translate("SOCIAL_SUBTEXT"));
370InterfaceOptionsActionBarsPanelTitle:SetText(Translate("ACTIONBARS_LABEL"));
371InterfaceOptionsActionBarsPanelSubText:SetText(Translate("ACTIONBARS_SUBTEXT"));
372InterfaceOptionsNamesPanelTitle:SetText(Translate("NAMES_LABEL"));
373InterfaceOptionsNamesPanelSubText:SetText(Translate("NAMES_SUBTEXT"));
374--InterfaceOptionsNamesPanelTitleSubTextMyNameNPCNamesNonCombatCreatureGuildsTitlesFriendlyPlayerNamesPetsGuardiansTotemsEnemyPlayerNamesPetsGuardiansTotemsUnitNameplatesTitle:SetText(Translate("UNIT_NAMEPLATES"));
375InterfaceOptionsCombatTextPanelTitle:SetText(Translate("COMBATTEXT_LABEL"));
376InterfaceOptionsCombatTextPanelSubText:SetText(Translate("COMBATTEXT_SUBTEXT"));
377--InterfaceOptionsCombatTextPanelTitleSubTextTargetDamagePeriodicDamagePetDamageHealingTargetEffectsOtherTargetEffectsEnableFCTFCTDropDownLabel:SetText(Translate("MODE"));
378InterfaceOptionsStatusTextPanelTitle:SetText(Translate("STATUSTEXT_LABEL"));
379InterfaceOptionsStatusTextPanelSubText:SetText(Translate("STATUSTEXT_SUBTEXT"));
380InterfaceOptionsUnitFramePanelTitle:SetText(Translate("UNITFRAME_LABEL"));
381InterfaceOptionsUnitFramePanelSubText:SetText(Translate("UNITFRAME_SUBTEXT"));
382InterfaceOptionsBuffsPanelTitle:SetText(Translate("BUFFOPTIONS_LABEL"));
383InterfaceOptionsBuffsPanelSubText:SetText(Translate("BUFFOPTIONS_SUBTEXT"));
384InterfaceOptionsCameraPanelTitle:SetText(Translate("CAMERA_LABEL"));
385InterfaceOptionsCameraPanelSubText:SetText(Translate("CAMERA_SUBTEXT"));
386--InterfaceOptionsCameraPanelTitleSubTextStyleDropDownLabel:SetText(Translate("CAMERA_FOLLOWING_STYLE"));
387InterfaceOptionsMousePanelTitle:SetText(Translate("MOUSE_LABEL"));
388InterfaceOptionsMousePanelSubText:SetText(Translate("MOUSE_SUBTEXT"));
389--InterfaceOptionsMousePanelTitleSubTextInvertMouseClickToMoveMouseSensitivitySliderMouseLookSpeedSliderWoWMouseClickMoveStyleDropDownLabel:SetText(Translate("CLICK_CAMERA_STYLE"));
390InterfaceOptionsFeaturesPanelTitle:SetText(Translate("FEATURES_LABEL"));
391InterfaceOptionsFeaturesPanelSubText:SetText(Translate("FEATURES_SUBTEXT"));
392--InterfaceOptionsFeaturesPanelTitleSubTextEquipmentManagerDescription:SetText(Translate("OPTION_USE_EQUIPMENT_MANAGER_DESCRIPTION"));
393--InterfaceOptionsFeaturesPanelTitleSubTextEquipmentManagerPreviewTalentChangesDescription:SetText(Translate("OPTION_PREVIEW_TALENT_CHANGES_DESCRIPTION"));
394InterfaceOptionsHelpPanelTitle:SetText(Translate("HELP_LABEL"));
395InterfaceOptionsHelpPanelSubText:SetText(Translate("HELP_SUBTEXT"));
396InterfaceOptionsHelpPanelResetTutorials:SetText(Translate("RESET_TUTORIALS"));
397InterfaceOptionsLanguagesPanelTitle:SetText(Translate("LANGUAGES_LABEL"));
398InterfaceOptionsLanguagesPanelSubText:SetText(Translate("LANGUAGES_SUBTEXT"));
399--InterfaceOptionsLanguagesPanelTitleSubTextLocaleDropDownLabel:SetText(Translate("LOCALE_INFORMATION"));
400
401--ItemButtonTemplate.xml
402
403
404--ItemRef.xml
405
406
407--KnowledgeBaseFrame.xml
408
409--KnowledgeBaseFrameHeader:SetText(Translate("KNOWLEDGEBASE_FRAME_TITLE"));
410KnowledgeBaseMotdLabel:SetText(Translate("MOTD_COLON"));
411KnowledgeBaseServerMessageLabel:SetText(Translate("SERVER_MESSAGE_COLON"));
412KnowledgeBaseFrameTopIssuesButton:SetText(Translate("KBASE_TOP_ISSUES"));
413GMChatOpenLog:SetText(Translate("GM_CHAT_OPEN"));
414KnowledgeBaseFrameSearchButton:SetText(Translate("SEARCH"));
415KnowledgeBaseArticleListFrameTitle:SetText(Translate("KBASE_TOP_ISSUES"));
416KnowledgeBaseArticleListFrameCount:SetText(Translate("ARTICLE_COUNT"));
417KnowledgeBaseArticleListFrameNextButtonText:SetText(Translate("NEXT"));
418KnowledgeBaseArticleListFramePreviousButtonText:SetText(Translate("PREVIOUS"));
419KnowledgeBaseArticleScrollChildFrameBackButton:SetText(Translate("BACK"));
420KnowledgeBaseErrorFrameText:SetText(Translate("ERROR"));
421KnowledgeBaseFrameReportIssue:SetText(Translate("KBASE_REPORTISSUE"));
422KnowledgeBaseFrameGMTalk:SetText(Translate("KBASE_GMTALK"));
423KnowledgeBaseFrameAbandonTicket:SetText(Translate("HELP_TICKET_ABANDON"));
424KnowledgeBaseFrameEditTicket:SetText(Translate("HELP_TICKET_EDIT"));
425KnowledgeBaseFrameStuck:SetText(Translate("KBASE_CHARSTUCK"));
426KnowledgeBaseFrameLag:SetText(Translate("KBASE_LAG"));
427
428--LFDFrame.xml
429
430LFDDungeonReadyStatusLabel:SetText(Translate("READY_CHECK"));
431LFDDungeonReadyDialogYourRoleDescription:SetText(Translate("YOUR_ROLE"));
432LFDDungeonReadyDialogRoleLabel:SetText(Translate("HEALER"));
433LFDDungeonReadyDialogEnterDungeonButton:SetText(Translate("ENTER_DUNGEON"));
434LFDDungeonReadyDialogLeaveQueueButton:SetText(Translate("LEAVE_QUEUE"));
435--LFDDungeonReadyDialogBackgroundLabelFiligreeBottomArtYourRoleDescriptionRoleLabelCloseButtonEnterDungeonButtonLeaveQueueButtonRoleIconRandomInProgressFrameStatusText:SetText(Translate("THIS_DUNGEON_IN_PROGRESS"));
436--LFDDungeonReadyDialogBackgroundLabelFiligreeBottomArtYourRoleDescriptionRoleLabelCloseButtonEnterDungeonButtonLeaveQueueButtonRoleIconRandomInProgressFrameInstanceInfoFrameRewardsFrameLabel:SetText(Translate("LFD_REWARDS"));
437--LFDRoleCheckPopup:SetText(Translate("CONFIRM_YOUR_ROLE"));
438LFDRoleCheckPopupAcceptButton:SetText(Translate("ACCEPT"));
439LFDRoleCheckPopupDeclineButton:SetText(Translate("DECLINE"));
440LFDSearchStatusTitle:SetText(Translate("ASSEMBLING_GROUP"));
441LFDSearchStatusLookingFor:SetText(Translate("SEARCHING_FOR_GROUPS_NEEDS"));
442LFDQueueFrameTitleText:SetText(Translate("LOOKING_FOR_DUNGEON"));
443--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownName:SetText(Translate("CHOOSE_YOUR_DUNGEON"));
444--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameTitle:SetText(Translate("LFG_TYPE_RANDOM_DUNGEON"));
445--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameDescription:SetText(Translate("LFD_RANDOM_EXPLANATION"));
446--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameRewardsLabel:SetText(Translate("LFD_REWARDS"));
447--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameRewardsDescription:SetText(Translate("LFD_RANDOM_REWARD_EXPLANATION1"));
448--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFramePUGDescription:SetText(Translate("LFD_RANDOM_REWARD_PUG_EXPLANATION"));
449--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameMoneyLabel:SetText(Translate("MONEY_COLON"));
450--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownNameRandomScrollFrameScrollBackgroundScrollBackgroundTopLeftScrollBackgroundBottomRightChildFrameXPLabel:SetText(Translate("EXPERIENCE_COLON"));
451LFDQueueFrameFindGroupButton:SetText(Translate("FIND_A_GROUP"));
452LFDQueueFrameCancelButton:SetText(Translate("CLOSE"));
453--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownRandomSpecificFindGroupButtonCancelButtonPartyBackfillBackfillButton:SetText(Translate("YES"));
454--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownRandomSpecificFindGroupButtonCancelButtonPartyBackfillNoBackfillButton:SetText(Translate("HIDE"));
455--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownRandomScrollFrameSpecificListButton1ListButton2ListButton3ListButton4ListButton5ListButton6ListButton7ListButton8ListButton9ListButton10ListButton11ListButton12ListButton13ListButton14ListButton15ListScrollFrameFindGroupButtonCancelButtonPartyBackfillBackfillButtonNoBackfillButtonNoLFDWhileLFRDescription:SetText(Translate("NO_LFD_WHILE_LFR"));
456--LFDQueueFrameBackgroundLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSRoleButtonLeaderTypeDropDownRandomSpecificFindGroupButtonCancelButtonPartyBackfillNoLFDWhileLFRLeaveQueueButton:SetText(Translate("LIST_ME"));
457
458--LFGFrame.xml
459
460
461--LFRFrame.xml
462
463LFRQueueFrameTitleText:SetText(Translate("LOOKING_FOR_RAID"));
464--LFRQueueFrameLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSCommentExplanation:SetText(Translate("TYPE_LFR_COMMENT_HERE"));
465--LFRQueueFrameLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSCommentCommentTextButtonSpecificNoRaidsAvailable:SetText(Translate("NO_RAIDS_AVAILABLE"));
466LFRQueueFrameFindGroupButton:SetText(Translate("LIST_ME"));
467LFRQueueFrameAcceptCommentButton:SetText(Translate("ACCEPT_COMMENT"));
468--LFRQueueFrameLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSCommentCommentTextButtonSpecificListButton1ListButton2ListButton3ListButton4ListButton5ListButton6ListButton7ListButton8ListButton9ListButton10ListButton11ListButton12ListButton13ListButton14ListScrollFrameFindGroupButtonAcceptCommentButtonNoLFRWhileLFDDescription:SetText(Translate("NO_LFR_WHILE_LFD"));
469--LFRQueueFrameLayoutTitleTextRoleButtonTankRoleButtonHealerRoleButtonDPSCommentCommentTextButtonSpecificFindGroupButtonAcceptCommentButtonNoLFRWhileLFDLeaveQueueButton:SetText(Translate("LEAVE_QUEUE"));
470LFRBrowseFrameTitleText:SetText(Translate("LOOKING_FOR_RAID"));
471--LFRBrowseFrameLayoutTitleTextRaidDropDownName:SetText(Translate("BROWSING"));
472LFRBrowseFrameColumnHeader1:SetText(Translate("NAME"));
473LFRBrowseFrameColumnHeader2:SetText(Translate("LEVEL_ABBR"));
474LFRBrowseFrameColumnHeader3:SetText(Translate("CLASS"));
475LFRBrowseFrameSendMessageButton:SetText(Translate("SEND_MESSAGE"));
476LFRBrowseFrameInviteButton:SetText(Translate("INVITE"));
477LFRBrowseFrameRefreshButton:SetText(Translate("REFRESH"));
478LFRParentFrameTab1:SetText(Translate("CHOOSE_RAID"));
479LFRParentFrameTab2:SetText(Translate("BROWSE"));
480
481--LootFrame.xml
482
483--LootFramePortraitOverlay:SetText(Translate("ITEMS"));
484LootFramePrev:SetText(Translate("PREV"));
485LootFrameNext:SetText(Translate("NEXT"));
486--GroupLootFrameTemplateName:SetText(Translate("Item Name"));
487
488--MacOptionsFrame.xml
489
490--MacOptionsFrameHeader:SetText(Translate("MAC_OPTIONS"));
491MacOptionsFrameResolutionDropDownLabel:SetText(Translate("RESOLUTION"));
492MacOptionsFrameFramerateDropDownLabel:SetText(Translate("MOVIE_RECORDING_FRAMERATE"));
493MacOptionsFrameCodecDropDownLabel:SetText(Translate("MOVIE_RECORDING_COMPRESSION"));
494MacOptionsButtonCompress:SetText(Translate("MOVIE_RECORDING_COMPRESSDIALOG"));
495MacOptionsFrameText1:SetText(Translate("MOVIE_RECORDING_TIME"));
496MacOptionsFrameText2:SetText(Translate("00:00:00"));
497MacOptionsFrameText3:SetText(Translate("MOVIE_RECORDING_DATA_RATE"));
498MacOptionsFrameCancel:SetText(Translate("CANCEL"));
499MacOptionsFrameOkay:SetText(Translate("OKAY"));
500MacOptionsFrameDefaults:SetText(Translate("DEFAULTS"));
501MacOptionsButtonKeybindings:SetText(Translate("KEY_BINDINGS_MAC"));
502--MacOptionsCompressFrameHeader:SetText(Translate("MOVIE_RECORDING_COMPRESSDIALOG"));
503MacOptionsCompressFrameDelete:SetText(Translate("DELETE"));
504MacOptionsCompressFrameSkip:SetText(Translate("IGNORE_DIALOG"));
505MacOptionsCompressFrameCompress:SetText(Translate("MOVIE_RECORDING_COMPRESSBUTTON"));
506--MacOptionsCancelFrameHeader:SetText(Translate("CANCEL"));
507--MacOptionsCancelFrameQuestion:SetText(Translate("MOVIE_RECORDING_CANCEL_CONFIRMATION"));
508MacOptionsCancelFrameNo:SetText(Translate("NO"));
509MacOptionsCancelFrameYes:SetText(Translate("YES"));
510--FolderPickerHeader:SetText(Translate("Folder..."));
511FolderPickerButton01:SetText(Translate("YES"));
512--FolderPickerButton01Name:SetText(Translate("Player Name"));
513
514--MailFrame.xml
515
516--MailItemTemplateSenderSubjectExpireTimeButtonCOD:SetText(Translate("CASH_ON_DELIVERY"));
517InboxTitleText:SetText(Translate("INBOX"));
518InboxTooMuchMailText:SetText(Translate("INBOX_TOO_MUCH_MAIL"));
519InboxPrevPageButton:SetText(Translate("PREV"));
520InboxNextPageButton:SetText(Translate("NEXT"));
521SendMailTitleText:SetText(Translate("SENDMAIL"));
522SendMailNameEditBox:SetText(Translate("MAIL_TO_LABEL"));
523--SendMailCostMoneyFrame:SetText(Translate("SEND_MAIL_COST"));
524SendMailSubjectEditBox:SetText(Translate("MAIL_SUBJECT_LABEL"));
525SendMailMoneyText:SetText(Translate("SEND_MONEY"));
526SendMailCancelButton:SetText(Translate("CANCEL"));
527SendMailMailButton:SetText(Translate("SEND_LABEL"));
528MailFrameTab1:SetText(Translate("INBOX"));
529MailFrameTab2:SetText(Translate("SENDMAIL"));
530--StationeryPopupFrame:SetText(Translate("CHOOSE_STATIONERY"));
531StationeryPopupCancelButton:SetText(Translate("CANCEL"));
532StationeryPopupOkayButton:SetText(Translate("OKAY"));
533OpenMailTitleText:SetText(Translate("OPENMAIL"));
534OpenMailAttachmentText:SetText(Translate("TAKE_ATTACHMENTS"));
535OpenMailSenderLabel:SetText(Translate("FROM"));
536OpenMailSubjectLabel:SetText(Translate("MAIL_SUBJECT_LABEL"));
537OpenMailReportSpamButton:SetText(Translate("REPORT_SPAM"));
538OpenMailInvoiceItemLabel:SetText(Translate("ITEM_SOLD_COLON"));
539OpenMailInvoicePurchaser:SetText(Translate("PURCHASED_BY_COLON"));
540OpenMailInvoiceSalePrice:SetText(Translate("SALE_PRICE_COLON"));
541OpenMailInvoiceDeposit:SetText(Translate("DEPOSIT_COLON"));
542OpenMailInvoiceHouseCut:SetText(Translate("AUCTION_HOUSE_CUT_COLON"));
543OpenMailInvoiceAmountReceived:SetText(Translate("AMOUNT_RECEIVED_COLON"));
544OpenMailInvoiceNotYetSent:SetText(Translate("AUCTION_INVOICE_FUNDS_NOT_YET_SENT"));
545--OpenMailDepositMoneyFrame:SetText(Translate("+"));
546--OpenMailHouseCutMoneyFrame:SetText(Translate("-"));
547OpenMailCancelButton:SetText(Translate("CLOSE"));
548OpenMailDeleteButton:SetText(Translate("DELETE"));
549OpenMailReplyButton:SetText(Translate("REPLY_MESSAGE"));
550
551--MainMenuBarMicroButtons.xml
552
553
554--GameMenuFrame.xml
555
556--GameMenuFrameHeader:SetText(Translate("MAIN_MENU"));
557GameMenuButtonOptions:SetText(Translate("VIDEOOPTIONS_MENU"));
558--GameMenuButtonSoundOptions:SetText(Translate("SOUNDOPTIONS_MENU"));
559GameMenuButtonUIOptions:SetText(Translate("UIOPTIONS_MENU"));
560GameMenuButtonMacOptions:SetText(Translate("MAC_OPTIONS"));
561GameMenuButtonKeybindings:SetText(Translate("KEY_BINDINGS"));
562GameMenuButtonMacros:SetText(Translate("MACROS"));
563GameMenuButtonRatings:SetText(Translate("RATINGS_MENU"));
564GameMenuButtonLogout:SetText(Translate("LOGOUT"));
565GameMenuButtonQuit:SetText(Translate("EXIT_GAME"));
566GameMenuButtonContinue:SetText(Translate("RETURN_TO_GAME"));
567
568--MerchantFrame.xml
569
570--MerchantItemTemplateName:SetText(Translate("Item Name"));
571--MerchantNameText:SetText(Translate("Merchant Name"));
572--MerchantPageText:SetText(Translate("Page"));
573MerchantRepairText:SetText(Translate("REPAIR_ITEMS"));
574--MerchantBuyBackItemName:SetText(Translate("Item Name"));
575MerchantPrevPageButton:SetText(Translate("PREV"));
576MerchantNextPageButton:SetText(Translate("NEXT"));
577MerchantFrameTab1:SetText(Translate("MERCHANT"));
578MerchantFrameTab2:SetText(Translate("BUYBACK"));
579
580--Minimap.xml
581
582
583--MoneyFrame.xml
584
585
586--PVPBattlegroundFrame.xml
587
588PVPBattlegroundFrameFrameLabel:SetText(Translate("BATTLEGROUNDS"));
589PVPBattlegroundFrameNameHeader:SetText(Translate("BATTLEGROUND"));
590PVPBattlegroundFrameNameHeader2:SetText(Translate("BATTLEGROUND_INSTANCE"));
591PVPBattlegroundFrameZoneDescriptionText:SetText(Translate("BATTLEGROUND_LORETEXT_1"));
592PVPBattlegroundFrameCancelButton:SetText(Translate("CANCEL"));
593PVPBattlegroundFrameJoinButton:SetText(Translate("BATTLEFIELD_JOIN"));
594PVPBattlegroundFrameGroupJoinButton:SetText(Translate("BATTLEFIELD_GROUP_JOIN"));
595
596--PVPFrame.xml
597
598--PVPFramePortrait:SetText(Translate("PLAYER_V_PLAYER"));
599--PVPFramePortraitBackgroundBlackFilterOffSeasonText:SetText(Translate("CANHAZDUMMYTEXT"));
600--PVPFramePortraitBackgroundBlackFilterOffSeasonHonorLabel:SetText(Translate("PVP_LABEL_HONOR"));
601--PVPFramePortraitBackgroundBlackFilterOffSeasonHonorPoints:SetText(Translate("12,123,213"));
602PVPFrameArenaLabel:SetText(Translate("PVP_LABEL_ARENA"));
603--PVPFrameArenaPoints:SetText(Translate("12,123,213"));
604PVPHonorKillsLabel:SetText(Translate("KILLS_PVP"));
605PVPHonorHonorLabel:SetText(Translate("HONOR"));
606PVPHonorTodayLabel:SetText(Translate("HONOR_TODAY"));
607PVPHonorYesterdayLabel:SetText(Translate("HONOR_YESTERDAY"));
608PVPHonorLifetimeLabel:SetText(Translate("HONOR_LIFETIME"));
609--PVPHonorLifetimeHonor:SetText(Translate("-"));
610--PVPTeam3ToggleButtonToggleButton:SetText(Translate("Show Season Stats"));
611PVPTeamDetailsGamesLabel:SetText(Translate("GAMES"));
612PVPTeamDetailsGames:SetText(Translate("45"));
613PVPTeamDetailsWinLossLabel:SetText(Translate("WIN_LOSS"));
614PVPTeamDetailsRankLabel:SetText(Translate("RANK"));
615PVPTeamDetailsRatingLabel:SetText(Translate("ARENA_TEAM_RATING"));
616PVPTeamDetailsFrameColumnHeader1:SetText(Translate("NAME"));
617PVPTeamDetailsFrameColumnHeader2:SetText(Translate("CLASS"));
618PVPTeamDetailsFrameColumnHeader3:SetText(Translate("PLAYED"));
619PVPTeamDetailsFrameColumnHeader4:SetText(Translate("WIN_LOSS"));
620PVPTeamDetailsFrameColumnHeader5:SetText(Translate("RATING"));
621PVPTeamDetailsAddTeamMember:SetText(Translate("ADDMEMBER_TEAM"));
622PVPParentFrameTab1:SetText(Translate("PVP"));
623PVPParentFrameTab2:SetText(Translate("BATTLEGROUNDS"));
624
625--PaperDollFrame.xml
626
627CharacterLevelText:SetText(Translate("Level level race class"));
628CharacterTitleText:SetText(Translate("title of the player"));
629MagicResText1:SetText(Translate("X"));
630MagicResText2:SetText(Translate("X"));
631MagicResText3:SetText(Translate("X"));
632MagicResText4:SetText(Translate("X"));
633MagicResText5:SetText(Translate("X"));
634GearManagerDialogDeleteSet:SetText(Translate("DELETE"));
635GearManagerDialogEquipSet:SetText(Translate("EQUIPSET_EQUIP"));
636GearManagerDialogSaveSet:SetText(Translate("SAVE"));
637--SetContainerDeleteSetEquipSetSaveSetPopupPopup:SetText(Translate("GEARSETS_POPUP_TEXT"));
638--SetContainerDeleteSetEquipSetSaveSetPopupPopup:SetText(Translate("MACRO_POPUP_CHOOSE_ICON"));
639--SetContainerDeleteSetEquipSetSaveSetPopupCancel:SetText(Translate("CANCEL"));
640--SetContainerDeleteSetEquipSetSaveSetPopupOkay:SetText(Translate("OKAY"));
641
642--PartyFrameTemplates.xml
643
644
645--PetActionBarFrame.xml
646
647
648--PetPaperDollFrame.xml
649
650PetLevelText:SetText(Translate("Level level race class"));
651PetPaperDollCloseButton:SetText(Translate("CLOSE"));
652PetMagicResText1:SetText(Translate("X"));
653PetMagicResText2:SetText(Translate("X"));
654PetMagicResText3:SetText(Translate("X"));
655PetMagicResText4:SetText(Translate("X"));
656PetMagicResText5:SetText(Translate("X"));
657CompanionSummonButton:SetText(Translate("SUMMON"));
658PetPaperDollFrameTab1:SetText(Translate("PET"));
659PetPaperDollFrameTab2:SetText(Translate("COMPANIONS"));
660PetPaperDollFrameTab3:SetText(Translate("MOUNTS"));
661
662--PetStable.xml
663
664PetStableTitleLabel:SetText(Translate("STABLES"));
665PetStableLevelText:SetText(Translate("Bobby The Fleshripper (Level 99 Raptor)"));
666PetStableSlotText:SetText(Translate("STABLE_SLOT_TEXT"));
667PetStableCostLabel:SetText(Translate("COSTS_LABEL"));
668PetStableCurrentPet:SetText(Translate("CURRENT_PET"));
669PetStableStabledPet2:SetText(Translate("STABLED_PETS"));
670PetStablePurchaseButton:SetText(Translate("PURCHASE"));
671
672--PlayerFrame.xml
673
674
675--QuestFrame.xml
676
677QuestFrameNpcNameText:SetText(Translate("Title Text"));
678QuestFrameCancelButton:SetText(Translate("CANCEL"));
679QuestFrameCompleteQuestButton:SetText(Translate("COMPLETE_QUEST"));
680QuestFrameGoodbyeButton:SetText(Translate("CANCEL"));
681QuestFrameCompleteButton:SetText(Translate("CONTINUE"));
682QuestProgressTitleText:SetText(Translate("Quest Title"));
683QuestProgressRequiredItemsText:SetText(Translate("TURN_IN_ITEMS"));
684QuestProgressRequiredMoneyText:SetText(Translate("REQUIRED_MONEY"));
685QuestFrameDeclineButton:SetText(Translate("DECLINE"));
686QuestFrameAcceptButton:SetText(Translate("ACCEPT"));
687QuestFrameGreetingGoodbyeButton:SetText(Translate("GOODBYE"));
688GreetingText:SetText(Translate("Filler Text"));
689CurrentQuestsText:SetText(Translate("CURRENT_QUESTS"));
690AvailableQuestsText:SetText(Translate("AVAILABLE_QUESTS"));
691
692--QuestFrameTemplates.xml
693
694--QuestHonorFrameTemplateReceiveText:SetText(Translate("BONUS_HONOR"));
695--QuestArenaPointsFrameTemplateReceiveText:SetText(Translate("BONUS_ARENA_POINTS"));
696--QuestTalentFrameTemplateReceiveText:SetText(Translate("BONUS_TALENTS"));
697--QuestXPFrameTemplateReceiveText:SetText(Translate("EXPERIENCE_COLON"));
698--QuestPlayerTitleFrameTemplateTitleLabel:SetText(Translate("REWARD_TITLE"));
699
700--QuestInfo.xml
701
702QuestInfoRequiredMoneyText:SetText(Translate("REQUIRED_MONEY"));
703QuestInfoTitleHeader:SetText(Translate("Quest title"));
704QuestInfoRequiredMoneyText:SetText(Translate("REQUIRED_MONEY"));
705QuestInfoDescriptionHeader:SetText(Translate("QUEST_DESCRIPTION"));
706QuestInfoObjectivesHeader:SetText(Translate("QUEST_OBJECTIVES"));
707QuestInfoRewardsHeader:SetText(Translate("QUEST_REWARDS"));
708QuestInfoItemChooseText:SetText(Translate("REWARD_CHOICES"));
709QuestInfoReputationText:SetText(Translate("REWARD_REPUTATION_TEXT"));
710
711--QuestLogFrame.xml
712
713QuestLogFrameAbandonButton:SetText(Translate("ABANDON_QUEST_ABBREV"));
714QuestLogFrameTrackButton:SetText(Translate("TRACK_QUEST_ABBREV"));
715QuestLogFramePushQuestButton:SetText(Translate("SHARE_QUEST_ABBREV"));
716QuestLogDetailTitleText:SetText(Translate("QUEST_DETAILS"));
717QuestLogTitleText:SetText(Translate("QUEST_LOG"));
718QuestLogFrameCancelButton:SetText(Translate("CLOSE"));
719QuestLogFrameShowMapButtonText:SetText(Translate("SHOW_MAP"));
720QuestLogNoQuestsText:SetText(Translate("QUESTLOG_NO_QUESTS_TEXT"));
721
722--QuestPOI.xml
723
724
725--RaidFrame.xml
726
727--RaidInfoHeaderTemplateMiddle:SetText(Translate("TEST"));
728--RaidInfoInstanceTemplateExtended:SetText(Translate("EXTENDED"));
729RaidFrameRaidDescription:SetText(Translate("RAID_DESCRIPTION"));
730RaidFrameRaidBrowserDescription:SetText(Translate("RAID_BROWSER_DESCRIPTION"));
731RaidFrameNotInRaidRaidBrowserButton:SetText(Translate("OPEN_RAID_BROWSER"));
732RaidFrameConvertToRaidButton:SetText(Translate("CONVERT_TO_RAID"));
733RaidFrameRaidInfoButton:SetText(Translate("RAID_INFO"));
734RaidInfoFrameHeaderText:SetText(Translate("RAID_INFORMATION"));
735RaidInfoExtendButton:SetText(Translate("EXTEND_RAID_LOCK"));
736RaidInfoCancelButton:SetText(Translate("CLOSE"));
737
738--ReadyCheck.xml
739
740ReadyCheckFrameYesButton:SetText(Translate("YES"));
741ReadyCheckFrameNoButton:SetText(Translate("NO"));
742
743--SecureHandlerTemplates.xml
744
745
746--SparkleFrame.xml
747
748
749--SpellBookFrame.xml
750
751SpellBookTitleText:SetText(Translate("SPELLBOOK"));
752SpellBookPrevPageButton:SetText(Translate("PREV"));
753SpellBookNextPageButton:SetText(Translate("NEXT"));
754
755--StaticPopup.xml
756
757
758--TalentFrameTemplates.xml
759
760
761--TargetFrame.xml
762
763--TargetFrameTemplateFlashBackgroundNameBackgroundPortraitTextureFrameDeadText:SetText(Translate("DEAD"));
764--TargetFrameTemplateFlashBackgroundNameBackgroundPortraitTextureFrameDropDownHealthBarManaBarBuffsDebuffsNumericalThreatValue:SetText(Translate("100%"));
765--TargetofTargetFrameTemplateBackgroundPortraitTextureFrameDeadText:SetText(Translate("DEAD"));
766
767--TaxiFrame.xml
768
769
770--TotemFrame.xml
771
772
773--TradeFrame.xml
774
775--TradeItemTemplateName:SetText(Translate("Item Name"));
776--TradeFrameRecipientNameText:SetText(Translate("Player Name"));
777--TradeFramePlayerNameText:SetText(Translate("Recipient Name"));
778TradeFramePlayerEnchantText:SetText(Translate("TRADEFRAME_ENCHANT_SLOT_LABEL"));
779TradeFrameRecipientEnchantText:SetText(Translate("TRADEFRAME_ENCHANT_SLOT_LABEL"));
780TradeFrameTradeButton:SetText(Translate("TRADE"));
781TradeFrameTradeButton:SetText(Translate("TRADE"));
782TradeFrameCancelButton:SetText(Translate("CANCEL"));
783TradeFrameCancelButton:SetText(Translate("CANCEL"));
784
785--TutorialFrame.xml
786
787TutorialFrameOkayButton:SetText(Translate("CLOSE"));
788--TutorialFrameOkayButtonPrevButtonPrevButton:SetText(Translate("PREV"));
789--TutorialFrameOkayButtonPrevButtonNextButtonNextButton:SetText(Translate("NEXT"));
790
791--UIDropDownMenuTemplates.xml
792
793
794--UIPanelTemplates.xml
795
796
797--UIParent.xml
798
799
800--VehicleMenuBar.xml
801
802
803--VideoOptionsFrame.xml
804
805VideoOptionsFrameApply:SetText(Translate("APPLY"));
806VideoOptionsFrameCancel:SetText(Translate("CANCEL"));
807VideoOptionsFrameOkay:SetText(Translate("OKAY"));
808VideoOptionsFrameDefaults:SetText(Translate("DEFAULTS"));
809
810--VideoOptionsPanels.xml
811
812VideoOptionsResolutionPanelTitle:SetText(Translate("RESOLUTION_LABEL"));
813VideoOptionsResolutionPanelSubText:SetText(Translate("RESOLUTION_SUBTEXT"));
814--VideoOptionsResolutionPanelTitleSubTextResolutionDropDownLabel:SetText(Translate("RESOLUTION"));
815--VideoOptionsResolutionPanelTitleSubTextResolutionDropDownRefreshDropDownLabel:SetText(Translate("REFRESH_RATE"));
816--VideoOptionsResolutionPanelTitleSubTextResolutionDropDownRefreshDropDownMultiSampleDropDownLabel:SetText(Translate("MULTISAMPLE"));
817VideoOptionsEffectsPanelTitle:SetText(Translate("EFFECTS_LABEL"));
818VideoOptionsEffectsPanelSubText:SetText(Translate("EFFECTS_SUBTEXT"));
819--VideoOptionsEffectsPanelTitleSubTextQualityLabel:SetText(Translate("LOW"));
820--VideoOptionsEffectsPanelTitleSubTextQualitySubText:SetText(Translate("This is a description of what happens when you set the quality slider to its Low setting."));
821--VideoOptionsEffectsPanelTitleSubTextQualityQualitySliderCustom:SetText(Translate("CUSTOM"));
822VideoOptionsStereoPanelTitle:SetText(Translate("STEREO_VIDEO_LABEL"));
823VideoOptionsStereoPanelSubText:SetText(Translate("STEREO_VIDEO_SUBTEXT"));
824
825--VoiceChat.xml
826
827
828--WatchFrame.xml
829
830--WatchFrameItemButtonTemplateHotKey:SetText(Translate("RANGE_INDICATOR"));
831WatchFrameTitle:SetText(Translate("OBJECTIVES_TRACKER_LABEL"));
832
833--WorldMapFrame.xml
834
835WorldMapFrameTitle:SetText(Translate("WORLD_MAP"));
836--WorldMapZoneMinimapDropDown:SetText(Translate("BATTLEFIELD_MINIMAP"));
837--WorldMapContinentDropDown:SetText(Translate("CONTINENT"));
838--WorldMapZoneDropDown:SetText(Translate("ZONE"));
839--WorldMapZoomOutButton:SetText(Translate("ZOOM_OUT"));
840--WorldMapLevelDropDown:SetText(Translate("FLOOR"));
841--WorldMapMagnifyingGlassButton:SetText(Translate("ZOOM_OUT_BUTTON_TEXT"));
842--MapFramerateLabel:SetText(Translate("FRAMERATE_LABEL"));
843--WorldMapFrameAreaLabel:SetText(Translate("BLAH!"));
844
845--WorldMapFrameTemplates.xml
846
847
848--WorldStateFrame.xml
849
850WorldStateScoreFrameLabel:SetText(Translate("BATTLEFIELDS"));
851WorldStateScoreFrameTimerLabel:SetText(Translate("TIME_TO_PORT"));
852WorldStateScoreFrameTab1:SetText(Translate("ALL"));
853WorldStateScoreFrameTab2:SetText(Translate("FACTION_ALLIANCE"));
854WorldStateScoreFrameTab3:SetText(Translate("FACTION_HORDE"));
855WorldStateScoreFrameLeaveButton:SetText(Translate("LEAVE_BATTLEGROUND"));
856
857
858end
859
860---------------------------------------------------------------------
861 -------konec hlavní funkce prekladu rozhraní
862---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.