update dev300-m57
[ooovba.git] / sfx2 / source / dialog / passwd.src
blob5c7f11b359d7951423cf853f26d2ca3270690424
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: passwd.src,v $
10  * $Revision: 1.29 $
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 ---------------------------------------------------------------
32 #include "helpid.hrc"
33 #include "dialog.hrc"
34 #include "passwd.hrc"
36  // DLG_PASSWD ------------------------------------------------------------
37 ModalDialog DLG_PASSWD
39     HelpId = HID_PASSWD ;
40     OutputSize = TRUE ;
41     SVLook = TRUE ;
42     Size = MAP_APPFONT( 200, 68 );
43     Text [ en-US ] = "Enter Password" ;
44     Moveable = TRUE ;
45     FixedText FT_PASSWD_USER
46     {
47         Pos = MAP_APPFONT( 12, 15 );
48         Size = MAP_APPFONT( 42, 10 );
49         Text [ en-US ] = "~User";
50     };
51     Edit ED_PASSWD_USER
52     {
53         Border = TRUE;
54         Pos = MAP_APPFONT( 57, 14 );
55         Size = MAP_APPFONT( 75, 12 );
56     };
57     FixedText FT_PASSWD_PASSWORD
58     {
59         Pos = MAP_APPFONT( 12, 30 );
60         Size = MAP_APPFONT( 42, 10 );
61         Text [ en-US ] = "~Password";
62     };
63     Edit ED_PASSWD_PASSWORD
64     {
65         Border = TRUE;
66         PassWord = TRUE;
67         Pos = MAP_APPFONT( 57, 29 );
68         Size = MAP_APPFONT( 75, 12 );
69     };
70     FixedText FT_PASSWD_CONFIRM
71     {
72         Pos = MAP_APPFONT( 12, 45 );
73         Size = MAP_APPFONT( 42, 10 );
74         Text [ en-US ] = "~Confirm";
75     };
76     Edit ED_PASSWD_CONFIRM
77     {
78         Border = TRUE;
79         PassWord = TRUE;
80         Pos = MAP_APPFONT( 57, 44 );
81         Size = MAP_APPFONT( 75, 12 );
82     };
83         
84         String STR_PASSWD_MIN_LEN
85         {
86                 Text [ en-US ] = "(Minimum $(MINLEN) characters)" ;
87         };
88         String STR_PASSWD_EMPTY
89         {
90                 Text [ en-US ] = "(The password can be empty)" ;
91         };
92         
93         FixedText FT_PASSWD_MINLEN
94         {
95                 Pos = MAP_APPFONT(12, 65 );
96                 Size = MAP_APPFONT( 126, 10 );
97         };
98         
99     FixedLine GB_PASSWD_PASSWORD
100     {
101         Pos = MAP_APPFONT( 6, 3 );
102         Size = MAP_APPFONT( 132, 8 );
103         Text [ en-US ] = "Password" ;
104     };
105     OKButton BTN_PASSWD_OK
106     {
107         Disable = TRUE;
108         Pos = MAP_APPFONT( 144, 6 );
109         Size = MAP_APPFONT( 50, 14 );
110         DefButton = TRUE;
111     };
112     CancelButton BTN_PASSWD_CANCEL
113     {
114         Pos = MAP_APPFONT( 144, 23 );
115         Size = MAP_APPFONT( 50, 14 );
116     };
117     HelpButton BTN_PASSWD_HELP
118     {
119         Pos = MAP_APPFONT( 144, 43 );
120         Size = MAP_APPFONT( 50, 14 );
121     };
122     String STR_PASSWD_CONFIRM
123     {
124         Text [ en-US ] = "Confirm password" ;
125     };
128 // ********************************************************************** EOF