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
|
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
<!DOCTYPE glade-interface SYSTEM "http://gazpacho.sicem.biz/gazpacho-0.1.dtd">
<glade-interface>
<widget class="GtkWindow" id="lang">
<child>
<widget class="GtkVBox" id="vbox1">
<property name="visible">True</property>
<child>
<widget class="GtkFrame" id="frame1">
<property name="border_width">6</property>
<property name="label" context="yes" translatable="yes">English</property>
<property name="visible">True</property>
<child>
<widget class="GtkEventBox" id="english">
<property name="visible">True</property>
<child>
<widget class="GtkLabel" id="label1">
<property name="label" context="yes" translatable="yes">label</property>
<property name="visible">True</property>
</widget>
</child>
</widget>
</child>
</widget>
</child>
<child>
<widget class="GtkFrame" id="frame2">
<property name="border_width">6</property>
<property name="label" context="yes" translatable="yes">Swedish</property>
<property name="visible">True</property>
<child>
<widget class="GtkEventBox" id="swedish">
<property name="visible">True</property>
<child>
<widget class="GtkLabel" id="label2">
<property name="label" context="yes" translatable="yes">label</property>
<property name="visible">True</property>
</widget>
</child>
</widget>
</child>
</widget>
<packing>
<property name="position">1</property>
</packing>
</child>
<child>
<widget class="GtkHButtonBox" id="hbuttonbox1">
<property name="border_width">6</property>
<property name="layout_style">end</property>
<property name="spacing">6</property>
<property name="visible">True</property>
<child>
<widget class="GtkButton" id="ok_button">
<property name="label">gtk-ok</property>
<property name="use_stock">True</property>
<property name="visible">True</property>
</widget>
</child>
</widget>
<packing>
<property name="position">2</property>
</packing>
</child>
</widget>
</child>
</widget>
</glade-interface>
|