2002-10-31 04:08:41 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* $RCSfile: masterpassworddlg.src,v $
|
|
|
|
* $Revision: 1.11 $
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
2008-04-10 10:29:38 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-10-31 04:08:41 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#define __RSC
|
|
|
|
|
|
|
|
#ifndef UUI_IDS_HRC
|
|
|
|
#include <ids.hrc>
|
|
|
|
#endif
|
|
|
|
#ifndef UUI_MASTERPASSWORDDLG_HRC
|
|
|
|
#include <masterpassworddlg.hrc>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ModalDialog DLG_UUI_MASTERPASSWORD
|
|
|
|
{
|
|
|
|
HelpId = HID_DLG_MASTERPASSWORD_UUI;
|
|
|
|
Border = TRUE ;
|
|
|
|
Moveable = TRUE ;
|
|
|
|
OutputSize = TRUE ;
|
|
|
|
SVLook = TRUE ;
|
2008-12-12 06:52:51 -06:00
|
|
|
Size = MAP_APPFONT ( 175 , 66 ) ;
|
2002-10-31 04:08:41 -06:00
|
|
|
FixedText FT_MASTERPASSWORD
|
|
|
|
{
|
2008-12-12 06:52:51 -06:00
|
|
|
Pos = MAP_APPFONT ( 3 , 4 ) ;
|
|
|
|
Size = MAP_APPFONT ( 169 , 9 ) ;
|
|
|
|
Text [ en-US ] = "Enter password";
|
2002-10-31 04:08:41 -06:00
|
|
|
};
|
|
|
|
Edit ED_MASTERPASSWORD
|
|
|
|
{
|
|
|
|
Border = TRUE ;
|
2008-12-12 06:52:51 -06:00
|
|
|
Pos = MAP_APPFONT ( 3 , 17 ) ;
|
|
|
|
Size = MAP_APPFONT ( 169 , 13 ) ;
|
2002-10-31 04:08:41 -06:00
|
|
|
PassWord = TRUE ;
|
|
|
|
};
|
2008-12-12 06:52:51 -06:00
|
|
|
FixedLine FL_FIXED_LINE
|
|
|
|
{
|
|
|
|
Pos = MAP_APPFONT( 0, 35 );
|
|
|
|
Size = MAP_APPFONT( 175, 6 );
|
|
|
|
};
|
2002-10-31 04:08:41 -06:00
|
|
|
|
|
|
|
OKButton BTN_MASTERPASSWORD_OK
|
|
|
|
{
|
2008-12-12 06:52:51 -06:00
|
|
|
Pos = MAP_APPFONT ( 65 , 45 ) ;
|
|
|
|
Size = MAP_APPFONT ( 51 , 13 ) ;
|
2002-10-31 04:08:41 -06:00
|
|
|
DefButton = TRUE ;
|
|
|
|
};
|
|
|
|
CancelButton BTN_MASTERPASSWORD_CANCEL
|
|
|
|
{
|
2008-12-12 06:52:51 -06:00
|
|
|
Pos = MAP_APPFONT ( 120 , 45 ) ;
|
|
|
|
Size = MAP_APPFONT ( 51 , 13 ) ;
|
2002-10-31 04:08:41 -06:00
|
|
|
};
|
|
|
|
HelpButton BTN_MASTERPASSWORD_HELP
|
|
|
|
{
|
2008-12-12 06:52:51 -06:00
|
|
|
Pos = MAP_APPFONT ( 5 , 45 ) ;
|
|
|
|
Size = MAP_APPFONT ( 51 , 13 ) ;
|
2002-10-31 04:08:41 -06:00
|
|
|
};
|
2004-06-25 21:13:58 -05:00
|
|
|
Text [ en-US ] = "Enter Master Password";
|
2002-10-31 04:08:41 -06:00
|
|
|
};
|
|
|
|
|
2003-03-27 10:45:03 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-04-29 10:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-06-13 08:20:20 -05:00
|
|
|
|
|
|
|
|
2003-07-03 10:54:14 -05:00
|
|
|
|
2003-07-17 06:12:00 -05:00
|
|
|
|
2003-12-17 11:41:27 -06:00
|
|
|
|
2003-07-17 06:12:00 -05:00
|
|
|
|