1<?xml version="1.0" encoding="UTF-8"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the 9 * "License"); you may not use this file except in compliance 10 * with the License. You may obtain a copy of the License at 11 * 12 * http://www.apache.org/licenses/LICENSE-2.0 13 * 14 * Unless required by applicable law or agreed to in writing, 15 * software distributed under the License is distributed on an 16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 * KIND, either express or implied. See the License for the 18 * specific language governing permissions and limitations 19 * under the License. 20 * 21 ***********************************************************--> 22<!-- This is a template. i18n translation is not performed in-place; 23 i18n translated xml files are generated from this template by 24 transex3/layout/tralay. !--> 25 26<modaldialog xmlns="http://openoffice.org/2007/layout" 27 xmlns:cnt="http://openoffice.org/2007/layout/container" 28 help-id="HID_DLG_WORDCOUNT" 29 id="DLG_WORDCOUNT" 30 sizeable="true" moveable="true" optimumsize="true" 31 has_border="true" sv-look="true" _title="Word Count"> 32 <vbox border="5" spacing="5"> 33 <fixedline id="FL_CURRENT" _text="Current selection"/> 34 <hbox> 35 <vbox cnt:padding="13" spacing="5"> 36 <hbox> 37 <fixedtext id="FT_CURRENTWORD" _label="Words:"/> 38 <flow cnt:padding="60"/> 39 <fixedtext id="FI_CURRENTWORD" right="true" _label="0"/> 40 </hbox> 41 <hbox> 42 <fixedtext id="FT_CURRENTCHARACTER" _label="Characters:"/> 43 <flow cnt:padding="60"/> 44 <fixedtext id="FI_CURRENTCHARACTER" right="true" _label="00"/> 45 </hbox> 46 </vbox> 47 </hbox> 48 <!-- if we could do cnt:cnt:padding="-13" here, we would not have to close 49 and reope the hbox/vbox thing !--> 50 <fixedline id="FL_DOC" _text="Whole document"/> 51 <hbox> 52 <vbox cnt:padding="13" spacing="5"> 53 <hbox> 54 <fixedtext id="FT_DOCWORD" _label="Words:"/> 55 <fixedtext id="FI_DOCWORD" right="true" _label="000"/> 56 </hbox> 57 <hbox> 58 <fixedtext id="FT_DOCCHARACTER" _label="Characters:"/> 59 <fixedtext id="FI_DOCCHARACTER" right="true" _label="0000"/> 60 </hbox> 61 </vbox> 62 </hbox> 63 <fixedline cnt:padding="1" id="FL_BOTTOM"/> 64 <dialogbuttonhbox spacing="5"> 65 <flow/> 66 <okbutton id="PB_OK"/> 67 <helpbutton id="PB_HELP"/> 68 </dialogbuttonhbox> 69 </vbox> 70</modaldialog> 71