mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 06:08:07 +00:00
* Stringtables now support IDs and Strings at the same time. DLCs have a new branch for RMLUI now.
* Removed hardcoded StringTableNameMap for use Strings instead of IDs for RMLUI.
* Strings in RMLUI now uses [] since {} is used for data and it could affect future menus.
* Removed GetStringTable. app.GetString now support WStrings.
26 lines
707 B
Plaintext
26 lines
707 B
Plaintext
<rml>
|
|
<head>
|
|
<title>Settings</title>
|
|
<link type="text/rcss" href="SettingsMenu.rcss"/>
|
|
</head>
|
|
<body>
|
|
<div id="settings_menu">
|
|
<div id="buttons">
|
|
<button id="options">[IDS_OPTIONS]</button>
|
|
<button id="audio">[IDS_AUDIO]</button>
|
|
<button id="controls">[IDS_CONTROLS]</button>
|
|
<button id="graphics">[IDS_GRAPHICS]</button>
|
|
<button id="ui">[IDS_USER_INTERFACE]</button>
|
|
<button id="reset_defaults">[IDS_RESET_TO_DEFAULTS]</button>
|
|
</div>
|
|
<div id="confirm_dialog">
|
|
<p id="confirm_text">[IDS_RESET_TO_DEFAULTS]</p>
|
|
<div id="confirm_buttons">
|
|
<button id="confirm_no">[IDS_NO]</button>
|
|
<button id="confirm_yes">[IDS_YES]</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</rml>
|