xref: /aoo41x/main/sw/source/ui/table/mergetbl.src (revision cdf0e10c)
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
28#include "table.hrc"
29#include "mergetbl.hrc"
30#include "cmdid.h"
31#include "helpid.h"
32ModalDialog DLG_MERGE_TABLE
33{
34	HelpID = CMD_FN_TABLE_MERGE_TABLE ;
35	OutputSize = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 207 , 57 ) ;
38	Moveable = TRUE ;
39	OKButton PB_OK
40	{
41		Pos = MAP_APPFONT ( 151 , 6 ) ;
42		Size = MAP_APPFONT ( 50 , 14 ) ;
43		TabStop = TRUE ;
44		DefButton = TRUE ;
45	};
46	CancelButton PB_CANCEL
47	{
48		Pos = MAP_APPFONT ( 151 , 23 ) ;
49		Size = MAP_APPFONT ( 50 , 14 ) ;
50		TabStop = TRUE ;
51	};
52	HelpButton PB_HELP
53	{
54		Pos = MAP_APPFONT ( 151 , 40 ) ;
55		Size = MAP_APPFONT ( 50 , 14 ) ;
56		TabStop = TRUE ;
57	};
58    FixedLine FL_MERGE
59	{
60		Pos = MAP_APPFONT ( 6 , 3 ) ;
61        Size = MAP_APPFONT ( 139 , 8 ) ;
62		Text [ en-US ] = "Mode" ;
63	};
64	RadioButton RB_MERGE_PREV
65	{
66	    HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_PREV";
67		Pos = MAP_APPFONT ( 12 , 15 ) ;
68		Size = MAP_APPFONT ( 130 , 10 ) ;
69		Check = TRUE ;
70		TabStop = TRUE ;
71		Text [ en-US ] = "Join with ~previous table";
72	};
73	RadioButton RB_MERGE_NEXT
74	{
75	    HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_NEXT";
76		Pos = MAP_APPFONT ( 12 , 30 ) ;
77		Size = MAP_APPFONT ( 130 , 10 ) ;
78		Text [ en-US ] = "Join with ~next table";
79	};
80	Text [ en-US ] = "Merge Tables";
81};
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119