Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / tabopdlg.src
blob627f94206e78a276ffe191fdbcc887d7bbf62907
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "tabopdlg.hrc"
22 ModelessDialog RID_SCDLG_TABOP
24     OutputSize = TRUE ;
25     HelpId = CMD_SID_OPENDLG_TABOP ;
26     Hide = TRUE ;
27     SVLook = TRUE ;
28     Size = MAP_APPFONT ( 250 , 64 ) ;
29     Text [ en-US ] = "Multiple operations" ;
30     Moveable = TRUE ;
31     Closeable = FALSE ;
32     FixedText FT_FORMULARANGE
33     {
34         Pos = MAP_APPFONT ( 12 , 16 ) ;
35         Size = MAP_APPFONT ( 78 , 8 ) ;
36         Text [ en-US ] = "~Formulas" ;
37     };
38     Edit ED_FORMULARANGE
39     {
40         HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_FORMULARANGE";
41         Border = TRUE ;
42         Pos = MAP_APPFONT ( 92 , 14 ) ;
43         Size = MAP_APPFONT ( 79 , 12 ) ;
44     };
45     ImageButton RB_FORMULARANGE
46     {
47         HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_FORMULARANGE";
48         Pos = MAP_APPFONT ( 173 , 13 ) ;
49         Size = MAP_APPFONT ( 13 , 15 ) ;
50         TabStop = FALSE ;
51         QuickHelpText [ en-US ] = "Shrink" ;
52     };
53     FixedText FT_ROWCELL
54     {
55         Pos = MAP_APPFONT ( 12 , 32 ) ;
56         Size = MAP_APPFONT ( 80 , 8 ) ;
57         Text [ en-US ] = "~Row input cell" ;
58     };
59     Edit ED_ROWCELL
60     {
61         HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_ROWCELL";
62         Border = TRUE ;
63         Pos = MAP_APPFONT ( 92 , 30 ) ;
64         Size = MAP_APPFONT ( 79 , 12 ) ;
65     };
66     ImageButton RB_ROWCELL
67     {
68         HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_ROWCELL";
69         Pos = MAP_APPFONT ( 173 , 29 ) ;
70         Size = MAP_APPFONT ( 13 , 15 ) ;
71         TabStop = FALSE ;
72         QuickHelpText [ en-US ] = "Shrink" ;
73     };
74     FixedText FT_COLCELL
75     {
76         Pos = MAP_APPFONT ( 12 , 48 ) ;
77         Size = MAP_APPFONT ( 80 , 8 ) ;
78         Text [ en-US ] = "~Column input cell" ;
79     };
80     Edit ED_COLCELL
81     {
82         HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_COLCELL";
83         Border = TRUE ;
84         Pos = MAP_APPFONT ( 92 , 46 ) ;
85         Size = MAP_APPFONT ( 79 , 12 ) ;
86     };
87     ImageButton RB_COLCELL
88     {
89         HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_COLCELL";
90         Pos = MAP_APPFONT ( 173 , 45 ) ;
91         Size = MAP_APPFONT ( 13 , 15 ) ;
92         TabStop = FALSE ;
93         QuickHelpText [ en-US ] = "Shrink" ;
94     };
95     FixedLine FL_VARIABLES
96     {
97         Pos = MAP_APPFONT ( 6 , 3 ) ;
98         Size = MAP_APPFONT ( 182 , 8 ) ;
99         Text [ en-US ] = "Default settings" ;
100     };
101     OKButton BTN_OK
102     {
103         Pos = MAP_APPFONT ( 194 , 6 ) ;
104         Size = MAP_APPFONT ( 50 , 14 ) ;
105         DefButton = TRUE ;
106     };
107     CancelButton BTN_CANCEL
108     {
109         Pos = MAP_APPFONT ( 194 , 23 ) ;
110         Size = MAP_APPFONT ( 50 , 14 ) ;
111     };
112     HelpButton BTN_HELP
113     {
114         Pos = MAP_APPFONT ( 194 , 43 ) ;
115         Size = MAP_APPFONT ( 50 , 14 ) ;
116     };
117     String STR_NOFORMULA
118     {
119         Text [ en-US ] = "No formula specified." ;
120     };
121     String STR_NOCOLROW
122     {
123         Text [ en-US ] = "Neither row or column specified." ;
124     };
125     String STR_WRONGFORMULA
126     {
127         Text [ en-US ] = "Undefined name or range." ;
128     };
129     String STR_WRONGROWCOL
130     {
131         Text [ en-US ] = "Undefined name or wrong cell reference." ;
132     };
133     String STR_NOCOLFORMULA
134     {
135         Text [ en-US ] = "Formulas don't form a column." ;
136     };
137     String STR_NOROWFORMULA
138     {
139         Text [ en-US ] = "Formulas don't form a row." ;
140     };
143 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */