blob: 6f7381c87828de15a5c3331c4d4f40a9a435a11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkMessageDialog" id="messagedialog1">
<property name="can_focus">False</property>
<property name="border_width">5</property>
<property name="type">popup</property>
<property name="type_hint">dialog</property>
<property name="skip_taskbar_hint">True</property>
<property name="buttons">ok</property>
<property name="text" translatable="yes">Text</property>
<property name="secondary_text" translatable="yes">Secondary text #5</property>
</object>
</interface>
|