merge the formfield patch from ooo-build
[ooovba.git] / sc / source / ui / miscdlgs / protectiondlg.src
blob14a1c8511aea7e30d90ebcabebc55d03b48ca1c1
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: protectiondlg.src,v $
10  * $Revision: 1.1.2.6 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "protectiondlg.hrc"
33 ModalDialog RID_SCDLG_TABPROTECTION
35     Text [ en-US ] = "Protect Sheet" ;
36     Size = MAP_APPFONT ( 220 , 135 ) ;
37     Moveable = TRUE ;
38     Closeable = TRUE ;
40     OKButton BTN_OK
41     {
42         Pos = MAP_APPFONT ( 164 , 6 ) ;
43         Size = MAP_APPFONT ( 50 , 14 ) ;
44         DefButton = TRUE ;
45     };
46     CancelButton BTN_CANCEL
47     {
48         Pos = MAP_APPFONT ( 164 , 23 ) ;
49         Size = MAP_APPFONT ( 50 , 14 ) ;
50     };
51     HelpButton BTN_HELP
52     {
53         Pos = MAP_APPFONT ( 164 , 43 ) ;
54         Size = MAP_APPFONT ( 50 , 14 ) ;
55     };
57     CheckBox BTN_PROTECT
58     {
59         Pos = MAP_APPFONT ( 6 , 6 ) ;
60         Size = MAP_APPFONT ( 150 , 10 );
62         Text [ en-US ] = "P~rotect this sheet and the contents of locked cells" ;
63     };
65     FixedText FT_PASSWORD1
66     {
67         Pos = MAP_APPFONT ( 11, 23 );
68         Size = MAP_APPFONT ( 42, 10 );
70         Text [ en-US ] = "~Password" ;
71     };
73     Edit ED_PASSWORD1
74     {
75         Border = TRUE;
76         PassWord = TRUE;
77         Pos = MAP_APPFONT ( 56, 22 );
78         Size = MAP_APPFONT ( 75, 12 );
79     };
81     FixedText FT_PASSWORD2
82     {
83         Pos = MAP_APPFONT ( 11, 40 );
84         Size = MAP_APPFONT ( 42, 10 );
86         Text [ en-US ] = "~Confirm" ;
87     };
89     Edit ED_PASSWORD2
90     {
91         Border = TRUE;
92         PassWord = TRUE;
93         Pos = MAP_APPFONT ( 56, 39 );
94         Size = MAP_APPFONT ( 75, 12 );
95     };
97     FixedLine FL_OPTIONS
98     {
99         Pos = MAP_APPFONT ( 6, 60 );
100         Size = MAP_APPFONT ( 150, 8 );
102         Text [ en-US ] = "Options";
103     };
105     FixedText FT_OPTIONS
106     {
107         Pos = MAP_APPFONT ( 11, 74 );
108         Size = MAP_APPFONT ( 140, 8 );
110         Text [ en-US ] = "Allow all users of this sheet to:";
111     };
113     Control CLB_OPTIONS
114     {
115         Pos = MAP_APPFONT ( 11, 85 );
116         Size = MAP_APPFONT ( 140, 40 );
117         Border = TRUE ;
118         TabStop = TRUE ;
119     };
121     String ST_SELECT_LOCKED_CELLS
122     {
123         Text [ en-US ] = "Select locked cells";
124     };
126     String ST_SELECT_UNLOCKED_CELLS
127     {
128         Text [ en-US ] = "Select unlocked cells";
129     };