430a8df4f6
Per https://developer.gnome.org/hig/patterns/controls/menus.html#standard-primary-menu-items, preferences should be at the top of the last group in the menu.
26 lines
933 B
XML
26 lines
933 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<menu id="menu_app">
|
|
<section>
|
|
<item>
|
|
<attribute name="action">app.accounts</attribute>
|
|
<attribute name="label" translatable="yes">Accounts</attribute>
|
|
</item>
|
|
</section>
|
|
<section>
|
|
<item>
|
|
<attribute name="action">app.settings</attribute>
|
|
<attribute name="label" translatable="yes">Preferences</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="action">app.open_shortcuts</attribute>
|
|
<attribute name="label" translatable="yes">Keyboard Shortcuts</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="action">app.about</attribute>
|
|
<attribute name="label" translatable="yes">About Dino</attribute>
|
|
</item>
|
|
</section>
|
|
</menu>
|
|
</interface>
|