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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<?xml version="1.0"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<menu id="primary-menu">
<section>
<item>
<attribute name="label" translatable="yes">New Game</attribute>
<attribute name="action">win.GameNew</attribute>
<attribute name="accel"><Primary>n</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Pause/Continue Game</attribute>
<attribute name="action">win.GamePause</attribute>
<attribute name="accel"><Primary>p</attribute>
</item>
<item>
<attribute name="label" translatable="yes">End Game</attribute>
<attribute name="action">win.GameEnd</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">Skip Level</attribute>
<attribute name="action">win.LevelSkip</attribute>
<attribute name="accel"><Primary>s</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Reset Level</attribute>
<attribute name="action">win.LevelReset</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Undo Move</attribute>
<attribute name="action">win.GameUndo</attribute>
<attribute name="accel"><Primary>z</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">About Atomix</attribute>
<attribute name="action">app.GameAbout</attribute>
</item>
</section>
</menu>
</interface>
|