1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 // include --------------------------------------------------------------- 28#include <svx/dialogs.hrc> 29#include "helpid.hrc" 30#include "passwd.hrc" 31 // pragma ---------------------------------------------------------------- 32 33 // RID_SVXDLG_PASSWORD --------------------------------------------------- 34ModalDialog RID_SVXDLG_PASSWORD 35{ 36 HelpId = HID_PASSWORD ; 37 OutputSize = TRUE ; 38 SVLook = TRUE ; 39 Size = MAP_APPFONT ( 210 , 77 ) ; 40 Moveable = TRUE ; 41 FixedText FT_OLD_PASSWD 42 { 43 Pos = MAP_APPFONT ( 12 , 16 ) ; 44 Size = MAP_APPFONT ( 57 , 8 ) ; 45 Text [ en-US ] = "~Password" ; 46 }; 47 Edit ED_OLD_PASSWD 48 { 49 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD"; 50 Border = TRUE ; 51 Pos = MAP_APPFONT ( 71 , 14 ) ; 52 Size = MAP_APPFONT ( 71 , 12 ) ; 53 PassWord = TRUE ; 54 }; 55 FixedLine FL_OLD_PASSWD 56 { 57 Pos = MAP_APPFONT ( 6 , 3 ) ; 58 Size = MAP_APPFONT ( 142 , 8 ) ; 59 Text [ en-US ] = "Old password" ; 60 }; 61 FixedText FT_NEW_PASSWD 62 { 63 Pos = MAP_APPFONT ( 12 , 45 ) ; 64 Size = MAP_APPFONT ( 57 , 8 ) ; 65 Text [ en-US ] = "Pa~ssword" ; 66 }; 67 Edit ED_NEW_PASSWD 68 { 69 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD"; 70 Border = TRUE ; 71 Pos = MAP_APPFONT ( 71 , 43 ) ; 72 Size = MAP_APPFONT ( 71 , 12 ) ; 73 PassWord = TRUE ; 74 }; 75 FixedText FT_REPEAT_PASSWD 76 { 77 Pos = MAP_APPFONT ( 12 , 61 ) ; 78 Size = MAP_APPFONT ( 57 , 8 ) ; 79 Text [ en-US ] = "Confi~rm"; 80 }; 81 Edit ED_REPEAT_PASSWD 82 { 83 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD"; 84 Border = TRUE ; 85 Pos = MAP_APPFONT ( 71 , 59 ) ; 86 Size = MAP_APPFONT ( 71 , 12 ) ; 87 PassWord = TRUE ; 88 }; 89 FixedLine FL_NEW_PASSWD 90 { 91 Pos = MAP_APPFONT ( 6 , 32 ) ; 92 Size = MAP_APPFONT ( 142 , 8 ) ; 93 Text [ en-US ] = "New password" ; 94 }; 95 OKButton BTN_PASSWD_OK 96 { 97 Pos = MAP_APPFONT ( 154 , 6 ) ; 98 Size = MAP_APPFONT ( 50 , 14 ) ; 99 DefButton = TRUE ; 100 Disable = TRUE ; 101 }; 102 CancelButton BTN_PASSWD_ESC 103 { 104 Pos = MAP_APPFONT ( 154 , 23 ) ; 105 Size = MAP_APPFONT ( 50 , 14 ) ; 106 }; 107 HelpButton BTN_PASSWD_HELP 108 { 109 Pos = MAP_APPFONT ( 154 , 43 ) ; 110 Size = MAP_APPFONT ( 50 , 14 ) ; 111 }; 112 String STR_ERR_OLD_PASSWD 113 { 114 Text [ en-US ] = "Invalid password" ; 115 }; 116 String STR_ERR_REPEAT_PASSWD 117 { 118 Text [ en-US ] = "Passwords do not match" ; 119 }; 120 Text [ en-US ] = "Change Password" ; 121}; 122 // ********************************************************************** EOF 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157