1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-License-Identifier: CC-BY-SA-4.0
SPDX-FileCopyrightText: Michael Terry
-->
<interface>
<menu id="app-menu">
<section>
<item>
<attribute name="label" translatable="yes">_New Game</attribute>
<attribute name="action">app.new-game</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Reveal a Random Digit</attribute>
<attribute name="action">app.hint</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">_Keyboard Shortcuts</attribute>
<attribute name="action">win.show-help-overlay</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_About Multiplication Puzzle</attribute>
<attribute name="action">app.about</attribute>
</item>
</section>
</menu>
</interface>
|