blob: 92d01623bd1a399fffe61a1ade937804dead3fb1 (
plain)
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
49
50
51
52
53
54
55
|
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="gtk40">
<menu id="app-menu">
<section>
<item>
<!-- used for the application menu on MacOS. %s is replaced with the application name. -->
<attribute name="label" translatable="yes">About %s</attribute>
<attribute name="action">app.about</attribute>
<attribute name="x-gtk-private-special">replace-appname</attribute>
</item>
</section>
<section>
<item>
<!-- used for the application menu on MacOS -->
<attribute name="label" translatable="yes">Preferences</attribute>
<attribute name="action">app.preferences</attribute>
</item>
</section>
<section>
<item>
<!-- used for the application menu on MacOS -->
<attribute name="label" translatable="yes">Services</attribute>
<attribute name="x-gtk-private-special">services-submenu</attribute>
</item>
</section>
<section>
<item>
<!-- used for the application menu on MacOS. %s is replaced with the application name. -->
<attribute name="label" translatable="yes">Hide %s</attribute>
<attribute name="x-gtk-private-special">hide-this</attribute>
<attribute name="action">gtkinternal.hide</attribute>
</item>
<item>
<!-- used for the application menu on MacOS -->
<attribute name="label" translatable="yes">Hide Others</attribute>
<attribute name="x-gtk-private-special">hide-others</attribute>
<attribute name="action">gtkinternal.hide-others</attribute>
</item>
<item>
<!-- used for the application menu on MacOS -->
<attribute name="label" translatable="yes">Show All</attribute>
<attribute name="x-gtk-private-special">show-all</attribute>
<attribute name="action">gtkinternal.show-all</attribute>
</item>
</section>
<section>
<item>
<!-- used for the application menu on MacOS. %s is replaced with the application name. -->
<attribute name="label" translatable="yes">Quit %s</attribute>
<attribute name="action">app.quit</attribute>
<attribute name="x-gtk-private-special">replace-appname</attribute>
</item>
</section>
</menu>
</interface>
|