1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: passwd.src,v $
12 * This file is part of OpenOffice.org.
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.
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).
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.
29 ************************************************************************/
31 // include ---------------------------------------------------------------
36 // DLG_PASSWD ------------------------------------------------------------
37 ModalDialog DLG_PASSWD
42 Size = MAP_APPFONT( 200, 68 );
43 Text [ en-US ] = "Enter Password" ;
45 FixedText FT_PASSWD_USER
47 Pos = MAP_APPFONT( 12, 15 );
48 Size = MAP_APPFONT( 42, 10 );
49 Text [ en-US ] = "~User";
54 Pos = MAP_APPFONT( 57, 14 );
55 Size = MAP_APPFONT( 75, 12 );
57 FixedText FT_PASSWD_PASSWORD
59 Pos = MAP_APPFONT( 12, 30 );
60 Size = MAP_APPFONT( 42, 10 );
61 Text [ en-US ] = "~Password";
63 Edit ED_PASSWD_PASSWORD
67 Pos = MAP_APPFONT( 57, 29 );
68 Size = MAP_APPFONT( 75, 12 );
70 FixedText FT_PASSWD_CONFIRM
72 Pos = MAP_APPFONT( 12, 45 );
73 Size = MAP_APPFONT( 42, 10 );
74 Text [ en-US ] = "~Confirm";
76 Edit ED_PASSWD_CONFIRM
80 Pos = MAP_APPFONT( 57, 44 );
81 Size = MAP_APPFONT( 75, 12 );
84 String STR_PASSWD_MIN_LEN
86 Text [ en-US ] = "(Minimum $(MINLEN) characters)" ;
88 String STR_PASSWD_EMPTY
90 Text [ en-US ] = "(The password can be empty)" ;
93 FixedText FT_PASSWD_MINLEN
95 Pos = MAP_APPFONT(12, 65 );
96 Size = MAP_APPFONT( 126, 10 );
99 FixedLine GB_PASSWD_PASSWORD
101 Pos = MAP_APPFONT( 6, 3 );
102 Size = MAP_APPFONT( 132, 8 );
103 Text [ en-US ] = "Password" ;
105 OKButton BTN_PASSWD_OK
108 Pos = MAP_APPFONT( 144, 6 );
109 Size = MAP_APPFONT( 50, 14 );
112 CancelButton BTN_PASSWD_CANCEL
114 Pos = MAP_APPFONT( 144, 23 );
115 Size = MAP_APPFONT( 50, 14 );
117 HelpButton BTN_PASSWD_HELP
119 Pos = MAP_APPFONT( 144, 43 );
120 Size = MAP_APPFONT( 50, 14 );
122 String STR_PASSWD_CONFIRM
124 Text [ en-US ] = "Confirm password" ;
128 // ********************************************************************** EOF