blob: 7b519d2ef76e1369a43edd2f971338ce2964af07 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="GtkAppAboutDialog" parent="GtkWindow">
<property name="title" translatable="yes">About</property>
<property name="default-width">350</property>
<property name="default-height">430</property>
<property name="modal">true</property>
<property name="resizable">false</property>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkLabel">
<property name="margin-top">368</property>
<property name="margin-bottom">10</property>
<property name="label" translatable="yes"><span fgcolor='white'>Copyright (C) 2008-2025 Cyrille Bagard</span></property>
<property name="use-markup">True</property>
</object>
</child>
</object>
</child>
</template>
</interface>
|