diff --git a/Localization/INT/ServerExt.int b/Localization/INT/ServerExt.int index 0a4ffab..ef48333 100644 Binary files a/Localization/INT/ServerExt.int and b/Localization/INT/ServerExt.int differ diff --git a/ServerExt/Classes/UI_PrestigeNote.uc b/ServerExt/Classes/UI_PrestigeNote.uc index 01a2c19..9d1af51 100644 --- a/ServerExt/Classes/UI_PrestigeNote.uc +++ b/ServerExt/Classes/UI_PrestigeNote.uc @@ -1,19 +1,27 @@ Class UI_PrestigeNote extends UI_ResetWarning; +var localized string WindowTitleText; +var localized string PrestigeButtonToolTip; +var localized string InfoLabelTextPart1; +var localized string InfoLabelTextPart2; + +function InitMenu() +{ + Super.InitMenu(); + YesButton.ToolTip=PrestigeButtonToolTip; +} + function SetupTo( Ext_PerkBase P ) { PerkToReset = P.Class; - // TODO: localize - WindowTitle = "NOTICE: Prestige "$P.PerkName; - InfoLabel.SetText("NOTICE: If you prestige your perk, you can not undo this operation!|All your gained XP and level will be reset to #{FF0000}0#{DEF}.|But this will also increase the amount of points by #{F7FE2E}+"$P.PrestigeSPIncrease$"#{DEF} you earn for every level up in the future.||Are you sure you want to do this?"); + WindowTitle = WindowTitleText$" "$P.PerkName; + InfoLabel.SetText(InfoLabelTextPart1$P.PrestigeSPIncrease$InfoLabelTextPart2); } defaultproperties { bIsPrestige=true - // TODO: localize Begin Object Name=YesButten - Tooltip="Prestige the perk (you can not undo this action!)" End Object } \ No newline at end of file