1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 // include --------------------------------------------------------------- 24#include <svx/dialogs.hrc> 25#include "helpid.hrc" 26#include "passwd.hrc" 27 // pragma ---------------------------------------------------------------- 28 29 // RID_SVXDLG_PASSWORD --------------------------------------------------- 30ModalDialog RID_SVXDLG_PASSWORD 31{ 32 HelpId = HID_PASSWORD ; 33 OutputSize = TRUE ; 34 SVLook = TRUE ; 35 Size = MAP_APPFONT ( 210 , 77 ) ; 36 Moveable = TRUE ; 37 FixedText FT_OLD_PASSWD 38 { 39 Pos = MAP_APPFONT ( 12 , 16 ) ; 40 Size = MAP_APPFONT ( 57 , 8 ) ; 41 Text [ en-US ] = "~Password" ; 42 }; 43 Edit ED_OLD_PASSWD 44 { 45 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD"; 46 Border = TRUE ; 47 Pos = MAP_APPFONT ( 71 , 14 ) ; 48 Size = MAP_APPFONT ( 71 , 12 ) ; 49 PassWord = TRUE ; 50 }; 51 FixedLine FL_OLD_PASSWD 52 { 53 Pos = MAP_APPFONT ( 6 , 3 ) ; 54 Size = MAP_APPFONT ( 142 , 8 ) ; 55 Text [ en-US ] = "Old password" ; 56 }; 57 FixedText FT_NEW_PASSWD 58 { 59 Pos = MAP_APPFONT ( 12 , 45 ) ; 60 Size = MAP_APPFONT ( 57 , 8 ) ; 61 Text [ en-US ] = "Pa~ssword" ; 62 }; 63 Edit ED_NEW_PASSWD 64 { 65 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD"; 66 Border = TRUE ; 67 Pos = MAP_APPFONT ( 71 , 43 ) ; 68 Size = MAP_APPFONT ( 71 , 12 ) ; 69 PassWord = TRUE ; 70 }; 71 FixedText FT_REPEAT_PASSWD 72 { 73 Pos = MAP_APPFONT ( 12 , 61 ) ; 74 Size = MAP_APPFONT ( 57 , 8 ) ; 75 Text [ en-US ] = "Confi~rm"; 76 }; 77 Edit ED_REPEAT_PASSWD 78 { 79 HelpID = "svx:Edit:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD"; 80 Border = TRUE ; 81 Pos = MAP_APPFONT ( 71 , 59 ) ; 82 Size = MAP_APPFONT ( 71 , 12 ) ; 83 PassWord = TRUE ; 84 }; 85 FixedLine FL_NEW_PASSWD 86 { 87 Pos = MAP_APPFONT ( 6 , 32 ) ; 88 Size = MAP_APPFONT ( 142 , 8 ) ; 89 Text [ en-US ] = "New password" ; 90 }; 91 OKButton BTN_PASSWD_OK 92 { 93 Pos = MAP_APPFONT ( 154 , 6 ) ; 94 Size = MAP_APPFONT ( 50 , 14 ) ; 95 DefButton = TRUE ; 96 Disable = TRUE ; 97 }; 98 CancelButton BTN_PASSWD_ESC 99 { 100 Pos = MAP_APPFONT ( 154 , 23 ) ; 101 Size = MAP_APPFONT ( 50 , 14 ) ; 102 }; 103 HelpButton BTN_PASSWD_HELP 104 { 105 Pos = MAP_APPFONT ( 154 , 43 ) ; 106 Size = MAP_APPFONT ( 50 , 14 ) ; 107 }; 108 String STR_ERR_OLD_PASSWD 109 { 110 Text [ en-US ] = "Invalid password" ; 111 }; 112 String STR_ERR_REPEAT_PASSWD 113 { 114 Text [ en-US ] = "Passwords do not match" ; 115 }; 116 Text [ en-US ] = "Change Password" ; 117}; 118 // ********************************************************************** EOF 119 120 121 122 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