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
|
<interface>
<menu id="menubar">
<submenu>
<attribute name="label" translatable="yes">_File</attribute>
<section>
<item>
<attribute name="label"
translatable="yes">_Close</attribute>
<attribute name="action">win.close</attribute>
<attribute name="accel"><Primary>w</attribute>
</item>
</section>
</submenu>
<submenu>
<attribute name="label" translatable="yes">_Edit</attribute>
<section>
<item>
<attribute name="label"
translatable="yes">_Copy</attribute>
<attribute name="action">win.copy</attribute>
<attribute name="accel"><Primary>c</attribute>
</item>
</section>
<section>
<item>
<attribute name="label"
translatable="yes">_Select Text</attribute>
<attribute name="action">win.select</attribute>
<attribute name="accel"><Primary>a</attribute>
</item>
</section>
</submenu>
<submenu>
<attribute name="label" translatable="yes">_View</attribute>
<section>
<item>
<attribute name="label"
translatable="yes">_Escape Special Characters</attribute>
<attribute name="action">win.escape</attribute>
</item>
</section>
</submenu>
</menu>
</interface>
|