1/* 2 * Copyright 2003 Mike McCormack for CodeWeavers 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 20 21STRINGTABLE 22{ 23 IDS_LANCONNECTION "LAN Connection" 24 IDS_CERT_CA_INVALID "The certificate is issued by an unknown or untrusted publisher." 25 IDS_CERT_DATE_INVALID "The date on the certificate is invalid." 26 IDS_CERT_CN_INVALID "The name on the certificate does not match the site." 27 IDS_CERT_ERRORS "There is at least one unspecified security problem with this certificate." 28 IDS_CERT_SUBJECT "Subject" 29 IDS_CERT_ISSUER "Issuer" 30 IDS_CERT_EFFECTIVE "Effective Date" 31 IDS_CERT_EXPIRATION "Expiration Date" 32 IDS_CERT_PROTOCOL "Security Protocol" 33 IDS_CERT_SIGNATURE "Signature Type" 34 IDS_CERT_ENCRYPTION "Encryption Type" 35 IDS_CERT_PRIVACY "Privacy Strength" 36 IDS_CERT_HIGH "High" 37 IDS_CERT_LOW "Low" 38 IDS_CERT_BITS "bits" 39} 40 41IDD_PROXYDLG DIALOGEX 36, 24, 220, 146 42STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 43CAPTION "Enter Network Password" 44FONT 8, "MS Shell Dlg" 45{ 46 LTEXT "Please enter your username and password:", -1, 6, 6, 210, 15 47 LTEXT "Proxy", -1, 6, 26, 50, 18 48 LTEXT "Realm", -1, 6, 46, 50, 18 49 LTEXT "User", -1, 6, 66, 50, 18 50 LTEXT "Password", -1, 6, 86, 50, 18 51 LTEXT "", IDC_PROXY, 60, 26, 150, 14, 0 52 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 53 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 54 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 55 CHECKBOX "&Save this password (insecure)", IDC_SAVEPASSWORD, 56 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 57 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 58 PUSHBUTTON "Cancel", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 59} 60 61IDD_AUTHDLG DIALOGEX 36, 24, 220, 146 62STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 63CAPTION "Authentication Required" 64FONT 8, "MS Shell Dlg" 65{ 66 LTEXT "Please enter your username and password:", -1, 6, 6, 210, 15 67 LTEXT "Server", -1, 6, 26, 50, 18 68 LTEXT "Realm", -1, 6, 46, 50, 18 69 LTEXT "User", -1, 6, 66, 50, 18 70 LTEXT "Password", -1, 6, 86, 50, 18 71 LTEXT "", IDC_SERVER, 60, 26, 150, 14, 0 72 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 73 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 74 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 75 CHECKBOX "&Save this password (insecure)", IDC_SAVEPASSWORD, 76 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 77 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 78 PUSHBUTTON "Cancel", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 79} 80 81IDD_INVCERTDLG DIALOGEX 3, 24, 250, 86 82STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 83CAPTION "Security Warning" 84FONT 8, "MS Shell Dlg" 85{ 86 LTEXT "There is a problem with the certificate for this site.", -1, 40, 6, 200, 20 87 LTEXT "", IDC_CERT_ERROR, 40, 26, 200, 20 88 LTEXT "Do you want to continue anyway?", -1, 40, 46, 200, 20 89 PUSHBUTTON "Yes", IDOK, 40, 66, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 90 PUSHBUTTON "No", IDCANCEL, 100, 66, 56, 14, WS_GROUP | WS_TABSTOP 91} 92