patch-ruRU-5 обновленный логин скрин и создание персонажа

This commit is contained in:
2026-03-15 16:26:18 +04:00
parent 2ae4f23a03
commit 0251953122
385 changed files with 24869 additions and 0 deletions
@@ -0,0 +1,173 @@
<!-- Autora: Noa -->
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="OptionsSelect.lua"/>
<Frame name="OptionsSelectFrame" toplevel="true" setAllPoints="true" hidden="true" enableMouse="true" enableKeyboard="true" frameStrata="HIGH">
<Layers>
<Layer level="BACKGROUND">
<Texture setAllPoints="true">
<Color a="0.75" r="0" g="0" b="0"/>
</Texture>
</Layer>
</Layers>
<Frames>
<Frame name="$parentBackground">
<Size x="360" y="280"/>
<Anchors>
<Anchor point="CENTER">
<Offset x="0" y="-20"/>
</Anchor>
</Anchors>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\tooltips\BorderAlert" tile="true">
<BackgroundInsets>
<AbsInset left="3" right="3" top="3" bottom="3"/>
</BackgroundInsets>
<TileSize>
<AbsValue val="16"/>
</TileSize>
<EdgeSize>
<AbsValue val="16"/>
</EdgeSize>
</Backdrop>
<Layers>
<Layer level="ARTWORK">
<Texture name="$parentHeader" file="Interface\DialogFrame\UI-DialogBox-Header" hidden="true">
<Size>
<AbsDimension x="300" y="68"/>
</Size>
<Anchors>
<Anchor point="TOP">
<Offset>
<AbsDimension x="0" y="12"/>
</Offset>
</Anchor>
</Anchors>
</Texture>
<FontString name="$parentHeaderText" inherits="GlueFontNormal" text="OPTIONS">
<Anchors>
<Anchor point="TOP" relativeTo="$parentHeader">
<Offset>
<AbsDimension x="0" y="-20"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Frame name="$parentContainer">
<Anchors>
<Anchor point="TOPLEFT">
<Offset x="12" y="-36"/>
</Anchor>
<Anchor point="BOTTOMRIGHT">
<Offset x="-16" y="50"/>
</Anchor>
</Anchors>
<Frames>
<Button name="$parentVideoOptionsButton" inherits="GlueButtonTemplateBlue" text="VIDEOOPTIONS_MENU">
<Size x="220" y="45"/>
<Anchors>
<Anchor point="TOP">
<Offset x="0" y="-10"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuOption");
VideoOptionsFrame.lastFrame = OptionsSelectFrame;
VideoOptionsFrame:Show();
</OnClick>
</Scripts>
</Button>
<Button name="$parentAudioOptionsButton" inherits="GlueButtonTemplateBlue" text="SOUNDOPTIONS_MENU">
<Size x="220" y="45"/>
<Anchors>
<Anchor point="TOP" relativeTo="$parentVideoOptionsButton" relativePoint="BOTTOM">
<Offset x="0" y="10"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuOption");
AudioOptionsFrame.lastFrame = OptionsSelectFrame;
AudioOptionsFrame:Show();
</OnClick>
</Scripts>
</Button>
<Button name="$parentTrailersButton" inherits="GlueButtonTemplateBlue" text="CINEMATICS_MENU">
<Size x="220" y="45"/>
<Anchors>
<Anchor point="TOP" relativeTo="$parentAudioOptionsButton" relativePoint="BOTTOM">
<Offset x="0" y="10"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuOption");
MovieList_Show();
</OnClick>
</Scripts>
</Button>
<Button name="$parentRealmResetOptionsButton" inherits="GlueButtonTemplateBlue" text="RESET_REALM_EXIT">
<Size x="220" y="45"/>
<Anchors>
<Anchor point="TOP" relativeTo="$parentTrailersButton" relativePoint="BOTTOM">
<Offset x="0" y="10"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuOption");
AccountLogin_RealmReset();
</OnClick>
<OnShow>
OptionsSelectFrame_OnShow();
</OnShow>
</Scripts>
</Button>
</Frames>
</Frame>
<Button name="OptionsSelectResetSettingsButton" inherits="GlueButtonSmallTemplateBlue" text="RESET_SETTINGS">
<Size x="220" y="38"/>
<Anchors>
<Anchor point="BOTTOMLEFT">
<Offset x="8" y="6"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
OptionsSelectResetSettingsButton_OnClick_Reset(self);
</OnClick>
</Scripts>
</Button>
<Button name="$parentOkayButton" inherits="GlueButtonSmallTemplateBlue" text="CLOSE">
<Size x="125" y="38"/>
<Anchors>
<Anchor point="BOTTOMRIGHT">
<Offset x="-8" y="6"/>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
OptionsSelectFrame_Hide();
</OnClick>
</Scripts>
</Button>
</Frames>
</Frame>
</Frames>
<Scripts>
<OnKeyDown>
if ( key == "ESCAPE" ) then
OptionsSelectFrame_Hide();
elseif ( key == "PRINTSCREEN" ) then
Screenshot();
end
</OnKeyDown>
</Scripts>
</Frame>
</Ui>