blob: 9b07d9ce15348620edc6a92053ca59ff9edae37d (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?xml version="1.0"?>
<interface domain="shotwell">
<menu id="MenuBar">
<submenu>
<attribute name="label" translatable="yes">_File</attribute>
<section>
<item>
<attribute name="label" translatable="yes">_Stop Import</attribute>
<attribute name="action">win.Stop</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">_Import from Folder…</attribute>
<attribute name="accel"><Primary>i</attribute>
<attribute name="action">win.CommonFileImport</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Import From _Application…</attribute>
<attribute name="action">win.ExternalLibraryImport</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">Empty T_rash</attribute>
<attribute name="action">win.CommonEmptyTrash</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">_Quit</attribute>
<attribute name="accel"><Primary>q</attribute>
<attribute name="action">win.CommonQuit</attribute>
</item>
</section>
</submenu>
<submenu>
<attribute name="label" translatable="yes">_View</attribute>
<section>
<item>
<attribute name="label" translatable="yes">_Basic Information</attribute>
<attribute name="accel"><Primary><Shift>i</attribute>
<attribute name="action">win.CommonDisplayBasicProperties</attribute>
</item>
</section>
<section>
<submenu>
<attribute name="label" translatable="yes">Sort _Events</attribute>
<section>
<item>
<attribute name="label" translatable="yes">_Ascending</attribute>
<attribute name="action">win.CommonSortEvents</attribute>
<attribute name="target">ascending</attribute>
</item>
<item>
<attribute name="label" translatable="yes">D_escending</attribute>
<attribute name="action">win.CommonSortEvents</attribute>
<attribute name="target">descending</attribute>
</item>
</section>
</submenu>
</section>
</submenu>
<submenu>
<attribute name="label" translatable="yes">_Help</attribute>
<section>
<item>
<attribute name="label" translatable="yes">_Help</attribute>
<attribute name="accel">F1</attribute>
<attribute name="action">win.CommonHelpContents</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Frequently Asked Questions</attribute>
<attribute name="action">win.CommonHelpFAQ</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Report a Problem…</attribute>
<attribute name="action">win.CommonHelpReportProblem</attribute>
</item>
</section>
<section>
<item>
<attribute name="label" translatable="yes">_About</attribute>
<attribute name="action">win.CommonAbout</attribute>
</item>
</section>
</submenu>
</menu>
</interface>
|