2 * Copyright 2003 Mike McCormack for CodeWeavers
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.
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.
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
23 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
27 IDS_LANCONNECTION "LAN Connection"
28 IDS_CERT_CA_INVALID "The certificate is issued by an unknown or untrusted publisher."
29 IDS_CERT_DATE_INVALID "The date on the certificate is invalid."
30 IDS_CERT_CN_INVALID "The name on the certificate does not match the site."
31 IDS_CERT_ERRORS "There is at least one unspecified security problem with this certificate."
32 IDS_CERT_SUBJECT "Subject"
33 IDS_CERT_ISSUER "Issuer"
34 IDS_CERT_EFFECTIVE "Effective Date"
35 IDS_CERT_EXPIRATION "Expiration Date"
36 IDS_CERT_PROTOCOL "Security Protocol"
37 IDS_CERT_SIGNATURE "Signature Type"
38 IDS_CERT_ENCRYPTION "Encryption Type"
39 IDS_CERT_PRIVACY "Privacy Strength"
45 IDD_PROXYDLG DIALOG 36, 24, 220, 146
46 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
47 CAPTION "Enter Network Password"
48 FONT 8, "MS Shell Dlg"
50 LTEXT "Please enter your username and password:", -1, 6, 6, 210, 15
51 LTEXT "Proxy", -1, 6, 26, 50, 18
52 LTEXT "Realm", -1, 6, 46, 50, 18
53 LTEXT "User", -1, 6, 66, 50, 18
54 LTEXT "Password", -1, 6, 86, 50, 18
55 LTEXT "", IDC_PROXY, 60, 26, 150, 14, 0
56 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0
57 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
58 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD
59 CHECKBOX "&Save this password (insecure)", IDC_SAVEPASSWORD,
60 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP
61 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON
62 PUSHBUTTON "Cancel", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP
65 IDD_AUTHDLG DIALOG 36, 24, 220, 146
66 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
67 CAPTION "Authentication Required"
68 FONT 8, "MS Shell Dlg"
70 LTEXT "Please enter your username and password:", -1, 6, 6, 210, 15
71 LTEXT "Server", -1, 6, 26, 50, 18
72 LTEXT "Realm", -1, 6, 46, 50, 18
73 LTEXT "User", -1, 6, 66, 50, 18
74 LTEXT "Password", -1, 6, 86, 50, 18
75 LTEXT "", IDC_SERVER, 60, 26, 150, 14, 0
76 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0
77 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
78 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD
79 CHECKBOX "&Save this password (insecure)", IDC_SAVEPASSWORD,
80 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP
81 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON
82 PUSHBUTTON "Cancel", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP
85 IDD_INVCERTDLG DIALOG 3, 24, 250, 86
86 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
87 CAPTION "Security Warning"
88 FONT 8, "MS Shell Dlg"
90 LTEXT "There is a problem with the certificate for this site.", -1, 40, 6, 200, 20
91 LTEXT "", IDC_CERT_ERROR, 40, 26, 200, 20
92 LTEXT "Do you want to continue anyway?", -1, 40, 46, 200, 20
93 PUSHBUTTON "Yes", IDOK, 40, 66, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON
94 PUSHBUTTON "No", IDCANCEL, 100, 66, 56, 14, WS_GROUP | WS_TABSTOP
97 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
99 #define WINE_FILEDESCRIPTION_STR "Wine Internet Connectivity"
100 #define WINE_FILENAME_STR "wininet.dll"
101 #define WINE_FILEVERSION 8,00,7601,17601
102 #define WINE_FILEVERSION_STR "8.00.7601.17601"
103 #define WINE_PRODUCTVERSION 8,00,7601,17601
104 #define WINE_PRODUCTVERSION_STR "8.00.7601.17601"
106 #include "wine/wine_common_ver.rc"