Merge remote-tracking branch 'redux/master' into sh4-pool
[tamarin-stm.git] / localization / ko / ErrorConstants.xml
blobe15db49ba07f4ffb9c4954064728aaafd6d99178
1 <?xml version='1.0' encoding='utf-8' standalone='no' ?>
2 <!-- -*- Mode: xml; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- -->
3 <!-- vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) -->
4 <!-- ***** BEGIN LICENSE BLOCK *****
5  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6  *
7  * The contents of this file are subject to the Mozilla Public License Version
8  * 1.1 (the "License"); you may not use this file except in compliance with
9  * the License. You may obtain a copy of the License at
10  * http://www.mozilla.org/MPL/
11  *
12  * Software distributed under the License is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14  * for the specific language governing rights and limitations under the
15  * License.
16  *
17  * The Original Code is [Open Source Virtual Machine.].
18  *
19  * The Initial Developer of the Original Code is
20  * Adobe System Incorporated.
21  * Portions created by the Initial Developer are Copyright (C) 2004-2006
22  * the Initial Developer. All Rights Reserved.
23  *
24  * Contributor(s):
25  *   Adobe AS3 Team
26  *
27  * Alternatively, the contents of this file may be used under the terms of
28  * either the GNU General Public License Version 2 or later (the "GPL"), or
29  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30  * in which case the provisions of the GPL or the LGPL are applicable instead
31  * of those above. If you wish to allow use of your version of this file only
32  * under the terms of either the GPL or the LGPL, and not to allow others to
33  * use your version of this file under the terms of the MPL, indicate your
34  * decision by deleting the provisions above and replace them with the notice
35  * and other provisions required by the GPL or the LGPL. If you do not delete
36  * the provisions above, a recipient may use your version of this file under
37  * the terms of any one of the MPL, the GPL or the LGPL.
38  *
39  * ***** END LICENSE BLOCK ***** -->
41 <errors>  This table contains all of the error messages generated by core
42   avmplus.  This will likely be replaced by a resource table
43   for easy localization.
44   %o = ScriptObject*
45   %t = Traits*
46   %m = MethodInfo*
47   %n = Multiname (name portion only)
48   %N = Multiname (namespace portion only)
49   %a = Atom
50   %d = int
51   %f = double
52   %S = Stringp
53   %s = char*
55   <error id="1000" label="kOutOfMemoryError">
56     시스템의 메모리가 부족합니다.
57     <description><![CDATA[
58         Flash Player needs more memory to compile your code than your system has available.
59         Close some of the applications or processes running on your system.
60     ]]></description></error>
62   <error id="1001" label="kNotImplementedError">메서드 %1이(가) 구현되지 않습니다.</error>
63   <error id="1002" label="kInvalidPrecisionError">
64     정밀도 인수는 %2과 %3 사이의 값이어야 합니다. %1은(는) 유효하지 않습니다.
65     <description><![CDATA[
66         You specified a value that is not within the expected range of the <code>precision</code> argument. Number.toPrecision has a range of 1 to 21. Number.toFixed and Number.toExponential have a range of 0 to 20.
67     ]]></description></error>
69   <error id="1003" label="kInvalidRadixError">
70     기수 인수는 2와 36 사이의 값이어야 하지만 %1입니다.
71     <description><![CDATA[
72         You passed a value less than 2 or greater than 36 for the <code>radix</code> argument of a method or property.
73         Pass a value between 2 and 36 as a <code>radix</code> argument.
74     ]]></description>  </error>
75   <error id="1004" label="kInvokeOnIncompatibleObjectError">
76     호환되지 않는 객체에서 메서드 %1을(를) 호출했습니다.
77     <description><![CDATA[
78         You tried to call a method that is not available to the specified object. This error occurs when
79         you have copied a prototype function from one object to another, and then invoked it, but the
80         target object is not the same type as the original object. Ensure that the target object and
81         original object are the same type. See the ECMAScript Language Specification, 3rd Edition, Chapter 15 for more details.
82     ]]></description></error>
84   <!-- ISSUE jsshell reports "invalid array length" -->
85 <error id="1005" label="kArrayIndexNotIntegerError">
86     배열 인덱스가 양의 정수(%1)가 아닙니다.
87     <description><![CDATA[
88         You tried to access a member of an array using an index value that is not a positive integer. Pass only positive integers as index values for arrays.
89     ]]></description></error>
92 <error id="1006" label="kCallOfNonFunctionError">
93     %1은(는) 함수가 아닙니다.
94     <description><![CDATA[
95         This error occurs when you attempt to call a function that does not exist.
96         Make sure you are calling the correct function, and that the API has
97         not changed from ActionScript 2.0. Also, make sure you are using the correct
98         object. For example, you will see this error when you use the following code
99         (because the last line mistakenly calls the variable <code>big</code> instead
100         of <code>blg</code>):
102         <pre><code>var blg:String = "foo";
103 var big:Sprite = new Sprite();
104 var error:int = big.length(); </code></pre>
105     ]]></description></error>
106   <error id="1007" label="kConstructOfNonFunctionError">비생성자에서 인스턴스화를 시도했습니다.</error>
107   <error id="1008" label="kAmbiguousBindingError">%1은(는) 모호합니다. 일치하는 바인딩이 두 개 이상 있습니다.</error>
108   <error id="1009" label="kConvertNullToObjectError">
109     null 객체 참조의 속성이나 메서드에 액세스할 수 없습니다.
110     <description><![CDATA[
111     An object that evaluates to <code>null</code> can have no properties. This error can occur in some unexpected
112     (though valid) situations. For example, consider the following code, which creates a Sprite
113     object. Because this Sprite object is never added to the display list (through the
114     <code>addChild()</code> method of a DisplayObjectContainer object), its <code>stage</code>
115     property is set to <code>null</code>. Thus, the example generates this error because Sprite object's <code>stage</code> property
116     cannot have any properties:
118     <pre><code>import flash.display.Sprite;
119 var sprite1:Sprite = new Sprite();
120 var q:String = sprite1.stage.quality;</code></pre>
121     ]]></description></error>
123   <error id="1010" label="kConvertUndefinedToObjectError">
124     정의되지 않은 용어이며 속성이 없습니다.
125     <description><![CDATA[
126         This error can occur if you try to access a property of an object that does not exist. For example:
127         <pre><code>var obj:Object = new Object();
128 obj.a = "foo";
129 trace(obj.b.prop);</code></pre>
131         <p>You can also see this error because of a misspelling, for example in the following, where
132         <code>mc</code> represents a MovieClip object in the display list, and the <code>stage</code>
133         property is misspelled with a capital S (it should be <code>stage</code>):</p>
135         <pre><code>trace(mc.Stage.quality);</code></pre>
138     ]]></description></error>
139   <error id="1011" label="kIllegalOpcodeError">
140     메서드 %1은(는) 잘못된 opcode %2을(를) 포함하고 있습니다(오프셋 %3에 있음).
141     <description><![CDATA[
142         See the <a href="#note">note</a> at the bottom of this table.&#42;
143     ]]></description></error>
145   <error id="1012" label="kLastInstExceedsCodeSizeError">
146     마지막 명령이 코드 크기를 초과했습니다.
147     <description><![CDATA[
148         See the <a href="#note">note</a> at the bottom of this table.&#42;
149     ]]></description></error>
151    <error id="1013" label="kFindVarWithNoScopeError">
152     scopeDepth가 0이면 OP_findproperty를 호출할 수 없습니다.
153     <description><![CDATA[
154         See the <a href="#note">note</a> at the bottom of this table.&#42;
155     ]]></description></error>
157    <error id="1014" label="kClassNotFoundError">클래스 %1을(를) 찾을 수 없습니다.</error>
158    <error id="1015" label="kIllegalSetDxns">
159     메서드 %1은(는) 기본 xml 네임스페이스를 설정할 수 없습니다.
160     <description><![CDATA[
161         See the <a href="#note">note</a> at the bottom of this table.&#42;
162     ]]></description></error>
164    <error id="1016" label="kDescendentsError">하위 연산자(..)는 %1 유형에서 지원되지 않습니다.</error>
165    <error id="1017" label="kScopeStackOverflowError">
166     범위 스택 오버플로가 발생했습니다.
167     <description><![CDATA[
168         See the <a href="#note">note</a> at the bottom of this table.&#42;
169     ]]></description></error>
171    <error id="1018" label="kScopeStackUnderflowError">
172     범위 스택 언더플로가 발생했습니다.
173     <description><![CDATA[
174         See the <a href="#note">note</a> at the bottom of this table.&#42;
175     ]]></description></error>
177    <error id="1019" label="kGetScopeObjectBoundsError">
178     Getscopeobject %1이(가) 범위를 벗어났습니다.
179     <description><![CDATA[
180         See the <a href="#note">note</a> at the bottom of this table.&#42;
181     ]]></description></error>
182    <error id="1020" label="kCannotFallOffMethodError">
183     코드는 메서드 끝 부분을 벗어날 수 없습니다.
184     <description><![CDATA[
185         See the <a href="#note">note</a> at the bottom of this table.&#42;
186     ]]></description></error>
188    <error id="1021" label="kInvalidBranchTargetError">
189     적어도 하나의 분기 대상이 메서드의 유효한 명령에 있지 않습니다.
190     <description><![CDATA[
191         See the <a href="#note">note</a> at the bottom of this table.&#42;
192     ]]></description></error>
194    <error id="1022" label="kIllegalVoidError">
195     void 형식은 함수 반환 형식으로만 사용할 수 있습니다.
196     <description><![CDATA[
197         See the <a href="#note">note</a> at the bottom of this table.&#42;
198     ]]></description></error>
200    <error id="1023" label="kStackOverflowError">
201     스택 오버플로가 발생했습니다.
202     <description><![CDATA[
203         See the <a href="#note">note</a> at the bottom of this table.&#42;
204     ]]></description></error>
206   <error id="1024" label="kStackUnderflowError">
207     스택 언더플로가 발생했습니다.
208     <description><![CDATA[
209         See the <a href="#note">note</a> at the bottom of this table.&#42;
210     ]]></description></error>
212   <error id="1025" label="kInvalidRegisterError">
213     유효하지 않은 레지스터 %1을(를) 액세스했습니다.
214     <description><![CDATA[
215         See the <a href="#note">note</a> at the bottom of this table.&#42;
216     ]]></description></error>
218   <error id="1026" label="kSlotExceedsCountError">
219     슬롯 %1이(가) %3의 slotCount=%2을(를) 초과했습니다.
220     <description><![CDATA[
221         See the <a href="#note">note</a> at the bottom of this table.&#42;
222     ]]></description></error>
224   <error id="1027" label="kMethodInfoExceedsCountError">
225     Method_info %1이(가) method_count=%2을(를) 초과했습니다.
226     <description><![CDATA[
227         See the <a href="#note">note</a> at the bottom of this table.&#42;
228     ]]></description></error>
230   <error id="1028" label="kDispIdExceedsCountError">
231     Disp_id %1이(가) %3의 max_disp_id=%2을(를) 초과했습니다.
232     <description><![CDATA[
233         See the <a href="#note">note</a> at the bottom of this table.&#42;
234     ]]></description></error>
236   <error id="1029" label="kDispIdUndefinedError">
237     Disp_id %1이(가) %2에 정의되어 있지 않습니다.
238     <description><![CDATA[
239         See the <a href="#note">note</a> at the bottom of this table.&#42;
240     ]]></description></error>
242   <error id="1030" label="kStackDepthUnbalancedError">
243     스택 깊이의 균형이 맞지 않습니다. %1 != %2
244     <description><![CDATA[
245         See the <a href="#note">note</a> at the bottom of this table.&#42;
246     ]]></description></error>
248   <error id="1031" label="kScopeDepthUnbalancedError">
249     범위 심도의 균형이 맞지 않습니다. %1 != %2
250     <description><![CDATA[
251         See the <a href="#note">note</a> at the bottom of this table.&#42;
252     ]]></description></error>
254    <error id="1032" label="kCpoolIndexRangeError">
255     Cpool 인덱스 %1이(가) 범위 %2을(를) 벗어났습니다.
256     <description><![CDATA[
257         See the <a href="#note">note</a> at the bottom of this table.&#42;
258     ]]></description></error>
260    <error id="1033" label="kCpoolEntryWrongTypeError">Cpool 항목 %1은(는) 잘못된 유형입니다.<description><![CDATA[
261         See the <a href="#note">note</a> at the bottom of this table.&#42;
262     ]]></description></error>
264    <error id="1034" label="kCheckTypeFailedError">유형 강제 변환에 실패했습니다. %1을(를) %2(으)로 변환할 수 없습니다.</error>
266    <error id="1035" label="kIllegalSuperCallError">
267     메서드 %1에 잘못된 super 표현식이 있습니다.
268     <description><![CDATA[
269         See the <a href="#note">note</a> at the bottom of this table.&#42;
270     ]]></description></error>
272    <!-- <error id="1036" label="kUncaughtExceptionWarning">The VM exited due to an uncaught exception.</error> -->
274    <error id="1037" label="kCannotAssignToMethodError">
275     %2의 메서드 %1에 할당할 수 없습니다.
276     <description><![CDATA[
277         See the <a href="#note">note</a> at the bottom of this table.&#42;
278     ]]></description></error>
281 <error id="1038" label="kRedefinedError">
282     %1이(가) 이미 정의되어 있습니다.
283     <description><![CDATA[
284         You cannot declare a variable or function with the same identifier name more than once
285         within the same scope.
286         In ActionScript 3.0, different code blocks (such as those used in two <code>for</code> loops
287         in the same <code>function</code> definition) are considered to be in the same scope.
288         See the <a href="#note">note</a> at the bottom of this table.&#42;
289     ]]></description></error>
291   <error id="1039" label="kCannotVerifyUntilReferencedError">
292     참조할 때까지 메서드를 확인할 수 없습니다.
293     <description><![CDATA[
294         See the <a href="#note">note</a> at the bottom of this table.&#42;
295     ]]></description></error>
297    <error id="1040" label="kCantUseInstanceofOnNonObjectError">
298     instanceof의 오른쪽은 클래스 또는 함수여야 합니다.
299     <description><![CDATA[
300         The expression on the right side of the <code>instanceof</code> operator must be a class or function.
301     ]]></description></error>
302   <error id="1041" label="kIsTypeMustBeClassError">
303     연산자의 오른쪽은 클래스여야 합니다.
304     <description><![CDATA[
305         The expression on the right side of the <code>is</code> operator must be a class.
306     ]]></description></error>
307    <error id="1042" label="kInvalidMagicError">
308     ABC 파일이 아닙니다. major_version=%1 minor_version=%2
309     <description><![CDATA[
310 You are attempting to use an  invalid file with the player: the tool that generates the SWF may be out of date or the SWF itself may be corrupt.
311     ]]></description></error>
312    <error id="1043" label="kInvalidCodeLengthError">
313     code_length=%1이(가) 유효하지 않습니다.
314     <description><![CDATA[
315         See the <a href="#note">note</a> at the bottom of this table.&#42;
316     ]]></description></error>
318    <error id="1044" label="kInvalidMethodInfoFlagsError">
319     flags=%1을(를) 지원하지 않는 MethodInfo-%2입니다.
320     <description><![CDATA[
321         See the <a href="#note">note</a> at the bottom of this table.&#42;
322     ]]></description></error>
325  <error id="1045" label="kUnsupportedTraitsKindError">
326     traits kind=%1을(를) 지원하지 않습니다.
327     <description><![CDATA[
328         See the <a href="#note">note</a> at the bottom of this table.&#42;
329     ]]></description></error>
331    <error id="1046" label="kMethodInfoOrderError">
332     정의하기 전에 MethodInfo-%1을(를) 참조합니다.
333     <description><![CDATA[
334         See the <a href="#note">note</a> at the bottom of this table.&#42;
335     ]]></description></error>
337    <error id="1047" label="kMissingEntryPointError">
338     진입점을 찾을 수 없습니다.
339     <description><![CDATA[
340         See the <a href="#note">note</a> at the bottom of this table.&#42;
341     ]]></description></error>
342    <!--<error id="1048" label="kNativeMethodNotFoundError">Native method not found: %a.</error>-->
344    <error id="1049" label="kPrototypeTypeError">
345     프로토타입 객체는 vanilla 객체여야 합니다.
346     <description><![CDATA[
347         See the <a href="#note">note</a> at the bottom of this table.&#42;
348     ]]></description></error>
350    <error id="1050" label="kConvertToPrimitiveError">
351     %1을(를) 원시 값으로 변환할 수 없습니다.
352     <description><![CDATA[
353         See the <a href="#note">note</a> at the bottom of this table.&#42;
354     ]]></description></error>
356    <error id="1051" label="kIllegalEarlyBindingError">
357     %1에 대한 초기 바인딩 액세스가 잘못되었습니다.
358     <description><![CDATA[
359         See the <a href="#note">note</a> at the bottom of this table.&#42;
360     ]]></description></error>
362    <error id="1052" label="kInvalidURIError">
363     %1 함수에 유효하지 않은 URI가 전달되었습니다.
364     <description><![CDATA[
365         See the <a href="#note">note</a> at the bottom of this table.&#42;
366     ]]></description></error>
368    <error id="1053" label="kIllegalOverrideError">
369     %2의 %1에 대한 재정의가 잘못되었습니다.
370     <description><![CDATA[
371         See the <a href="#note">note</a> at the bottom of this table.&#42;
372     ]]></description></error>
374    <error id="1054" label="kIllegalExceptionHandlerError">
375     예외 핸들러의 범위 또는 대상 오프셋이 잘못되었습니다.
376     <description><![CDATA[
377         See the <a href="#note">note</a> at the bottom of this table.&#42;
378     ]]></description></error>
379  <!-- obsolete
380   <error id="1055" label="kHasNoPropertiesTypeError">%S has no properties</error>
381   -->
382   <error id="1056" label="kWriteSealedError">
383     %2에 속성 %1을(를) 만들 수 없습니다.
384     <description><![CDATA[
385     You are trying to assign a value to a nonexistent property on an instance of a non-dynamic
386     class. This is only possible for instances of dynamic classes]]></description></error>
388  <error id="1057" label="kIllegalSlotError">
389     %1은(는) 메서드만 포함할 수 있습니다.
390     <description><![CDATA[
391         See the <a href="#note">note</a> at the bottom of this table.&#42;
392     ]]></description></error>
394    <error id="1058" label="kIllegalOperandTypeError">
395     피연산자 유형이 잘못되었습니다. %1은(는) %2이어야 합니다.
396     <description><![CDATA[
397         See the <a href="#note">note</a> at the bottom of this table.&#42;
398     ]]></description></error>
400    <error id="1059" label="kClassInfoOrderError">
401     정의하기 전에 ClassInfo-%1을(를) 참조합니다.
402     <description><![CDATA[
403         See the <a href="#note">note</a> at the bottom of this table.&#42;
404     ]]></description></error>
406   <error id="1060" label="kClassInfoExceedsCountError">
407     ClassInfo %1이(가) class_count=%2을(를) 초과했습니다.
408     <description><![CDATA[
409         See the <a href="#note">note</a> at the bottom of this table.&#42;
410     ]]></description></error>
413 <error id="1061" label="kNumberOutOfRangeError">
414     정밀도의 손상 없이는 값 %1을(를) %2(으)로 변환할 수 없습니다.
415     <description><![CDATA[
417         This error appears if you attempt to assign a decimal number to a property that has data type
418         int.
420         <p>This error also appears for out-of-range assignments, such as the following:</p>
422         <pre><code>var m0:int = 2147483648; // int.MAX_VALUE == 2147483647</code></pre>
423         <p>You can also see this error when using the bitwise left shift operator (&lt&lt).
424         For example, consider the following code:</p>
426         <pre><code>var m0:uint = 0xFF;
427 var m1:uint = m0&lt&lt24;</code></pre>
429         <p>The result of left shift operator (&lt&lt) is interpreted as a 32-bit two's complement number
430         with sign. In the example, the result is a negative value, which causes the error when assigned
431         to the uint typed property. A workaround is the following:</p>
433         <pre><code>var m0:uint = 0xFF;
434 var m1:uint = uint(m0&lt;&lt;24);</code></pre>
436     ]]></description></error>
437    <!--<error id="1062" label="kPackageCircularityError">Package %a imported while being defined</error>-->
438   <error id="1063" label="kWrongArgumentCountError">%1에서 인수 개수가 일치하지 않습니다. %2개가 필요하지만 %3개가 있습니다.</error>
439   <error id="1064" label="kCannotCallMethodAsConstructor">
440     메서드 %1을(를) 생성자로 호출할 수 없습니다.
441     <description><![CDATA[
442     Extracted methods are permanently bound to the object they are extracted from.
443     Therefore, they can not later be called as a constructor. For example, the following
444     creates function <code>f()</code> in Class A:
445     <pre><code>class A {
446        function f() {}
447     }</code></pre>
448     In the following code, extracting the function causes no error. However, creating
449     a new instance of the function causes an error.
450     <pre><code>var a = new A()
451     var m = a.f // extract f, don't call it
452     m() // same as a.f()
453     new m() // causes this error</code></pre>
455     ]]></description></error>
456   <error id="1065" label="kUndefinedVarError">
457     변수 %1이(가) 정의되어 있지 않습니다.
458     <description><![CDATA[
459     You are using an undefined lexical reference. For example, in the following statements, the
460     statement <code>trace(x)</code> generates an error because <code>x</code> is undefined. However, the
461     statement <code>trace(y)</code> doesn't generate an error because <code>y</code> is defined:
462     <pre><code>trace("hello world")
463     trace(x) // x is undefined
464     var y
465     trace(y) // No error, y is defined.</code></pre>
466     ]]></description></error>
467   <error id="1066" label="kFunctionConstructorError">
468     양식 함수('함수 본문')는 지원되지 않습니다.
469     <description><![CDATA[
470     Unlike JavaScript, Flash does not compile code on-the-fly using <code>eval()</code> and
471     <code>function()</code>.  Thus, calling these as a constructor in ActionScript 3.0 generates this error.
472     ]]></description></error>
474 <error id="1067" label="kIllegalNativeMethodBodyError">
475     기본 메서드 %1의 메서드 본문이 잘못되었습니다.
476     <description><![CDATA[
477         See the <a href="#note">note</a> at the bottom of this table.&#42;
478     ]]></description></error>
481 <error id="1068" label="kCannotMergeTypesError">
482     %1과(와) %2을(를) 조정할 수 없습니다.
483     <description><![CDATA[
484         See the <a href="#note">note</a> at the bottom of this table.&#42;
485     ]]></description></error>
487    <error id="1069" label="kReadSealedError">
488     %2에서 속성 %1을(를) 찾을 수 없습니다. 기본값이 없습니다.
489     <description><![CDATA[
490     You are referencing an undefined property on a non-dynamic class instance. For example, the following generates this error when it references property
491     <code>x</code>, which is not defined and cannot be created dynamically:
492     <pre><code>class A {} // sealed class, not dynamic
493     trace(new A().x) // no property x defined on A, and A is not dynamic</code></pre>
494     ]]></description></error>
495   <error id="1070" label="kCallNotFoundError">
496     %2에서 메서드 %1을(를) 찾을 수 없습니다.
497     <description><![CDATA[
498     You are using a <code>super</code> statement to call a function, but the function doesn't exist in the super class.
499     For example, the following code generates the error:    <pre><code>class A() {}
500 class B extends A {
501   function f() { trace(super.f()); } // error 1070, there is no f on A
502 }</code></pre>
503     ]]></description></error>
504   <error id="1071" label="kAlreadyBoundError">함수 %1이(가) 이미 %2에 바인딩되었습니다.</error>
506 <error id="1072" label="kZeroDispIdError">
507     Disp_id 0이 잘못되었습니다.
508     <description><![CDATA[
509         See the <a href="#note">note</a> at the bottom of this table.&#42;
510     ]]></description></error>
512    <error id="1073" label="kDuplicateDispIdError">
513     복제된 disp_id %2(으)로 인해 재정의되지 않은 메서드 %1이(가) 대체되었습니다.
514     <description><![CDATA[
515         See the <a href="#note">note</a> at the bottom of this table.&#42;
516     ]]></description></error>
518 <error id="1074" label="kConstWriteError">%2의 읽기 전용 속성 %1에는 쓸 수 없습니다.</error>
519   <error id="1075" label="kMathNotFunctionError">
520     Math는 함수가 아닙니다.
521     <description><![CDATA[
522     You are trying to call <code>math()</code> as a function, but the Math class is a class with static methods.
523     ]]></description></error>
524   <error id="1076" label="kMathNotConstructorError">
525     Math는 생성자가 아닙니다.
526     <description><![CDATA[
527     You can not instantiate the Math class.
528     ]]></description></error>
530   <error id="1077" label="kWriteOnlyError">%2의 쓰기 전용 속성 %1은(는) 읽을 수 없습니다.</error>
531    <error id="1078" label="kIllegalOpMultinameError">
532     잘못된 opcode/multiname 조합입니다. %1&lt;%2&gt;.
533     <description><![CDATA[
534         See the <a href="#note">note</a> at the bottom of this table.&#42;
535     ]]></description></error>
537    <error id="1079" label="kIllegalNativeMethodError">
538     로드된 코드에는 기본 메서드를 사용할 수 없습니다.
539     <description><![CDATA[
540         See the <a href="#note">note</a> at the bottom of this table.&#42;
541     ]]></description></error>
543    <error id="1080" label="kIllegalNamespaceError">
544     네임스페이스의 값이 잘못되었습니다.
545     <description><![CDATA[
546         See the <a href="#note">note</a> at the bottom of this table.&#42;
547     ]]></description></error>
550   <error id="1081" label="kReadSealedErrorNs">속성 %1을(를) %2에서 찾을 수 없습니다. 기본값이 없습니다.</error>
551  <!--<error id="1081" label="kIllegalMultinameCallError">Illegal call to %1</error>-->
553  <error id="1082" label="kNoDefaultNamespaceError">
554     기본 네임스페이스가 설정되지 않았습니다.
555     <description><![CDATA[
556         See the <a href="#note">note</a> at the bottom of this table.&#42;
557     ]]></description></error>
559    <error id="1083" label="kXMLPrefixNotBound">
560     요소 "%2"에 대한 접두어 "%1"이(가) 바인딩되지 않았습니다.
561     <description><![CDATA[
562     An attribute name or element name has a prefix but no matching namespace was
563     found. This statement generates an error because there is no <code>foo</code>
564     namespace to match <code>foo:x</code>:<pre/>&lt;foo:x xmlns:clowns='http://circuscenter.org'&gt;</pre>
565         ]]></description></error>
567   <error id="1084" label="kXMLBadQName">
568     요소 또는 속성("%1")이 QName 생성 규칙과 일치하지 않습니다. QName::=(NCName':')?NCName
569     <description><![CDATA[
570     You have <code>foo: </code> or <code>:foo</code> as an element or attribute name, but there is nothing
571     on the other side of the colon.
572     ]]></description></error>
573   <error id="1085" label="kXMLUnterminatedElementTag">요소 유형 "%1"은(는) 일치하는 끝 태그 "&lt;/%2&gt;"(으)로 끝나야 합니다.</error>
574   <error id="1086" label="kXMLOnlyWorksWithOneItemLists">
575     %1 메서드는 항목 하나를 포함한 목록에서만 작동합니다.
576     <description><![CDATA[
577     The XMLList class propagates the XML-specific functions to one child if it has only one
578     item in its list. If more than one item is in the list, the routines fail with this
579     error. This happens for the following XMLList functions that mimic XML functions:
580     <p><code>addNamespace</code>, <code>appendChild</code>,  <code>childIndex</code>,
581     <code>inScopeNamespaces</code>,  <code>insertChildAfter</code>,  <code>insertChildBefore</code>,
582     <code>name</code>,  <code>namespace</code>,  <code>localName</code>,  <code>namespaceDeclarations</code>,
583     <code>nodeKind</code>,  <code>prependChild</code>,  <code>removeNamespace</code>,  <code>replace</code>,
584     <code>setChildren</code>,  <code>setLocalName</code>,  <code>setName</code>,  and <code>setNamespace.
586     ]]></description></error>
587   <error id="1087" label="kXMLAssignmentToIndexedXMLNotAllowed">인덱싱된 XML에 할당할 수 없습니다.</error>
588   <error id="1088" label="kXMLMarkupMustBeWellFormed">
589     루트 요소 다음에 나오는 문서 내의 태그는 올바른 형식이어야 합니다.
590     <description><![CDATA[
591     These are possible causes of this error:
592     <ul>
593     <li>Parsing an XMLList style object as XML</li>
594     <li>Misbalanced strings</li>
595     </ul>
596     ]]></description></error>
598   <error id="1089" label="kXMLAssigmentOneItemLists">둘 이상의 항목이 있는 목록에 할당이 지원되지 않습니다.</error>
599   <error id="1090" label="kXMLMalformedElement">
600     XML 파서 실패: 요소가 잘못되었습니다.
601     <description><![CDATA[
602     An element name is malformed. This example of an element name is malformed because a
603     trailing right angle bracket <code>></code> is missing:
605     <pre>&lt;a/&gt;&lt;b&gt;&lt;/b</pre>    ]]></description></error>
607   <error id="1091" label="kXMLUnterminatedCData">XML 파서 실패: CDATA 섹션이 종결되지 않았습니다.</error>
608   <error id="1092" label="kXMLUnterminatedXMLDecl">XML 파서 실패: XML 선언이 종결되지 않았습니다.</error>
609   <error id="1093" label="kXMLUnterminatedDocTypeDecl">XML 파서 실패: DOCTYPE 선언이 종결되지 않았습니다.</error>
610   <error id="1094" label="kXMLUnterminatedComment">XML 파서 실패: 주석이 종결되지 않았습니다.</error>
611   <error id="1095" label="kXMLUnterminatedAttribute">XML 파서 실패: 속성이 종결되지 않았습니다.</error>
612   <error id="1096" label="kXMLUnterminatedElement">XML 파서 실패: 요소가 종결되지 않았습니다.</error>
613   <error id="1097" label="kXMLUnterminatedProcessingInstruction">XML 파서 실패: 처리 명령이 종결되지 않았습니다.</error>
614   <error id="1098" label="kXMLNamespaceWithPrefixAndNoURI">
615     네임스페이스 없음에 대한 접두어 %1이(가) 잘못되었습니다.
616     <description><![CDATA[
617     The namespace constructor throws this error if you try to pass in an empty URI with a
618     non-empty prefix as in this example:
620 <pre>ns = new Namespace ("prefix", "");
621     ]]></description></error>
623   <!--<error id="1099" label="kNullArgumentError">Argument %s cannot be null.</error>-->
624   <error id="1100" label="kRegExpFlagsArgumentError">
625     다른 RegExp로부터 하나의 RegExp를 만드는 경우 플래그를 제공할 수 없습니다.
626     <description><![CDATA[
627     Creating a new regular expression from an existing one also copies its flags. To create a regular expression with
628     different flags, use the <code>new</code> operator and set the flags as desired. For example, this statement
629     creates a regular expression and specifies flag settings:
630     <pre><code>var re:RegExp = new RegExp("ali", /s)</code></pre>
631     Alternatively, this statement creates a regular expression that has the same flags as re:
632     <pre><code>var re2:RegExp = new RegExp(re, ...)</code></pre>    ]]></description></error>
634    <error id="1101" label="kNoScopeError">
635     범위를 알 수 없는 메서드 %1은(는) 확인할 수 없습니다.
636     <description><![CDATA[
637         See the <a href="#note">note</a> at the bottom of this table.&#42;
638     ]]></description></error>
640    <error id="1102" label="kIllegalDefaultValue">
641     유형 %1의 기본값이 잘못되었습니다.
642     <description><![CDATA[
643         See the <a href="#note">note</a> at the bottom of this table.&#42;
644     ]]></description></error>
646    <error id="1103" label="kCannotExtendFinalClass">
647     클래스 %1은(는) 최종 기본 클래스를 확장할 수 없습니다.
648     <description><![CDATA[
649         See the <a href="#note">note</a> at the bottom of this table.&#42;
650     ]]></description></error>
652    <error id="1104" label="kXMLDuplicateAttribute">속성 "%1"이(가) 요소 "%2"에 대해 이미 지정되었습니다.</error>
653   <!--<error id="1105" label="kStringIndexOutOfBoundsError">The string index %d is out of bounds; must be in range %d to %d.</error>-->
654   <!--<error id="1106" label="kInvalidRangeError">The range specified is invalid.</error>-->
655   <error id="1107" label="kCorruptABCError">
656     ABC 데이터가 손상되었으며 범위를 벗어나는 읽기를 시도합니다.
657     <description><![CDATA[
658         See the <a href="#note">note</a> at the bottom of this table.&#42;
659     ]]></description></error>
661   <error id="1108" label="kInvalidBaseClassError">
662     OP_newclass opcode가 잘못된 기본 클래스에서 사용되었습니다.
663     <description><![CDATA[
664         See the <a href="#note">note</a> at the bottom of this table.&#42;
665     ]]></description></error>
667   <error id="1109" label="kDanglingFunctionError">
668     언바운드 함수 %1을(를) 메서드 %2(으)로부터 직접 호출하려고 시도합니다.
669     <description><![CDATA[
670         See the <a href="#note">note</a> at the bottom of this table.&#42;
671     ]]></description></error>
673   <error id="1110" label="kCannotExtendError">
674     %1은(는) %2을(를) 확장할 수 없습니다.
675     <description><![CDATA[
676         See the <a href="#note">note</a> at the bottom of this table.&#42;
677     ]]></description></error>
679   <error id="1111" label="kCannotImplementError">
680     %1은(는) %2을(를) 구현할 수 없습니다.
681     <description><![CDATA[
682         See the <a href="#note">note</a> at the bottom of this table.&#42;
683     ]]></description></error>
685    <error id="1112" label="kCoerceArgumentCountError">인수 개수가 클래스 강제 변환 시 일치하지 않습니다.  1개가 필요하지만 %1개가 있습니다.</error>
686    <error id="1113" label="kInvalidNewActivationError">
687     NEED_ACTIVATION 플래그가 없는 메서드에 OP_newactivation이 사용되었습니다.
688     <description><![CDATA[
689         See the <a href="#note">note</a> at the bottom of this table.&#42;
690     ]]></description></error>
692   <error id="1114" label="kNoGlobalScopeError">
693     전역 범위 없이 OP_getglobalslot 또는 OP_setglobalslot이 사용되었습니다.
694     <description><![CDATA[
695         See the <a href="#note">note</a> at the bottom of this table.&#42;
696     ]]></description></error>
698   <error id="1115" label="kNotConstructorError">%1은(는) 생성자가 아닙니다.</error>
699   <error id="1116" label="kApplyError">Function.prototype.apply의 두 번째 인수는 배열이어야 합니다.</error>
700   <error id="1117" label="kXMLInvalidName">잘못된 XML 이름: %1</error>
701   <error id="1118" label="kXMLIllegalCyclicalLoop">노드 사이의 순환 루프가 잘못되었습니다.</error>
702   <error id="1119" label="kDeleteTypeError">유형 %1의 피연산자에 대해서는 Delete 연산자가 지원되지 않습니다.</error>
703   <error id="1120" label="kDeleteSealedError">%2의 속성 %1을(를) 삭제할 수 없습니다.</error>
704   <error id="1121" label="kDuplicateMethodBodyError">메서드 %1에 복제된 메서드 본문이 있습니다.</error>
705    <error id="1122" label="kIllegalInterfaceMethodBodyError">인터페이스 메서드 %1에 잘못된 메서드 본문이 있습니다.</error>
706   <error id="1123" label="kFilterError">유형 %1에서는 필터 연산자가 지원되지 않습니다.</error>
707   <error id="1124" label="kInvalidHasNextError">OP_hasnext2는 개별 레지스터가 되려면 객체 및 인덱스가 있어야 합니다.</error>
708   <error id="1125" label="kOutOfRangeError">인덱스 %1이(가) 범위 %2을(를) 벗어났습니다.</error>
709   <error id="1126" label="kVectorFixedError">고정된 벡터의 길이를 변경할 수 없습니다.</error>
710   <error id="1127" label="kTypeAppOfNonParamType">매개 변수가 없는 유형에서 유형을 적용하려고 했습니다.</error>
711   <error id="1128" label="kWrongTypeArgCountError">%1에 대한 형식 매개 변수의 개수가 잘못되었습니다. %2개가 필요하지만 %3개가 있습니다.</error>
713   <!-- The following errors are specific to the AVM2 command-line shell.-->
714   <error id="1500" hidden="true" label="kFileOpenError">파일 %1을(를) 여는 동안 오류가 발생했습니다.</error>
715   <error id="1501" hidden="true" label="kFileWriteError">
716     파일 %1에 쓰는 동안 오류가 발생했습니다.
717     <description><![CDATA[
718         The file you are writing to cannot be opened. Possibly the filename contains an error, the file is read-only, or
719         you do not have access privileges.
720         ]]></description>
721         </error>
722   <error id="1502" label="kScriptTimeoutError">
723     스크립트 실행 시간이 기본 제한 시간인 15초를 초과했습니다.
724     <description><![CDATA[
725         A script executed after the timeout period. (The default timeout period is 15 seconds.) After this error occurs, the
726         script can continue to execute for 15 seconds more, after which the script terminates and throws run-time error number 1503 (A script failed to exit after 30 seconds and was terminated.)
727     ]]></description>
728  </error>
729   <error id="1503" label="kScriptTerminatedError">
730     스크립트가 30초 후에도 끝나지 않아 종료했습니다.
731     <description><![CDATA[
732       The script was still executing after 30 seconds. Flash Player first throws run-time error number 1502 (A script has executed for longer than the default timeout period of 15 seconds.) if the script executed more than 15
733       seconds, which is the default timeout period. This error occurs 15 seconds after Error 1502 occurs.
734     ]]></description></error>
735      <error id="1504" hidden="true" label="kEndOfFileError">
736     파일의 끝입니다.
737     <description><![CDATA[
738       Flash Player unexpectedly encountered the end of the file. Possibly the file was not saved correctly or Flash Player expected more data
739       in the file.
740     ]]></description>
741   </error>
742   <error id="1505" hidden="true" label="kStringIndexOutOfBoundsError">문자열 인덱스 %1이(가) 범위를 벗어났습니다. %2와 %3 사이의 범위에 있어야 합니다.</error>
743   <error id="1506" hidden="true" label="kInvalidRangeError">
744     유효하지 않은 범위가 지정되었습니다.
745     <description><![CDATA[
746     The method's <code>start</code> parameter is greater than its <code>end</code> parameter.
747     ]]></description></error>
748   <error id="1507" label="kNullArgumentError">인수 %1은(는) null일 수 없습니다.</error>
749   <error id="1508" label="kInvalidArgumentError">
750     인수 %1에 지정된 값이 유효하지 않습니다.
751     <description><![CDATA[
752     You are possibly trying to pass the wrong data type. For example, the code
753     <pre><code>public function doSomething(const:int):void {
754     }
755     this ["doSomething"] ("str")</code></pre>
756     generates an error at runtime because <code>doSomething</code> is cast as an int data type. ]]></description></error>
758   <error id="1510" label="kArrayFilterNonNullObjectError">콜백 인수가 클래스의 메서드인 경우 선택적 인수 'this'는 null이어야 합니다.</error>
759   <error id="2006" label="kParamRangeError">제공된 인덱스가 범위를 벗어났습니다.</error>
760   <error id="2007" label="kNullPointerError">매개 변수 %1은(는) null이 아니어야 합니다.</error>
761   <error id="2008" label="kInvalidEnumError">매개 변수 %1은(는) 허용된 값 중 하나여야 합니다.</error>
762   <error id="2012" label="kCantInstantiateError">%1 클래스를 인스턴스화할 수 없습니다.</error>
763   <error id="2030" label="kEOFError">파일의 끝입니다.</error>
764   <error id="2058" label="kCompressedDataError">데이터의 압축을 푸는 동안 오류가 발생했습니다.</error>
765 </errors>