1<?xml version="1.0" encoding="UTF-8"?>
2<!-- This is a template.  i18n translation is not performed in-place;
3     i18n translated xml files are generated from this template by
4     transex3/layout/tralay.  !-->
5
6<modaldialog xmlns="http://openoffice.org/2007/layout"
7             xmlns:cnt="http://openoffice.org/2007/layout/container"
8             help-id="HID_DLG_WORDCOUNT"
9             id="DLG_WORDCOUNT"
10             sizeable="true" moveable="true" optimumsize="true" closeable="true"
11             has_border="true" sv-look="true" _title="Word Count">
12    <vbox border="12" spacing="6">
13        <fixedline id="FL_CURRENT" _text="Current selection"/>
14	<hbox>
15	    <vbox cnt:padding="12" spacing="6">
16		<hbox>
17		    <fixedtext id="FT_CURRENTWORD" _label="Words:"/>
18		    <flow cnt:padding="60"/>
19		    <fixedtext id="FI_CURRENTWORD" right="true" _label="0"/>
20		</hbox>
21		<hbox>
22		    <fixedtext id="FT_CURRENTCHARACTER" _label="Characters:"/>
23		    <flow cnt:padding="60"/>
24		    <fixedtext id="FI_CURRENTCHARACTER" right="true" _label="00"/>
25		</hbox>
26	    </vbox>
27	</hbox>
28	<!-- if we could do cnt:cnt:padding="-12" here, we would not have to close
29	     and reopen the hbox/vbox thing !-->
30        <fixedline id="FL_DOC" _text="Whole document"/>
31	<hbox>
32	    <vbox cnt:padding="12" spacing="6">
33		<hbox>
34		    <fixedtext id="FT_DOCWORD" _label="Words:"/>
35		    <fixedtext id="FI_DOCWORD" right="true" _label="000"/>
36		</hbox>
37		<hbox>
38		    <fixedtext id="FT_DOCCHARACTER" _label="Characters:"/>
39		    <fixedtext id="FI_DOCCHARACTER" right="true" _label="0000"/>
40		</hbox>
41	    </vbox>
42	</hbox>
43        <fixedline cnt:padding="1" id="FL_BOTTOM"/>
44	<dialogbuttonhbox spacing="12">
45            <flow/>
46            <okbutton defbutton="true" id="PB_OK"/>
47            <helpbutton id="PB_HELP"/>
48        </dialogbuttonhbox>
49    </vbox>
50</modaldialog>
51