mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Avoid cases of filenames Update years in terms and other legal(ish) documents Don't update years in license headers, since change is not meaningful Will add linter rule in seperate commit Happy recompiling everyone! Original Patch By: Nescio Comment By: Gallaecio Differential Revision: D2620 This was SVN commit r27786.
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
|
||
<!--
|
||
==========================================
|
||
- CREDITS PAGE -
|
||
==========================================
|
||
-->
|
||
|
||
<objects>
|
||
|
||
<script directory="gui/common/"/>
|
||
<script directory="gui/credits/"/>
|
||
|
||
<!-- Add a translucent black background to fade out the menu page -->
|
||
<object type="image" sprite="ModernFade"/>
|
||
|
||
<object type="image" style="ModernDialog" size="50%-473 24 50%+473 100%-24">
|
||
<object style="ModernLabelText" name="dialogTitle" type="text" size="50%-128 -18 50%+128 14">
|
||
<translatableAttribute id="caption">0 A.D. Credits</translatableAttribute>
|
||
</object>
|
||
|
||
<object type="image" sprite="ModernFade" size="220 30 100%-20 100%-54">
|
||
<object name="creditsText" type="text" style="ModernTextPanel" text_align="center" scroll_top="true"/>
|
||
</object>
|
||
|
||
<object size="20 30 210 100%-54">
|
||
<include file="gui/common/tab_buttons.xml"/>
|
||
</object>
|
||
|
||
<!-- Close dialog -->
|
||
<object type="button" style="ModernButtonRed" size="100%-200 100%-45 100%-17 100%-17" hotkey="cancel">
|
||
<translatableAttribute id="caption">Close</translatableAttribute>
|
||
<action on="Press">
|
||
Engine.PopGuiPage();
|
||
</action>
|
||
</object>
|
||
</object>
|
||
</objects>
|