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 46 47 48
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<menu id="menu">
<section>
<item>
<attribute name="custom">theme</attribute>
</item>
</section>
<section>
<item>
<!-- Translators: Menu item -->
<attribute name="label" translatable="yes">Sync with Nextcloud Notes</attribute>
<attribute name="action">win.start-nextcloud-signin</attribute>
<attribute name="hidden-when">action-disabled</attribute>
</item>
<item>
<!-- Translators: Menu item -->
<attribute name="label" translatable="yes">Refresh</attribute>
<attribute name="action">win.refresh</attribute>
<attribute name="hidden-when">action-disabled</attribute>
</item>
</section>
<section>
<item>
<!-- Translators: Menu item -->
<attribute name="label" translatable="yes">Preferences</attribute>
<attribute name="action">app.settings</attribute>
</item>
<item>
<!-- Translators: Menu item -->
<attribute name="label" translatable="yes">Keyboard Shortcuts</attribute>
<attribute name="action">app.shortcuts</attribute>
</item>
<item>
<!-- Translators: Menu item, Iotas is the application name and shouldn't be translated -->
<attribute name="label" translatable="yes">About Iotas</attribute>
<attribute name="action">app.about</attribute>
</item>
</section>
</menu>
<template class="IndexMenuButton" parent="GtkMenuButton">
<!-- Translators: Button -->
<property name="tooltip-text" translatable="yes">Main Menu</property>
<property name="icon-name">open-menu-symbolic</property>
<property name="menu-model">menu</property>
</template>
</interface>
|