1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3SPDX-FileCopyrightText: 2020 Romain Vigier <contact AT romainvigier.fr>
4SPDX-License-Identifier: GPL-3.0-or-later
5-->
6<interface>
7  <requires lib="gtk+" version="3.24"/>
8  <template class="MenuPopover" parent="GtkPopoverMenu">
9    <child>
10      <object class="GtkBox">
11        <property name="visible">True</property>
12        <property name="orientation">vertical</property>
13        <property name="margin">6</property>
14        <child>
15          <object class="GtkModelButton">
16            <property name="visible">True</property>
17            <property name="action-name">app.new-window</property>
18            <property name="text" translatable="yes">_New window</property>
19          </object>
20        </child>
21        <child>
22          <object class="GtkSeparator">
23            <property name="visible">True</property>
24            <property name="orientation">horizontal</property>
25            <property name="margin-top">6</property>
26            <property name="margin-bottom">6</property>
27          </object>
28        </child>
29        <child>
30          <object class="GtkModelButton">
31            <property name="visible">True</property>
32            <property name="action-name">win.lightweight-mode</property>
33            <property name="text" translatable="yes">_Lightweight mode</property>
34            <property name="tooltip-text" translatable="yes">By default, the removal process might alter a bit the data of your files, in order to remove as much metadata as possible. For example, texts in PDF might not be selectable anymore, compressed images might get compressed again… If you're willing to trade some metadata's presence in exchange of the guarantee that the data of your files won't be modified, the lightweight mode precisely does that.</property>
35          </object>
36        </child>
37        <child>
38          <object class="GtkSeparator">
39            <property name="visible">True</property>
40            <property name="orientation">horizontal</property>
41            <property name="margin-top">6</property>
42            <property name="margin-bottom">6</property>
43          </object>
44        </child>
45        <child>
46          <object class="GtkModelButton">
47            <property name="visible">True</property>
48            <property name="text" translatable="yes">Note about _metadata and privacy</property>
49            <property name="action-name">win.about-metadata-privacy</property>
50          </object>
51        </child>
52        <child>
53          <object class="GtkModelButton">
54            <property name="visible">True</property>
55            <property name="text" translatable="yes">Note about _removing metadata</property>
56            <property name="action-name">win.about-removing-metadata</property>
57          </object>
58        </child>
59        <child>
60          <object class="GtkSeparator">
61            <property name="visible">True</property>
62            <property name="orientation">horizontal</property>
63            <property name="margin-top">6</property>
64            <property name="margin-bottom">6</property>
65          </object>
66        </child>
67        <child>
68          <object class="GtkModelButton">
69            <property name="visible">True</property>
70            <property name="action-name">win.shortcuts</property>
71            <property name="text" translatable="yes">_Keyboard shortcuts</property>
72          </object>
73        </child>
74        <child>
75          <object class="GtkModelButton">
76            <property name="visible">True</property>
77            <property name="action-name">win.about</property>
78            <property name="text" translatable="yes">_About Metadata Cleaner</property>
79          </object>
80        </child>
81      </object>
82    </child>
83  </template>
84</interface>
85