5 | 프로시저 호출 또는 인수가 잘못되었습니다. |
Invalid procedure call or argument |
6 | 오버플로 |
Overflow |
7 | 메모리 부족 |
Out of memory |
9 | 첨자 사용이 잘못되었습니다. |
Subscript out of range |
10 | 이 배열은 고정되었거나 일시적으로 잠금 상태입니다. |
This array is fixed or temporarily locked |
11 | 0으로 나누기 |
Division by zero |
13 | 형식이 일치하지 않습니다. |
Type mismatch |
14 | 문자열 공간을 넘어갑니다. |
Out of string space |
17 | 요청한 작업을 수행할 수 없습니다. |
Can't perform requested operation |
28 | 스택 공간 부족 |
Out of stack space |
35 | Sub 또는 Function이 정의되지 않았습니다. |
Sub or Function not defined |
48 | DLL을 읽어들이는 데 오류 발생 |
Error in loading DLL |
51 | 내부 오류 |
Internal error |
52 | 파일 이름이나 숫자가 적합하지 않습니다. |
Bad file name or number |
53 | 파일을 찾을 수 없습니다. |
File not found |
54 | 비적합 파일 모드 |
Bad file mode |
55 | 이미 열려 있는 파일입니다. |
File already open |
57 | 장치 I/O 오류 |
Device I/O error |
58 | 파일이 이미 존재합니다. |
File already exists |
61 | 디스크에 여유 공간이 없습니다. |
Disk full |
62 | 파일의 끝을 넘어가는 입력입니다. |
Input past end of file |
67 | 파일이 너무 많습니다. |
Too many files |
68 | 사용할 수 없는 장치입니다. |
Device unavailable |
70 | 사용 권한이 없습니다. |
Permission denied |
71 | 디스크가 준비되지 않았습니다. |
Disk not ready |
74 | 드라이브 이름을 바꿀 수 없습니다. |
Can't rename with different drive |
75 | 경로/파일 접근 오류 |
Path/File access error |
76 | 경로를 찾을 수 없습니다. |
Path not found |
91 | 개체 변수 또는 With 문의 변수가 설정되어 있지 않습니다. |
Object variable or With block variable not set |
92 | For 루프를 초기화하지 않았습니다. |
For loop not initialized |
94 | Null 값의 사용이 잘못되었습니다. |
Invalid use of Null |
322 | 필요한 임시 파일을 만들 수 없습니다. |
Can't create necessary temporary file |
424 | 개체가 필요합니다. |
Object required |
429 | 자동화 서버는 개체를 작성할 수 없습니다. |
Automation server can't create object |
430 | 클래스가 자동화를 지원하지 않습니다. |
Class doesn't support Automation |
432 | 자동화 수행 중 파일 이름이나 클래스 이름을 찾을 수 없습니다. |
File name or class name not found during Automation operation |
438 | 개체가 이 속성 또는 메서드를 지원하지 않습니다. |
Object doesn't support this property or method |
440 | 자동화 오류 |
Automation error |
445 | 개체는 이 기능을 지원하지 않습니다. |
Object doesn't support this action |
446 | 개체는 지정된 인수를 지원하지 않습니다. |
Object doesn't support named arguments |
447 | 개체는 현재의 로케일 설정을 지원하지 않습니다. |
Object doesn't support current locale setting |
448 | 지정된 인수를 찾을 수 없습니다. |
Named argument not found |
449 | 인수를 선택할 수 없습니다. |
Argument not optional |
450 | 인수의 개수나 속성 할당이 잘못되었습니다. |
Wrong number of arguments or invalid property assignment |
451 | 컬렉션이 아닌 개체입니다. |
Object not a collection |
453 | 지정한 DLL 함수를 찾을 수 없습니다. |
Specified DLL function not found |
458 | 변수에 JavaScript에서 지원하지 않는 자동화 형식이 사용되었습니다. |
Variable uses an Automation type not supported in JavaScript |
462 | 원격 서버가 존재하지 않거나 사용할 수 없는 상태입니다. |
The remote server machine does not exist or is unavailable |
501 | 변수에 할당할 수 없습니다. |
Cannot assign to variable |
502 | 스크립트에 안전하지 않은 개체입니다. |
Object not safe for scripting |
503 | 초기화에 안전하지 않은 개체입니다. |
Object not safe for initializing |
504 | 만들기에 안전하지 않은 개체입니다. |
Object not safe for creating |
507 | 예외 사항 발생 |
An exception occurred |
1002 | 구문 오류 |
Syntax error |
1003 | ':'가 필요합니다. |
Expected ':' |
1004 | ';'가 필요합니다. |
Expected ';' |
1005 | '('가 필요합니다. |
Expected '(' |
1006 | ')'가 필요합니다. |
Expected ')' |
1007 | ']'가 필요합니다. |
Expected ']' |
1008 | '{'가 필요합니다. |
Expected '{' |
1009 | '}'가 필요합니다. |
Expected '}' |
1010 | 식별자가 필요합니다. |
Expected identifier |
1011 | '='가 필요합니다. |
Expected '=' |
1012 | '/'가 필요합니다. |
Expected '/' |
1013 | 유효하지 않은 숫자입니다. |
Invalid number |
1014 | 유효하지 않은 문자입니다. |
Invalid character |
1015 | 종결되지 않은 문자열 상수입니다. |
Unterminated string constant |
1016 | 종결되지 않은 주석입니다. |
Unterminated comment |
1018 | 함수 밖의 'return' 문장 |
'return' statement outside of function |
1019 | 루프 밖에서는 'break'을 사용할 수 없습니다. |
Can't have 'break' outside of loop |
1020 | 루프 밖에서는 'continue'를 사용할 수 없습니다. |
Can't have 'continue' outside of loop |
1023 | 16진수가 필요합니다. |
Expected hexadecimal digit |
1024 | 'while'이 필요합니다. |
Expected 'while' |
1025 | 레이블이 재정의되었습니다. |
Label redefined |
1026 | 레이블을 찾을 수 없습니다. |
Label not found |
1027 | 'switch'문에서 'default'는 한번만 나타날 수 있습니다. |
'default' can only appear once in a 'switch' statement |
1028 | 식별자나 문자열 또는 숫자가 필요합니다. |
Expected identifier, string or number |
1029 | '@end'가 필요합니다. |
Expected '@end' |
1030 | 조건부 컴파일이 해제되었습니다. |
Conditional compilation is turned off |
1031 | 상수가 필요합니다. |
Expected constant |
1032 | '@'가 필요합니다. |
Expected '@' |
1033 | 'catch'가 필요합니다. |
Expected 'catch' |
1034 | 'var'가 필요합니다. |
Expected 'var' |
1035 | 수식이 'throw'와 같은 줄에 반드시 뒤따라야 합니다. |
'throw' must be followed by an expression on the same source line |
1037 | strict 모드에서는 'with' 문을 사용할 수 없습니다. |
'with' statements are not allowed in strict mode |
1038 | strict 모드에서는 형식 매개 변수 이름을 중복하여 사용할 수 없습니다. |
Duplicate formal parameter names not allowed in strict mode |
1039 | strict 모드에서는 8진수 리터럴과 이스케이프 문자를 사용할 수 없습니다. |
Octal numeric literals and escape characters not allowed in strict mode |
1041 | strict 모드에서 'eval' 사용 방법이 잘못되었습니다. |
Invalid usage of 'eval' in strict mode |
1042 | strict 모드에서 'arguments' 사용 방법이 잘못되었습니다. |
Invalid usage of 'arguments' in strict mode |
1045 | strict 모드에서는 식에서 delete를 호출할 수 없습니다. |
Calling delete on expression not allowed in strict mode |
1046 | strict 모드에서는 속성을 여러 번 정의할 수 없습니다. |
Multiple definitions of a property not allowed in strict mode |
1047 | strict 모드에서는 문 또는 블록 안에 함수 선언을 중첩할 수 없습니다. 최상위 수준이나 함수 본문 바로 안에만 표시될 수 있습니다. |
In strict mode, function declarations cannot be nested inside a statement or block. They may only appear at the top level or directly inside a function body. |
1048 | 식별자에 대한 키워드 사용이 잘못되었습니다. |
The use of a keyword for an identifier is invalid |
1049 | 식별자에 대한 미래 예약어 사용이 잘못되었습니다. |
The use of a future reserved word for an identifier is invalid |
1050 | 식별자에 대한 미래 예약어 사용이 잘못되었습니다. 식별자 이름이 strict 모드에서 예약되었습니다. |
The use of a future reserved word for an identifier is invalid. The identifier name is reserved in strict mode. |
1051 | Setter 함수에는 하나의 인수가 있어야 합니다. |
Setter functions must have one argument |
1052 | Let/Const 다시 선언 |
Let/Const redeclaration |
1053 | Const를 초기화해야 합니다. |
Const must be initialized |
1054 | Const 및 let을 블록 내에 선언해야 합니다. |
Const and let must be declared inside of block |
1055 | const에 할당 |
Assignment to const |
4096 | JavaScript 컴파일 오류 |
JavaScript compilation error |
4097 | JavaScript 런타임 오류 |
JavaScript runtime error |
4098 | 알 수 없는 런타임 오류 |
Unknown runtime error |
5000 | 'this'에 할당할 수 없습니다. |
Cannot assign to 'this' |
5001 | 숫자가 필요합니다. |
Number expected |
5002 | 함수가 필요합니다. |
Function expected |
5003 | 함수 결과에 할당할 수 없습니다. |
Cannot assign to a function result |
5004 | 개체를 인덱스할 수 없습니다. |
Cannot index object |
5005 | 문자열이 필요합니다. |
String expected |
5006 | 날짜 개체가 필요합니다. |
Date object expected |
5008 | 왼쪽에 할당된 값이 잘못되었습니다. |
Invalid left-hand side in assignment |
5009 | 정의되지 않은 식별자 |
Undefined identifier |
5010 | Boolean이 필요합니다. |
Boolean expected |
5011 | 삭제된 스크립트의 코드는 수행할 수 없습니다. |
Can't execute code from a freed script |
5012 | 개체 구성원이 필요합니다. |
Object member expected |
5013 | VBArray가 필요합니다. |
VBArray expected |
5014 | JavaScript 개체가 필요합니다. |
JavaScript object expected |
5015 | 열거형 개체가 필요합니다. |
Enumerator object expected |
5016 | 정규식 개체가 필요합니다. |
Regular Expression object expected |
5017 | 정규식에 구문 오류가 있습니다. |
Syntax error in regular expression |
5018 | 예기치 않은 수량사 |
Unexpected quantifier |
5019 | 정규식에 ']'가 필요합니다. |
Expected ']' in regular expression |
5020 | 정규식에 ')'가 필요합니다. |
Expected ')' in regular expression |
5021 | 잘못된 범주의 문자 집합입니다. |
Invalid range in character set |
5022 | 예외가 발생했지만 catch할 수 없습니다. |
Exception thrown and not caught |
5023 | 함수에 유효한 표준 개체가 없습니다. |
Function does not have a valid prototype object |
5024 | 인코딩될 URI가 유효하지 않은 문자를 포함하고 있습니다. |
The URI to be encoded contains an invalid character |
5025 | 디코딩될 URI가 유효한 인코딩이 아닙니다. |
The URI to be decoded is not a valid encoding |
5026 | 소수부 자리수가 범위를 초과하였습니다. |
The number of fractional digits is out of range |
5027 | 정밀도가 범위를 초과하였습니다. |
The precision is out of range |
5028 | Array 또는 arguments 개체가 필요합니다. |
Array or arguments object expected |
5029 | 배열의 길이는 유한한 양의 정수이어야 합니다. |
Array length must be a finite positive integer |
5030 | 배열의 길이는 유한한 양수로 할당해야 합니다. |
Array length must be assigned a finite positive number |
5031 | 배열 개체가 필요합니다. |
Array object expected |
5034 | 값 인수에 순환 참조를 사용하는 것은 지원되지 않습니다. |
Circular reference in value argument not supported |
5035 | 치환 인수가 잘못되었습니다. |
Invalid replacer argument |
5038 | 인수 목록이 너무 커서 적용할 수 없습니다. |
Argument list too large to apply |
5039 | const 속성 다시 선언 |
Redeclaration of const property |
5040 | Cyclic __proto__ value |
Cyclic __proto__ value |
5041 | 개체 구성원을 구성할 수 없습니다. |
Object member not configurable |
5042 | strict 모드에서 변수가 정의되지 않았습니다. |
Variable undefined in strict mode |
5043 | strict 모드에서는 함수 또는 인수 개체의 'caller' 속성에 액세스할 수 없습니다. |
Accessing the 'caller' property of a function or arguments object is not allowed in strict mode |
5044 | strict 모드에서는 인수 개체의 'callee' 속성에 액세스할 수 없습니다. |
Accessing the 'callee' property of an arguments object is not allowed in strict mode |
5045 | strict 모드에서는 읽기 전용 속성에 할당할 수 없습니다. |
Assignment to read-only properties is not allowed in strict mode |
5046 | 확장 가능하지 않은 개체에 대해 속성을 만들 수 없습니다. |
Cannot create property for a non-extensible object |
5053 | 속성에 접근자와 값을 둘 다 지정할 수는 없습니다. |
Property cannot have both accessors and a value |
5054 | 'this'가 null이거나 정의되지 않았습니다. |
'this' is null or undefined |
5059 | 날짜가 필요합니다. |
Date expected |
5064 | RegExp 개체가 필요합니다. |
RegExp object expected |
5065 | 함수 인수가 잘못되었습니다. |
Invalid function argument |
5072 | 'length' 속성이 잘못되었습니다. |
Invalid 'length' property |
5074 | 피연산자가 잘못되었습니다. |
Invalid Operand |
5076 | 속성 설명자가 잘못되었습니다. |
Invalid property descriptor |
5077 | 속성을 정의할 수 없습니다. 개체가 확장 가능하지 않습니다. |
Cannot define property: object is not extensible |
5078 | 구성 가능하지 않은 속성을 재정의할 수 없습니다. |
Cannot redefine non-configurable property |
5079 | 쓰기 가능하지 않은 속성을 수정할 수 없습니다. |
Cannot modify non-writable property |
5080 | 속성을 수정할 수 없습니다. 'length'를 쓸 수 없습니다. |
Cannot modify property: 'length' is not writable |
5081 | 속성을 정의할 수 없습니다. |
Cannot define property |
5082 | 형식화된 배열 생성자 인수가 잘못되었습니다. |
Typed array constructor argument is invalid |
5083 | 'this'가 형식화된 배열 개체가 아닙니다. |
'this' is not a typed array object |
5084 | 형식화된 배열을 만들 때의 오프셋/길이가 잘못되었습니다. |
Invalid offset/length when creating typed array |
5085 | 형식화된 배열의 하위 배열 메서드에 잘못된 시작/끝 값이 있습니다. |
Invalid begin/end value in typed array subarray method |
5086 | 형식화된 배열 집합에 잘못된 원본이 있습니다. |
Invalid source in typed array set |
5087 | 'this'가 DataView 개체가 아닙니다. |
'this' is not a DataView object |
5088 | DataView에 잘못된 인수가 있습니다. |
Invalid arguments in DataView |
5089 | DataView 작업이 지정된 버퍼 길이를 초과하여 액세스합니다. |
DataView operation access beyond specified buffer length |
5091 | 잘못된 함수 서명 |
invalid function signature |
5092 | 잘못된 속성 서명 |
invalid property signature |
5093 | 잘못된 입력 매개 변수 형식 |
invalid input parameter type |
5094 | 잘못된 출력 매개 변수 |
invalid ouput parameter |
5095 | strict 모드에서는 함수의 'arguments' 속성에 액세스할 수 없습니다. |
Accessing the 'arguments' property of a function is not allowed in strict mode |
5096 | Inspectable 개체가 필요합니다. |
Inspectable Object expected |
5097 | 'char' 유형으로 인수를 변환할 수 없습니다. |
Could not convert argument to type 'char' |
5098 | 'GUID' 유형으로 인수를 변환할 수 없습니다. |
Could not convert argument to type 'GUID' |
5099 | IInspectable이 필요합니다. |
IInspectable expected |
5100 | 개체를 구조체로 변환할 수 없습니다. 개체에 필요한 속성이 누락되었습니다. |
Could not convert object to struct: object missing expected property |
5101 | 알 수 없는 형식 |
Unknown type |
5102 | 너무 적은 인수로 호출된 함수입니다. |
Function called with too few arguments |
5103 | 유형은 구성할 수 없습니다. |
Type is not constructible |
5104 | 값을 PropertyValue로 변환할 수 없습니다. PropertyValue에서 지원하지 않는 유형입니다. |
Could not convert value to PropertyValue: Type not supported by PropertyValue |
5105 | 값을 IInspectable로 변환할 수 없습니다. IInspectable에서 지원하지 않는 유형입니다. |
Could not convert value to IInspectable: Type not supported by IInspectable |
5106 | 날짜를 Windows.Foundation.DateTime으로 변환할 수 없습니다. 유효한 범위에 있지 않은 값입니다. |
Could not convert Date to Windows.Foundation.DateTime: value outside of valid range |
5107 | 값을 Windows.Foundation.TimeSpan으로 변환할 수 없습니다. 유효한 범위를 벗어난 값입니다. |
Could not convert value to Windows.Foundation.TimeSpan: value outside of valid range |
5108 | 이미 릴리스된 Inspectable 개체에 대한 잘못된 액세스입니다. |
Invalid access to already released Inspectable Object |
5109 | 이미 릴리스된 Inspectable 개체는 릴리스할 수 없습니다. |
Cannot release already released Inspectable Object |
5110 | '이것'은 예상 형식이 아님 |
'this' is not of the expected type |
5111 | 배열에 지정된 길이 및 크기가 잘못되었습니다. |
Illegal length and size specified for the array |
5112 | 메타데이터 정보를 가져오는 동안 예기치 않은 오류가 발생했습니다. |
An unexpected failure occurred while trying to obtain metadata information |
5113 | 선언 전에 사용 |
Use before declaration |
5114 | 'this'를 다시 초기화할 수 없습니다. 개체가 이미 초기화되었습니다. |
Cannot re-initialize 'this', object already initialized |
5115 | 'this'가 확장 가능하지 않은 개체이므로 초기화할 수 없습니다. |
Cannot initialize 'this' because it is a non-extensible object |
5116 | 'this'가 필요한 형식이 아닙니다. |
'this' is not of the expected type |
5117 | 'key'가 개체가 아닙니다. |
'key' is not an object |
5118 | 옵션 값이 유효한 범위를 벗어났습니다. |
Option value is outside of valid range |
5119 | 개체 또는 문자열이 필요합니다. |
Object or string expected |
5120 | 새 문에 사용할 수 없습니다. |
This can't be used in a new statement |
5121 | 로캘의 형식이 잘못되었습니다. |
Locale is not well-formed |
5122 | 통화 코드가 잘못되었습니다. |
Currency code is invalid |
5123 | 통화 코드가 지정되지 않았습니다. |
Currency code was not specified |
5124 | 잘못된 날짜 |
Invalid Date |
5125 | Intl을 사용할 수 없습니다. |
Intl is not available. |
5200 | 상태는 '오류'지만, getResults에서 오류를 반환하지 않았습니다. |
Status is 'error', but getResults did not return an error |
5201 | 완료된 처리기에 누락되거나 잘못된 상태 매개 변수가 전달됨 |
Missing or invalid status parameter passed to completed handler |
5400 | 네이티브 코드를 디버그하는 동안에는 함수 평가를 사용할 수 없습니다. |
Function evaluation is disabled while debugging native code |
5401 | 네이티브 코드를 디버그하는 동안에는 JavaScript 식 평가가 지원되지 않습니다. |
Evaluation of the JavaScript expression is not supported while debugging native code |
5604 | ArrayBuffer 개체가 필요합니다. |
ArrayBuffer object expected |
6000 | 무한대 |
Infinity |
6001 | -무한대 |
-Infinity |
10438 | 개체가 '%s' 속성이나 메서드를 지원하지 않습니다. |
Object doesn't support property or method '%s' |
10449 | '%s' 함수에는 인수가 필요합니다. |
Argument to the function '%s' is not optional |
15001 | '%s'은(는) 숫자가 아닙니다. |
'%s' is not a number |
15002 | '%s'은(는) 함수가 아닙니다. |
'%s' is not a function |
15004 | '%s'은(는) 인덱스를 지정할 수 있는 개체가 아닙니다. |
'%s' is not an indexable object |
15005 | '%s'은(는) 문자열이 아닙니다. |
'%s' is not a string |
15006 | '%s'은(는) 날짜 개체가 아닙니다. |
'%s' is not a date object |
15007 | '%s'은(는) null이거나 개체가 아닙니다. |
'%s' is null or not an object |
15008 | '%s'에 할당할 수 없습니다. |
Cannot assign to '%s' |
15009 | '%s'이(가) 정의되지 않았습니다. |
'%s' is undefined |
15010 | '%s'은(는) boolean이 아닙니다. |
'%s' is not a boolean |
15012 | '%s'을(를) 삭제할 수 없습니다. |
Cannot delete '%s' |
15013 | '%s'은(는) VBArray가 아닙니다. |
'%s' is not a VBArray |
15014 | '%s'은(는) JavaScript 개체가 아닙니다. |
'%s' is not a JavaScript object |
15015 | '%s'은(는) 열거형 개체가 아닙니다. |
'%s' is not an enumerator object |
15016 | '%s'은(는) 정규식 개체가 아닙니다. |
'%s' is not a regular expression object |
15028 | %s은(는] Array 또는 arguments 개체가 아닙니다. |
%s is not an Array or arguments object |
15031 | %s은(는) 배열(Array) 개체가 아닙니다. |
%s is not an Array object |
15036 | 속성 설명자의 '%s' 특성은 이 개체에 대해 'true'로 설정할 수 없습니다. |
'%s' attribute on the property descriptor cannot be set to 'true' on this object |
15037 | 속성 설명자의 '%s' 특성은 이 개체에 대해 'false'로 설정할 수 없습니다. |
'%s' attribute on the property descriptor cannot be set to 'false' on this object |
15039 | const '%s' 다시 선언 |
Redeclaration of const '%s' |
15041 | strict 모드에서는 '%s'에서 delete를 호출할 수 없습니다. |
Calling delete on '%s' is not allowed in strict mode |
15047 | 정의되지 않음 또는 null 참조인 '%s' 속성을 설정할 수 없습니다. |
Unable to set property '%s' of undefined or null reference |
15048 | 정의되지 않음 또는 null 참조인 '%s' 속성을 가져올 수 없습니다. |
Unable to get property '%s' of undefined or null reference |
15049 | 정의되지 않음 또는 null 참조인 '%s' 속성을 삭제할 수 없습니다. |
Unable to delete property '%s' of undefined or null reference |
15050 | '%s' 속성 값에 액세스할 수 없습니다. 'VarDate' 형식이 사용자 정의 속성을 지원하지 않습니다. |
Unable to access property '%s': type 'VarDate' does not support user-defined properties |
15051 | '%s' 속성 값이 Function 개체가 아닙니다. |
The value of the property '%s' is not a Function object |
15052 | '%s' 속성 값이 null이거나 정의되지 않았습니다. Function 개체가 아닙니다. |
The value of the property '%s' is null or undefined, not a Function object |
15054 | %s: 'this'가 null이거나 정의되지 않았습니다. |
%s: 'this' is null or undefined |
15055 | %s: 'this'가 Object가 아닙니다. |
%s: 'this' is not an Object |
15056 | %s: 'this'가 Function 개체가 아닙니다. |
%s: 'this' is not a Function object |
15057 | %s: 'this'가 String 개체가 아닙니다. |
%s: 'this' is not a String object |
15058 | %s: 'this'가 Boolean 개체가 아닙니다. |
%s: 'this' is not a Boolean object |
15059 | %s: 'this'가 Date 개체가 아닙니다. |
%s: 'this' is not a Date object |
15060 | %s: 'this'가 Number 개체가 아닙니다. |
%s: 'this' is not a Number object |
15061 | %s: 'this'가 VBArray 개체가 아닙니다. |
%s: 'this' is not a VBArray object |
15062 | %s: 'this'가 JavaScript 개체가 아닙니다. |
%s: 'this' is not a JavaScript object |
15063 | %s: 'this'가 Enumerator 개체가 아닙니다. |
%s: 'this' is not an Enumerator object |
15064 | %s: 'this'가 RegExp 개체가 아닙니다. |
%s: 'this' is not a RegExp object |
15065 | %s: 인수가 잘못되었습니다. |
%s: invalid argument |
15066 | %s: 인수가 Object가 아닙니다. |
%s: argument is not an Object |
15067 | %s: 인수가 JavaScript 개체가 아닙니다. |
%s: argument is not a JavaScript object |
15068 | %s: 인수가 Function 개체가 아닙니다. |
%s: argument is not a Function object |
15069 | %s: 인수가 VBArray 개체가 아닙니다. |
%s: argument is not a VBArray object |
15070 | %s: 인수가 null이거나 정의되지 않았습니다. |
%s: argument is null or undefined |
15071 | %s: 인수가 Object가 아니고 null도 아닙니다. |
%s: argument is not an Object and is not null |
15072 | %s: 인수에 올바른 'length' 속성이 없습니다. |
%s: argument does not have a valid 'length' property |
15073 | %s: 배열 또는 인수 개체가 필요합니다. |
%s: Array or arguments object expected |
15074 | '%s'에 대한 피연산자가 잘못되었습니다. 개체가 필요합니다. |
Invalid operand to '%s': Object expected |
15075 | '%s'에 대한 피연산자가 잘못되었습니다. 함수가 필요합니다. |
Invalid operand to '%s': Function expected |
15076 | '%s' 속성에 대한 설명자가 잘못되었습니다. |
Invalid descriptor for property '%s' |
15077 | '%s' 속성을 정의할 수 없습니다. 개체가 확장 가능하지 않습니다. |
Cannot define property '%s': object is not extensible |
15078 | 구성 가능하지 않은 속성 '%s'을(를) 재정의할 수 없습니다. |
Cannot redefine non-configurable property '%s' |
15079 | 구성 가능하지 않은 속성 '%s'을(를) 수정할 수 없습니다. |
Cannot modify non-writable property '%s' |
15080 | '%s' 속성을 수정할 수 없습니다. 'length'를 쓸 수 없습니다. |
Cannot modify property '%s': 'length' is not writable |
15081 | '%s' 속성을 정의할 수 없습니다. |
Cannot define property '%s' |
15088 | DataView 메서드의 필수 인수 %s을(를) 지정하지 않았습니다. |
Required argument %s in DataView method is not specified |
15090 | DataView 생성자 인수 %s이(가) 잘못되었습니다. |
DataView constructor argument %s is invalid |
15091 | '%s' 함수에 잘못된 서명이 있으며 호출할 수 없습니다. |
The function '%s' has an invalid signature and cannot be called |
15092 | '%s' 속성에 잘못된 서명이 있으며 액세스할 수 없습니다. |
The property '%s' has an invalid signature and cannot be accessed |
15093 | Windows.Foundation.IPropertyValue를 기본 인터페이스로 사용하는 runtimeclass %s은(는) 입력 매개 변수 형식으로 지원되지 않습니다. |
The runtimeclass %s that has Windows.Foundation.IPropertyValue as default interface is not supported as input parameter type |
15094 | runtimeclass 이름이 %s인 인터페이스 Windows.Foundation.IPropertyValue를 사용하는 개체는 출력 매개 변수로 지원되지 않습니다. |
The object with interface Windows.Foundation.IPropertyValue that has runtimeclass name %s is not supported as out parameter |
15096 | %s: 'this'는 Inspectable 개체가 아닙니다. |
%s: 'this' is not an Inspectable Object |
15097 | %s: 인수를 'char' 유형으로 변환할 수 없습니다. |
%s: could not convert argument to type 'char' |
15098 | %s: 인수를 'GUID' 유형으로 변환할 수 없습니다. |
%s: could not convert argument to type 'GUID' |
15099 | %s: 반환 값을 IInspectable로 변환할 수 없습니다. |
%s: could not convert return value to IInspectable |
15100 | 개체를 구조체로 변환할 수 없습니다. 개체에 필요한 속성 '%s'이(가) 누락되었습니다. |
Could not convert object to struct: object missing expected property '%s' |
15101 | '%s' 유형을 찾지 못했습니다. |
Type '%s' not found |
15102 | %s: 너무 적은 인수로 호출된 함수입니다. |
%s: function called with too few arguments |
15103 | %s: 유형을 구성할 수 없습니다. |
%s: type is not constructible |
15104 | 값을 PropertyValue로 변환할 수 없습니다. %s은(는) PropertyValue에서 지원되지 않습니다. |
Could not convert value to PropertyValue: %s not supported by PropertyValue |
15105 | 값을 IInspectable로 변환할 수 없습니다. %s은(는) IInspectable에서 지원되지 않습니다. |
Could not convert value to IInspectable: %s not supported by IInspectable |
15108 | %s: Inspectable 개체 'this'가 릴리스되었으며 액세스할 수 없습니다. |
%s: The Inspectable object 'this' is released and cannot be accessed |
15110 | '이것'은 예상 형식이 아님: %s |
'this' is not of expected type: %s |
15112 | %s: 메타데이터 정보를 가져오는 동안 예기치 않은 오류가 발생했습니다. |
%s: an unexpected failure occurred while trying to obtain metadata information |
15114 | '%s' 개체를 초기화할 수 없습니다. 'this'가 이미 '%s' 개체로 초기화되었습니다. |
Cannot initialize '%s' object: 'this' is already initialized as '%s' object |
15115 | '%s'을(를) 초기화할 수 없습니다. 'this'가 확장 가능하지 않습니다. |
Cannot initialize '%s' object: 'this' is not extensible |
15116 | %s: 'this'가 %s 개체가 아닙니다. |
%s: 'this' is not a %s object |
15117 | %s: 'key'가 개체가 아닙니다. |
%s: 'key' is not an object |
15118 | 옵션 값 '%s'('%s')이(가) 유효한 범위를 벗어났습니다. 예상: %s |
Option value '%s' for '%s' is outside of valid range. Expected: %s |
15119 | %s은(는) 개체 또는 문자열이 아닙니다. |
%s is not an object or a string |
15120 | '%s' 함수는 생성자가 아닙니다. |
Function '%s' is not a constructor |
15121 | '%s' 로캘의 형식이 잘못되었습니다. |
Locale '%s' is not well-formed |
15122 | 통화 코드 '%s'이(가) 잘못되었습니다. |
Currency code '%s' is invalid |
15604 | %s은(는) ArrayBuffer가 아닙니다. |
%s is not an ArrayBuffer |
20001 | 삭제된 스크립트의 코드는 실행할 수 없습니다. |
Can't execute code from a freed script |
32812 | 현재 로케일의 달력에서는 지정한 날짜를 사용할 수 없습니다. |
The specified date is not available in the current locale's calendar |
0x10000001 | INTERNET 핸들의 생성 또는 삭제를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with creation or destruction of INTERNET handles |
0x10000002 | HTTP 요청 및 응답 프로세싱을 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with processing of HTTP requests and responses |
0x10000003 | 네트워크 작업(TCP, DNS)을 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with network operations (TCP, DNS) |
0x10000004 | 인증을 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with authentication |
0x10000005 | HTTPS를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with HTTPS |
0x10000006 | AUTOPROXY를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with AUTOPROXY |
0x10000007 | 쿠키를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with Cookies |
0x10000008 | 모든 WinINet IE 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet IE events |
0x10000021 | 패킷 캡처 전송을 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with sending packet capture |
0x10000022 | 패킷 캡처 수신을 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with receiving packet capture |
0x10000023 | 모바일 SKU에만 관련된 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events relevant only to Mobile SKUs |
0x1000002A | 개인 식별이 가능한 정보를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with potential personally identifiable information |
0x1000002B | 패킷 캡처를 처리하는 모든 WinINet 이벤트에 플래그를 지정했습니다. |
Flagged on all WinINet events dealing with packet capture |
0x10000031 | 응답 시간 |
Response Time |
0x30000000 | 정보 |
Info |
0x30000001 | 시작 |
Start |
0x30000002 | 중지 |
Stop |
0x3000000B | 실패 |
Fail |
0x50000002 | 오류 |
Error |
0x50000005 | 자세한 정보 표시 |
Verbose |
0x700001F4 | WININET_ROOT_HANDLE_CREATED |
WININET_ROOT_HANDLE_CREATED |
0x700001F5 | WININET_OPEN_URL_HANDLE_CREATED |
WININET_OPEN_URL_HANDLE_CREATED |
0x700001F6 | WININET_CONNECT_HANDLE_CREATED |
WININET_CONNECT_HANDLE_CREATED |
0x700001F7 | WININET_HTTP_REQUEST_HANDLE_CREATED |
WININET_HTTP_REQUEST_HANDLE_CREATED |
0x700001F8 | WININET_HANDLE_CLOSED |
WININET_HANDLE_CLOSED |
0x700001F9 | WININET_HANDLE_CREATE_FAILED |
WININET_HANDLE_CREATE_FAILED |
0x700001FA | WININET_HANDLE_CLOSE_FAILED |
WININET_HANDLE_CLOSE_FAILED |
0x700001FB | WININET_HTTP_REQUEST |
WININET_HTTP_REQUEST |
0x700001FC | WININET_HTTP_RESPONSE |
WININET_HTTP_RESPONSE |
0x700001FD | WININET_HTTP_CONNECTION_CLOSED |
WININET_HTTP_CONNECTION_CLOSED |
0x700001FE | WININET_KEEP_ALIVE_CONNECTION_REUSED |
WININET_KEEP_ALIVE_CONNECTION_REUSED |
0x700001FF | WININET_KEEP_ALIVE_CONNECTION_POOLED |
WININET_KEEP_ALIVE_CONNECTION_POOLED |
0x70000200 | WININET_KEEP_ALIVE_CONNECTION_CLOSED |
WININET_KEEP_ALIVE_CONNECTION_CLOSED |
0x70000201 | WININET_HTTP_RESPONSE_BODY_RECEIVED |
WININET_HTTP_RESPONSE_BODY_RECEIVED |
0x70000202 | WININET_TCP_CONNECTION |
WININET_TCP_CONNECTION |
0x70000203 | WININET_DNS_QUERY |
WININET_DNS_QUERY |
0x70000204 | WININET_NETWORK_CHANGE_DETECTED |
WININET_NETWORK_CHANGE_DETECTED |
0x70000205 | WININET_COOKIE_HEADER_RECEIVED |
WININET_COOKIE_HEADER_RECEIVED |
0x70000206 | WININET_COOKIE_STORED |
WININET_COOKIE_STORED |
0x70000207 | WININET_COOKIE_DELETED |
WININET_COOKIE_DELETED |
0x70000208 | WININET_COOKIE_BLOCKED |
WININET_COOKIE_BLOCKED |
0x70000209 | WININET_COOKIE_P3P_REJECTED |
WININET_COOKIE_P3P_REJECTED |
0x7000020A | WININET_COOKIE_REQUEST_HEADER_CREATED |
WININET_COOKIE_REQUEST_HEADER_CREATED |
0x7000020B | WININET_COOKIE_ADDED_TO_HEADER |
WININET_COOKIE_ADDED_TO_HEADER |
0x7000020C | WININET_AUTH_RESPONSE_RECEIVED |
WININET_AUTH_RESPONSE_RECEIVED |
0x7000020D | WININET_AUTH_CLIENT_SETS_USERNAME |
WININET_AUTH_CLIENT_SETS_USERNAME |
0x7000020E | WININET_AUTH_CLIENT_SETS_PASSWORD |
WININET_AUTH_CLIENT_SETS_PASSWORD |
0x7000020F | WININET_AUTH_USING_CACHED_CREDS |
WININET_AUTH_USING_CACHED_CREDS |
0x70000210 | WININET_AUTH_USING_DEFAULT_CREDS |
WININET_AUTH_USING_DEFAULT_CREDS |
0x70000211 | WININET_AUTH_CLIENT_ADD_HEADERS |
WININET_AUTH_CLIENT_ADD_HEADERS |
0x70000212 | WININET_HTTPS_NEGOTIATION |
WININET_HTTPS_NEGOTIATION |
0x70000213 | WININET_HTTPS_SERVER_CERT_ERROR |
WININET_HTTPS_SERVER_CERT_ERROR |
0x70000214 | WININET_HTTPS_SERVER_CERT_VALIDATED |
WININET_HTTPS_SERVER_CERT_VALIDATED |
0x70000215 | WININET_HTTPS_CLIENT_CERT_REQUIRED |
WININET_HTTPS_CLIENT_CERT_REQUIRED |
0x70000216 | WININET_HTTPS_CLIENT_CERT_UNAVAILABLE |
WININET_HTTPS_CLIENT_CERT_UNAVAILABLE |
0x70000217 | WININET_HTTPS_CLIENT_CERT_SELECTED |
WININET_HTTPS_CLIENT_CERT_SELECTED |
0x70000218 | WININET_HTTPS_RENEGOTIATION |
WININET_HTTPS_RENEGOTIATION |
0x70000219 | WININET_AUTOPROXY_SEARCH |
WININET_AUTOPROXY_SEARCH |
0x7000021A | WININET_AUTOPROXY_DHCP |
WININET_AUTOPROXY_DHCP |
0x7000021B | WININET_AUTOPROXY_DNS |
WININET_AUTOPROXY_DNS |
0x7000021C | WININET_AUTOPROXY_DOWNLOAD |
WININET_AUTOPROXY_DOWNLOAD |
0x7000021D | WININET_AUTOPROXY_FIND_INFO_FOR_URL |
WININET_AUTOPROXY_FIND_INFO_FOR_URL |
0x7000021E | WININET_TEST_EVENT |
WININET_TEST_EVENT |
0x7000021F | WININET_BLOCKING_AUTOPROXY_DETERMINATION |
WININET_BLOCKING_AUTOPROXY_DETERMINATION |
0x70000220 | WININET_TRANSFER |
WININET_TRANSFER |
0x70000221 | WININET_AUTOPROXY_SWPAD |
WININET_AUTOPROXY_SWPAD |
0x70000222 | WININET_REQUEST_HEADER |
WININET_REQUEST_HEADER |
0x70000223 | WININET_RESPONSE_HEADER |
WININET_RESPONSE_HEADER |
0x70000224 | WININET_REQUEST_HEADER_OPTIONAL |
WININET_REQUEST_HEADER_OPTIONAL |
0x70000244 | WININET_AUTOPROXY_PERFTRACK_HOST_IP_LOOKUP |
WININET_AUTOPROXY_PERFTRACK_HOST_IP_LOOKUP |
0x70000245 | WININET_AUTOPROXY_PERFTRACK_SWPAD_LOOKUP |
WININET_AUTOPROXY_PERFTRACK_SWPAD_LOOKUP |
0x70000246 | WININET_AUTOPROXY_PERFTRACK_KNOWN_DETECTION |
WININET_AUTOPROXY_PERFTRACK_KNOWN_DETECTION |
0x70000247 | WININET_AUTOPROXY_PERFTRACK_UNKNOWN_DETECTION |
WININET_AUTOPROXY_PERFTRACK_UNKNOWN_DETECTION |
0x70000248 | WININET_AUTOPROXY_PERFTRACK_SCRIPT_DOWNLOAD |
WININET_AUTOPROXY_PERFTRACK_SCRIPT_DOWNLOAD |
0x7000024B | WININET_AUTOPROXY_PERFTRACK_ALL |
WININET_AUTOPROXY_PERFTRACK_ALL |
0x7000024C | WININET_HTTP_RESPONSE_BODY_READ_ERROR |
WININET_HTTP_RESPONSE_BODY_READ_ERROR |
0x7000024D | WININET_STREAM_DATA_INDICATED |
WININET_STREAM_DATA_INDICATED |
0x7000024E | WININET_APPLICATION_OFFLINE_CHECK |
WININET_APPLICATION_OFFLINE_CHECK |
0x90000001 | Microsoft-Windows-WinINet |
Microsoft-Windows-WinINet |
0xB0000065 | %1 세션 핸들이 만들어졌습니다. UserAgent=%3, AccessType=%5, ProxyList=%7, ProxyBypassList=%9, 플래그=%10 |
Session handle %1 created: UserAgent=%3, AccessType=%5, ProxyList=%7, ProxyBypassList=%9, Flags=%10 |
0xB0000066 | %1 핸들이 InternetOpenURL에 의해 만들어졌습니다. SessionHandle=%2, URL=%4, 헤더=%6, 플래그=%7 |
Handle %1 created by InternetOpenURL: SessionHandle=%2,URL=%4, Headers=%6, Flags=%7 |
0xB0000067 | %1 핸들이 InternetConnect에 의해 만들어졌습니다. SessionHandle=%2, 서버=%4:%5, %7, 플래그=%8 |
Handle %1 created by InternetConnect: SessionHandle=%2, Server=%4:%5, %7, Flags=%8 |
0xB0000068 | %1 요청 핸들이 HttpOpenRequest에 의해 만들어졌습니다. ConnectionHandle=%2, %4, 대상=%6, 버전=%8, 참조 페이지=%10, 미디어 유형=%12, 플래그=%13 |
Request handle %1 created by HttpOpenRequest: ConnectionHandle=%2, %4, Target=%6, Ver=%8, Referrer=%10, Media types=%12, Flags=%13 |
0xB0000069 | %1 핸들을 닫았습니다. |
Handle %1 closed successfully |
0xB000006A | 핸들을 만들지 못했습니다. ParentHandle=%1, 오류=%2 |
Failed to create handle: ParentHandle=%1, Error=%2 |
0xB000006B | %1 핸들을 닫지 못했습니다. 오류=%2 |
Handle %1 failed to close: Error=%2 |
0xB000006C | 요청 핸들 %1 서버 세부 정보: 서버=%3 포트=%4 서비스=%6 |
Request handle %1 Server Details: Server=%3 Port=%4 Service=%6 |
0xB00000C8 | HTTP 요청을 API로부터 받았습니다. RequestHandle=%1 |
HTTP request was received from API: RequestHandle=%1 |
0xB00000C9 | HTTP 요청이 전송되었습니다. RequestHandle=%1, SocketHandle=%2, %4, CookieSent= %5 |
HTTP request was sent successfully: RequestHandle=%1, SocketHandle=%2, %4, CookieSent= %5 |
0xB00000CA | HTTP 요청을 보내지 못했습니다. 핸들=%1, 오류=%2 |
HTTP request send failed: Handle=%1, Error=%2 |
0xB00000CB | HTTP 응답(%1)을 받았습니다. RequestHandle=%2, SocketHandle=%3, %5, ContentLength=%7 |
HTTP response (%1) received: RequestHandle=%2, SocketHandle=%3, %5, ContentLength=%7 |
0xB00000CC | HTTP 응답을 받지 못했습니다. 핸들=%1, 오류=%2 |
HTTP response failed: Handle=%1, Error=%2 |
0xB00000CD | HTTP 연결(핸들=%1, SocketHandle=%2)이 다음 이유 때문에 닫혔습니다. %4 |
HTTP connection (Handle=%1, SocketHandle=%2) closed due to the following reason: %4 |
0xB00000CE | Keep-alive 연결이 다시 사용되었습니다. ConnectionHandle=%1, SocketHandle=%2 |
Keep-alive connection is re-used: ConnectionHandle=%1, SocketHandle=%2 |
0xB00000CF | 연결이 Keep-Alive 풀로 반환되었습니다. RequestHandle=%1, SocketHandle=%2 |
Connection is returned to keep-alive pool: RequestHandle=%1, SocketHandle=%2 |
0xB00000D0 | Keep-alive 연결이 닫혔습니다. ConnectionHandle=%1, SocketHandle=%2 |
Keep-alive connection is closed: ConnectionHandle=%1, SocketHandle=%2 |
0xB00000D1 | HTTP 응답 엔터티 본문을 받았습니다. RequestHandle=%1 |
HTTP response entity body received: RequestHandle=%1 |
0xB00000D2 | HTTP 요청 헤더 RequestHandle=%1 %3 |
HTTP Request Headers RequestHandle=%1 %3 |
0xB00000D3 | HTTP 응답 헤더 RequestHandle=%1 %3 |
HTTP Response Headers RequestHandle=%1 %3 |
0xB00000D4 | HTTP 요청 헤더 OptionalData RequestHandle=%1 %3 |
HTTP Request Headers OptionalData RequestHandle=%1 %3 |
0xB00000D5 | WinInet::Http 응답 엔터티 본문 수신 실패: 요청 핸들=%1, 오류=%2 |
WinInet::Http response entity body receive failed: Request Handle=%1, Error=%2 |
0xB000012D | %2 서버로 TCP 연결이 설정되었습니다. ConnectionHandle=%3, SocketHandle=%4, LocalPort=%5 |
TCP connection to server %2 established: ConnectionHandle=%3, SocketHandle=%4, LocalPort=%5 |
0xB000012E | %3 연결 핸들에 대한 %2(으)로 TCP 연결이 설정되지 못했습니다. 오류=%4 |
TCP connection to %2 for connection handle %3 failed: Error=%4 |
0xB000012F | TCP 연결이 닫혔습니다. SocketHandle=%1 |
TCP connection closed successfully: SocketHandle=%1 |
0xB0000130 | %2 호스트 이름에 대한 DNS 쿼리가 전송되었습니다. 핸들=%3 |
DNS query for %2 hostname is sent: Handle=%3 |
0xB0000131 | %2 호스트 이름에 대한 DNS 쿼리가 완료되었습니다. 핸들=%3, 주소=%5 |
DNS query for %2 hostname is complete: Handle=%3, Addresses=%5 |
0xB0000132 | %2 호스트 이름에 대한 DNS 쿼리가 실패했습니다. 핸들=%3 오류=%4 |
DNS query for %2 hostname failed: Handle=%3 Error=%4 |
0xB0000133 | 재사용된 DNS 캐시, %2 호스트 이름에 대한 쿼리가 완료되었습니다. 핸들=%3, 주소=%5 |
Re-used DNS cache, query for %2 hostname is complete: Handle=%3, Addresses=%5 |
0xB0000134 | 네트워크 변경을 감지했습니다. 핸들=%1 |
A network change was detected: Handle=%1 |
0xB00001F5 | 쿠키 헤더가 포함된 응답을 받았습니다. URL=%2 |
Received response including a cookie header: URL=%2 |
0xB00001F6 | 클라이언트가 쿠키 보관함에 쿠키를 저장했습니다. 도메인=%2, 경로=%4, 이름=%6, 값=%8 |
Client has stored a cookie in the cookie jar: Domain=%2, Path=%4, Name=%6, Value=%8 |
0xB00001F7 | 클라이언트가 쿠키 보관함의 쿠키를 삭제했습니다. 도메인=%2, 경로=%4, 이름=%6, 값=%8 |
Client has deleted a cookie in the cookie jar: Domain=%2, Path=%4, Name=%6, Value=%8 |
0xB00001F8 | 클라이언트에서 서버가 보낸 쿠키를 거부했습니다. 도메인=%2, 경로=%4, 이름=%6, 값=%8 |
Client has rejected a cookie sent by the server: Domain=%2, Path=%4, Name=%6, Value=%8 |
0xB00001F9 | 서버 쿠키가 클라이언트의 P3P 정책에 의해 거부되었습니다. 도메인=%2, 경로=%4, 이름=%6, 값=%8 |
Server cookie was rejected by the client's P3P policy: Domain=%2, Path=%4, Name=%6, Value=%8 |
0xB00001FA | 요청에 대해 쿠키 헤더를 만들었습니다. URL=%2 |
A cookie header was created for the request: URL=%2 |
0xB00001FB | 요청 헤더에 쿠키를 추가했습니다. 도메인=%2, 경로=%4, 이름=%6, 값=%8 |
Cookie added to the request header: Domain=%2, Path=%4, Name=%6, Value=%8 |
0xB0000259 | 인증 응답을 받았습니다. RequestHandle=%1, 구성표=%3, IsProxy=%4 |
Auth response received: RequestHandle=%1, Scheme=%3, IsProxy=%4 |
0xB000025A | 클라이언트가 사용자 이름을 설정합니다. RequestHandle=%1, IsProxy=%2 |
Client sets username: RequestHandle=%1, IsProxy=%2 |
0xB000025B | 클라이언트가 암호를 설정합니다. RequestHandle=%1, IsProxy=%2 |
Client sets password: RequestHandle=%1, IsProxy=%2 |
0xB000025C | 캐시된 자격 증명을 사용합니다. RequestHandle=%1, IsProxy=%2 |
Using cached credentials: RequestHandle=%1, IsProxy=%2 |
0xB000025D | 기본 자격 증명을 사용합니다. RequestHandle=%1, IsProxy=%2 |
Using default credentials: RequestHandle=%1, IsProxy=%2 |
0xB000025E | 클라이언트가 HTTP 요청에 권한 부여 헤더를 추가합니다. RequestHandle=%1, 구성표=%3, IsProxy=%4 |
Client adds authorization headers to an HTTP request: RequestHandle=%1, Scheme=%3, IsProxy=%4 |
0xB00002BD | 클라이언트가 SSL 협상을 시작합니다. RequestHandle=%1 |
Client begins SSL negotiation: RequestHandle=%1 |
0xB00002BE | 클라이언트와 서버 간의 SSL 협상을 성공적으로 완료했습니다. RequestHandle=%1 |
SSL negotiation between client and server has completed successfully: RequestHandle=%1 |
0xB00002BF | SSL 협상에 실패했습니다. RequestHandle=%1, 오류=%2 |
SSL negotiation failed: RequestHandle=%1, Error=%2 |
0xB00002C0 | 서버 인증서의 유효성을 검사하는 동안 오류가 발생했습니다(SCHANNEL 오류). RequestHandle=%1, 오류=%2 |
Error validating server certificate (SCHANNEL error): RequestHandle=%1, Error=%2 |
0xB00002C1 | 서버 인증서의 유효성을 검사했습니다. RequestHandle=%1, CertHash=%3, WarningFlags=%4 |
Server certificate validated: RequestHandle=%1, CertHash=%3, WarningFlags=%4 |
0xB00002C2 | 클라이언트 권한 부여를 위해 서버에 클라이언트 인증서가 필요합니다. RequestHandle=%1 |
Server requires a client certificate for client authorization: RequestHandle=%1 |
0xB00002C3 | 사용 가능한 클라이언트 인증서가 없습니다. RequestHandle=%1 |
There is no client certificate available: RequestHandle=%1 |
0xB00002C4 | 선택한 클라이언트 인증서가 SSL 트랜잭션에 사용됩니다. RequestHandle=%1, CertHash=%3 |
The selected client certificate will be used for the SSL transaction: RequestHandle=%1, CertHash=%3 |
0xB00002C7 | 클라이언트가 SSL 다시 협상을 시작합니다. RequestHandle=%1 |
Client begins SSL renegotiation: RequestHandle=%1 |
0xB00002C8 | 클라이언트와 서버 간의 SSL 다시 협상을 성공적으로 완료했습니다. RequestHandle=%1 |
SSL renegotiation between client and server has completed successfully: RequestHandle=%1 |
0xB00002C9 | SSL 다시 협상에 실패했습니다. RequestHandle=%1, 오류=%2 |
SSL renegotiation failed: RequestHandle=%1, Error=%2 |
0xB0000321 | 클라이언트가 WPAD 구성 파일을 찾기 시작합니다. ConnectionName=%2, DetectFlags=%3 |
Client begins attempts to locate the WPAD configuration file: ConnectionName=%2, DetectFlags=%3 |
0xB0000322 | DHCP를 사용하여 구성 파일 검색을 시작합니다. 인터페이스=%2 |
Begin search for configuration file using DHCP: Interface=%2 |
0xB0000323 | DHCP를 사용하여 WPAD 구성 파일을 찾았습니다. 인터페이스=%2, ConfigurationURL=%4 |
WPAD configuration file found using DHCP: Interface=%2, ConfigurationURL=%4 |
0xB0000324 | DHCP를 사용하여 WPAD 구성 파일을 검색하지 못했습니다. 인터페이스=%2, ConfigurationURL=%4, 오류=%5 |
Search for WPAD configuration file using DHCP failed: Interface=%2, ConfigurationURL=%4, Error=%5 |
0xB0000325 | DNS를 사용하여 구성 파일 검색을 시작합니다. DetectFlags=%1 |
Begin search for configuration file using DNS: DetectFlags=%1 |
0xB0000326 | DNS를 사용하여 WPAD 구성 파일을 찾았습니다. ConfigurationURL=%2, DetectFlags=%3 |
WPAD configuration file found using DNS: ConfigurationURL=%2, DetectFlags=%3 |
0xB0000327 | DNS를 사용하여 WPAD 구성 파일을 검색하지 못했습니다. DetectFlags=%1, 오류=%2 |
Search for WPAD configuration file using DNS failed: DetectFlags=%1, Error=%2 |
0xB0000328 | WPAD 구성 파일을 검색하지 못했습니다. 오류=%1 |
Search for WPAD configruation file failed: Error=%1 |
0xB0000329 | 구성 URL에서 구성 파일 다운로드를 시작합니다. ConfigurationURL=%2 |
Begin downloading the configuration file from the configuration URL: ConfigurationURL=%2 |
0xB000032A | 클라이언트가 구성 URL에서 구성 파일을 다운로드했습니다. ConfigurationURL=%2 |
Client successfully downloaded the configuration file from the configuration URL: ConfigurationURL=%2 |
0xB000032B | 구성 URL에서 구성 파일을 다운로드하지 못했습니다. ConfigurationURL=%2, 오류=%3 |
Downloading the configuration file from the configuration URL failed: ConfigurationURL=%2, Error=%3 |
0xB000032C | 다운로드한 구성 파일을 사용할 수 없습니다. ConfigurationURL=%2, MIMEType=%4, 오류=%5 |
The downloaded configuration file could not be used: ConfigurationURL=%2, MIMEType=%4, Error=%5 |
0xB000032D | URL에 대한 프록시 정보를 검색하는 중입니다. URL=%2 |
Searching for Proxy Information for the URL: URL=%2 |
0xB000032E | 클라이언트가 지정된 리소스에 액세스하기 위한 프록시 데이터를 검색했습니다. URL=%2, ProxyString=%4 |
Client has successfully retrieved proxy data for accessing a specified resource: URL=%2, ProxyString=%4 |
0xB000032F | URL에 대한 프록시 정보를 찾는 동안 오류가 발생했습니다. URL=%2, 오류=%3 |
Error locating proxy information for the URL: URL=%2, Error=%3 |
0xB0000330 | autoproxy 결정 차단이 시작되었습니다. |
Blocking autoproxy determination started |
0xB0000331 | autoproxy 결정 차단이 중지되었습니다. |
Blocking autoproxy determination stopped |
0xB0000332 | WinInet 작업 전송 이벤트 |
WinInet Activity Transfer Event |
0xB0000333 | AutoProxy SWPAD 결정(%1) NumConnections(%2) |
AutoProxy SWPAD Decision (%1) NumConnections (%2) |
0xB0000334 | Autoproxy 호스트 IP 조회가 시작되었습니다. |
Autoproxy host IP lookup started |
0xB0000335 | Autoproxy 호스트 IP 조회가 중지되었습니다. |
Autoproxy host IP lookup stopped |
0xB0000336 | Autoproxy SWPAD 조회가 시작되었습니다. |
Autoproxy SWPAD lookup started |
0xB0000337 | Autoproxy SWPAD 조회가 중지되었습니다. |
Autoproxy SWPAD lookup stopped |
0xB0000338 | SWPAD가 ON인 Autoproxy 검색이 시작되었습니다. |
Autoproxy Detection with SWPAD ON started |
0xB0000339 | SWPAD가 ON인 Autoproxy 검색이 중지되었습니다. |
Autoproxy Detection with SWPAD ON stopped |
0xB000033A | SWPAD가 UNKNOWN인 Autoproxy 검색이 시작되었습니다. |
Autoproxy Detection with SWPAD UNKNOWN started |
0xB000033B | SWPAD가 UNKNOWN인 Autoproxy 검색이 중지되었습니다. |
Autoproxy Detection with SWPAD UNKNOWN stopped |
0xB000033C | Autoproxy 스크립트 다운로드가 시작되었습니다. |
Autoproxy Script Download Started |
0xB000033D | Autoproxy 스크립트 다운로드가 중지되었습니다. |
Autoproxy Script Download Stopped |
0xB0000342 | Autoproxy 전체 시나리오가 시작되었습니다. |
Autoproxy full scenario started |
0xB0000343 | Autoproxy 전체 시나리오가 중지되었습니다. |
Autoproxy full scenario stopped |
0xB0000385 | 응용 프로그램 오프라인 검사가 시작되었습니다. |
Application offline check started |
0xB0000386 | 응용 프로그램 오프라인 검사가 완료되었습니다. |
Application offline check complete |
0xB0000421 | 요청한 URL=%1 동사=%2 RequestHeaders=%3 ResponseHeaders=%4 상태=%5 캐시=%6 |
Requested URL=%1 Verb=%2 RequestHeaders=%3 ResponseHeaders=%4 Status=%5 Cache=%6 |
0xB0000422 | 청소된 URL=%1 |
Scavenged URL=%1 |
0xB00100C8 | HTTP 요청을 API로부터 받았습니다. RequestHandle=%1, RequestContext=%2 |
HTTP request was received from API: RequestHandle=%1, RequestContext=%2 |
0xB20007D1 | WinINet 요청 헤더 버퍼가 캡처되었습니다. |
The WinINet request header buffer captured |
0xB20007D2 | WinINet 요청 페이로드 버퍼가 캡처되었습니다. |
The WinINet request payload buffer captured |
0xB20007D3 | WinINet 응답 헤더 버퍼가 캡처되었습니다. |
The WinINet response header buffer captured |
0xB20007D4 | WinINet 응답 페이로드 버퍼가 캡처되었습니다. |
The WinINet response payload buffer captured |
0xD0000001 | WPAD_NETWORK_DECISION_OFF |
WPAD_NETWORK_DECISION_OFF |
0xD0000002 | WPAD_NETWORK_DECISION_ON |
WPAD_NETWORK_DECISION_ON |
0xD0000003 | WPAD_NETWORK_DECISION_UNKNOWN |
WPAD_NETWORK_DECISION_UNKNOWN |
0xD0000004 | Missed |
Missed |
0xD0000005 | Hit |
Hit |
0xD0000006 | 부실-수정됨 |
Stale-Modified |
0xD0000007 | Stale-NotModified |
Stale-NotModified |
0xD0000008 | HTTP |
HTTP |
0xD0000009 | SPDY3 |
SPDY3 |
0xD000000A | 캡처된 헤더 또는 페이로드의 시작 조각 |
Start fragment of captured header or payload |
0xD000000B | 캡처된 헤더 또는 페이로드의 끝 조각 |
End fragment of captured header or payload |