xref: /trunk/main/sw/source/ui/dialog/abstract.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#include "dialog.hrc"
28#include "helpid.h"
29#include "abstract.hrc"
30
31ModalDialog DLG_INSERT_ABSTRACT
32{
33    HelpID = HID_INSERT_ABSTRACT ;
34    OutputSize = TRUE ;
35    SVLook = TRUE ;
36    Size = MAP_APPFONT ( 239 , 68 ) ;
37    /* ### ACHTUNG: Neuer Text in Resource? AutoAbstract erzeugen : AutoAbstrakt erzeugen */
38    /* ### ACHTUNG: Neuer Text in Resource? AutoAbstract erzeugen : AutoAbstrakt erzeugen */
39    /* ### ACHTUNG: Neuer Text in Resource? AutoAbstract erzeugen : AutoAbstrakt erzeugen */
40    Moveable = TRUE ;
41    FixedLine FL_1
42    {
43        OutputSize = TRUE ;
44        Pos = MAP_APPFONT ( 6 , 3 ) ;
45        Size = MAP_APPFONT ( 174 , 8 ) ;
46        Text [ en-US ] = "Properties" ;
47    };
48    FixedText FT_LEVEL
49    {
50        Pos = MAP_APPFONT ( 12 , 12 ) ;
51        Size = MAP_APPFONT ( 120 , 8 ) ;
52        Text [ en-US ] = "Included outline levels" ;
53    };
54    NumericField NF_LEVEL
55    {
56        HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL";
57        Border = TRUE ;
58        Pos = MAP_APPFONT ( 153 , 12 ) ;
59        Size = MAP_APPFONT ( 24 , 12 ) ;
60        TabStop = TRUE ;
61        Left = TRUE ;
62        Repeat = TRUE ;
63        Spin = TRUE ;
64        Minimum = 1 ;
65        Maximum = 5 ;
66        Value = 3 ;
67        First = 1 ;
68        Last = 5 ;
69    };
70    FixedText FT_PARA
71    {
72        Pos = MAP_APPFONT ( 12 , 27 ) ;
73        Size = MAP_APPFONT ( 120 , 8 ) ;
74        /* ### ACHTUNG: Neuer Text in Resource? Abs�tze je Kapitel : Abs�tze je Kapitel */
75        Text [ en-US ] = "Subpoints per level" ;
76    };
77    NumericField NF_PARA
78    {
79        HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA";
80        Border = TRUE ;
81        Pos = MAP_APPFONT ( 153 , 27 ) ;
82        Size = MAP_APPFONT ( 24 , 12 ) ;
83        TabStop = TRUE ;
84        Left = TRUE ;
85        Repeat = TRUE ;
86        Spin = TRUE ;
87        Minimum = 1 ;
88        Maximum = 5 ;
89        Value = 1 ;
90        First = 1 ;
91        Last = 5 ;
92    };
93    FixedText FT_DESC
94    {
95        Pos = MAP_APPFONT ( 12 , 43 ) ;
96        Size = MAP_APPFONT ( 165 , 16 ) ;
97        /* ### ACHTUNG: Neuer Text in Resource? Im Abstrakt erscheint die ausgew�hlte Anzahl von Abs�tzen aus den einbezogenen Kapitelebenen. : Im Abstrakt erscheint die ausgew�hlte Anzahl von Abs�tzen aus den einbezogenen Kapitelebenen. */
98        WordBreak = TRUE ;
99        Text [ en-US ] = "The abstract contains the selected number of paragraphs from the included outline levels." ;
100    };
101    OKButton PB_OK
102    {
103        Pos = MAP_APPFONT ( 186 , 6 ) ;
104        Size = MAP_APPFONT ( 50 , 14 ) ;
105        TabStop = TRUE ;
106        DefButton = TRUE ;
107    };
108    CancelButton PB_CANCEL
109    {
110        Pos = MAP_APPFONT ( 186 , 23 ) ;
111        Size = MAP_APPFONT ( 50 , 14 ) ;
112        TabStop = TRUE ;
113    };
114    HelpButton PB_HELP
115    {
116        Pos = MAP_APPFONT ( 186 , 43 ) ;
117        Size = MAP_APPFONT ( 50 , 14 ) ;
118        TabStop = TRUE ;
119    };
120    Text [ en-US ] = "Create AutoAbstract" ;
121};
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156