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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2020, 2021 Romain Vigier <contact AT romainvigier.fr>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<interface>
<template class="EmptyView" parent="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="AdwStatusPage">
<property name="vexpand">True</property>
<property name="icon-name">metadatacleaner-illustration</property>
<property name="title" translatable="yes">Clean Your Traces</property>
</object>
</child>
<child>
<object class="AdwClamp">
<property name="tightening-threshold">600</property>
<property name="child">
<object class="GtkButton">
<property name="action-name">app.help</property>
<property name="action-target">"/index"</property>
<style>
<class name="help"/>
<class name="pill"/>
</style>
<property name="child">
<object class="GtkBox">
<property name="spacing">12</property>
<child>
<object class="GtkImage">
<property name="valign">center</property>
<property name="icon-name">metadatacleaner-help-symbolic</property>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="hexpand">True</property>
<property name="label" translatable="yes">Learn more about metadata and the cleaning process limitations</property>
<property name="wrap">True</property>
<property name="xalign">0</property>
</object>
</child>
</object>
</property>
</object>
</property>
</object>
</child>
</template>
</interface>
|