28 lines
1.5 KiB
Plaintext
28 lines
1.5 KiB
Plaintext
#define IDS_ERROR_INTERNET_TIMEOUT 4
|
|
#define IDS_ERROR_INTERNET_INVALID_URL 5
|
|
#define IDS_ERROR_INTERNET_UNRECOGNIZED_SCHEME 6
|
|
#define IDS_ERROR_INTERNET_CONTENT_LENGTH_INVALID 7
|
|
#define IDS_ERROR_STRING_TOO_LONG 8
|
|
#define IDS_ERROR_INTERNET_PROTOCOL_NOT_FOUND 9
|
|
#define IDS_ERROR_PSCREDENTIALS_SPECIFIED_WITHOUT_PROXYSERVER 10
|
|
#define IDS_ERROR_PASSWORD_SPECIFIED_WITHOUT_USERNAME 11
|
|
#define IDS_ERROR_INTERNET_NAME_NOT_RESOLVED 12
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// String Table
|
|
//
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_ERROR_INTERNET_TIMEOUT "Error: The Connection timeout has expired."
|
|
IDS_ERROR_INTERNET_INVALID_URL "Error: The URL is invalid."
|
|
IDS_ERROR_INTERNET_UNRECOGNIZED_SCHEME "Error: The URL scheme could not be recognized or is not supported."
|
|
IDS_ERROR_INTERNET_CONTENT_LENGTH_INVALID "Error: The Content-Length header value does not match the length of the document."
|
|
IDS_ERROR_STRING_TOO_LONG "Error: One or more property values have exceeded the maximum length allowed."
|
|
IDS_ERROR_INTERNET_PROTOCOL_NOT_FOUND "Error: The protocol is invalid or not supported."
|
|
IDS_ERROR_PSCREDENTIALS_SPECIFIED_WITHOUT_PROXYSERVER "Error: Credentials for proxy server entered but no proxy server was specified."
|
|
IDS_ERROR_PASSWORD_SPECIFIED_WITHOUT_USERNAME "Error: No username specified. Enter a valid username."
|
|
IDS_ERROR_INTERNET_NAME_NOT_RESOLVED "Error: Either the server could not be found or there was a DNS Error."
|
|
END
|
|
|