From e00270a8b20fb1c8a71b734a000a285373f91c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Iv=C4=83ncescu?= Date: Mon, 12 Feb 2024 17:47:12 +0200 Subject: [PATCH] jscript: Implement ArrayBuffer.prototype.slice. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gabriel Ivăncescu --- dlls/jscript/arraybuf.c | 48 ++++++++++++++++++++++++++++++++++++++-- dlls/jscript/error.c | 1 + dlls/jscript/jscript.h | 1 + dlls/jscript/jscript.rc | 1 + dlls/jscript/resource.h | 1 + dlls/mshtml/tests/es5.js | 46 +++++++++++++++++++++++++++++++++++++- po/ar.po | 12 +++++++--- po/ast.po | 10 ++++++--- po/bg.po | 10 ++++++--- po/ca.po | 12 +++++++--- po/cs.po | 12 +++++++--- po/da.po | 12 +++++++--- po/de.po | 12 +++++++--- po/el.po | 10 ++++++--- po/en.po | 10 ++++++--- po/en_US.po | 10 ++++++--- po/eo.po | 10 ++++++--- po/es.po | 12 +++++++--- po/fa.po | 10 ++++++--- po/fi.po | 12 +++++++--- po/fr.po | 12 +++++++--- po/he.po | 10 ++++++--- po/hi.po | 10 ++++++--- po/hr.po | 12 +++++++--- po/hu.po | 12 +++++++--- po/it.po | 12 +++++++--- po/ja.po | 12 +++++++--- po/ka.po | 12 +++++++--- po/ko.po | 12 +++++++--- po/lt.po | 12 +++++++--- po/ml.po | 10 ++++++--- po/nb_NO.po | 12 +++++++--- po/nl.po | 12 +++++++--- po/or.po | 10 ++++++--- po/pa.po | 10 ++++++--- po/pl.po | 12 +++++++--- po/pt_BR.po | 12 +++++++--- po/pt_PT.po | 12 +++++++--- po/rm.po | 10 ++++++--- po/ro.po | 12 +++++++--- po/ru.po | 12 +++++++--- po/si.po | 12 +++++++--- po/sk.po | 12 +++++++--- po/sl.po | 12 +++++++--- po/sr_RS@cyrillic.po | 12 +++++++--- po/sr_RS@latin.po | 12 +++++++--- po/sv.po | 12 +++++++--- po/ta.po | 10 ++++++--- po/te.po | 10 ++++++--- po/th.po | 10 ++++++--- po/tr.po | 12 +++++++--- po/uk.po | 12 +++++++--- po/wa.po | 10 ++++++--- po/wine.pot | 10 ++++++--- po/zh_CN.po | 12 +++++++--- po/zh_TW.po | 12 +++++++--- 56 files changed, 509 insertions(+), 153 deletions(-) diff --git a/dlls/jscript/arraybuf.c b/dlls/jscript/arraybuf.c index 56bda2a73fd..62dfe614d65 100644 --- a/dlls/jscript/arraybuf.c +++ b/dlls/jscript/arraybuf.c @@ -55,6 +55,8 @@ static inline ArrayBufferInstance *arraybuf_this(jsval_t vthis) return (jsdisp && is_class(jsdisp, JSCLASS_ARRAYBUFFER)) ? arraybuf_from_jsdisp(jsdisp) : NULL; } +static HRESULT create_arraybuf(script_ctx_t*,DWORD,ArrayBufferInstance**); + static HRESULT ArrayBuffer_get_byteLength(script_ctx_t *ctx, jsdisp_t *jsthis, jsval_t *r) { TRACE("%p\n", jsthis); @@ -66,9 +68,51 @@ static HRESULT ArrayBuffer_get_byteLength(script_ctx_t *ctx, jsdisp_t *jsthis, j static HRESULT ArrayBuffer_slice(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r) { - FIXME("not implemented\n"); + ArrayBufferInstance *arraybuf, *ret; + DWORD begin = 0, end, size; + HRESULT hres; + double n; - return E_NOTIMPL; + TRACE("\n"); + + if(!(arraybuf = arraybuf_this(vthis))) + return JS_E_ARRAYBUFFER_EXPECTED; + end = arraybuf->size; + if(!r) + return S_OK; + + if(argc) { + hres = to_integer(ctx, argv[0], &n); + if(FAILED(hres)) + return hres; + if(n < 0.0) + n += arraybuf->size; + if(n >= 0.0 && n < arraybuf->size) { + begin = n; + if(argc > 1 && !is_undefined(argv[1])) { + hres = to_integer(ctx, argv[1], &n); + if(FAILED(hres)) + return hres; + if(n < 0.0) + n += arraybuf->size; + if(n >= 0.0) { + end = n < arraybuf->size ? n : arraybuf->size; + end = end < begin ? begin : end; + }else + end = begin; + } + }else + end = 0; + } + + size = end - begin; + hres = create_arraybuf(ctx, size, &ret); + if(FAILED(hres)) + return hres; + memcpy(ret->buf, arraybuf->buf + begin, size); + + *r = jsval_obj(&ret->dispex); + return S_OK; } static const builtin_prop_t ArrayBuffer_props[] = { diff --git a/dlls/jscript/error.c b/dlls/jscript/error.c index 60d090ec76e..81e3a3a9739 100644 --- a/dlls/jscript/error.c +++ b/dlls/jscript/error.c @@ -487,6 +487,7 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx) case JS_E_DATAVIEW_NO_ARGUMENT: case JS_E_WRONG_THIS: case JS_E_KEY_NOT_OBJECT: + case JS_E_ARRAYBUFFER_EXPECTED: case JS_E_PROP_DESC_MISMATCH: case JS_E_INVALID_WRITABLE_PROP_DESC: constr = ctx->type_error_constr; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 07e0c4693be..2453cba4939 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -587,6 +587,7 @@ static inline HRESULT disp_call_value(script_ctx_t *ctx, IDispatch *disp, jsval_ #define JS_E_DATAVIEW_INVALID_OFFSET MAKE_JSERROR(IDS_DATAVIEW_INVALID_OFFSET) #define JS_E_WRONG_THIS MAKE_JSERROR(IDS_WRONG_THIS) #define JS_E_KEY_NOT_OBJECT MAKE_JSERROR(IDS_KEY_NOT_OBJECT) +#define JS_E_ARRAYBUFFER_EXPECTED MAKE_JSERROR(IDS_ARRAYBUFFER_EXPECTED) #define JS_E_PROP_DESC_MISMATCH MAKE_JSERROR(IDS_PROP_DESC_MISMATCH) #define JS_E_INVALID_WRITABLE_PROP_DESC MAKE_JSERROR(IDS_INVALID_WRITABLE_PROP_DESC) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index 1cfc9040f51..cbdfde507b7 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -82,6 +82,7 @@ STRINGTABLE IDS_DATAVIEW_INVALID_OFFSET "DataView constructor argument offset is invalid" IDS_WRONG_THIS "'this' is not a | object" IDS_KEY_NOT_OBJECT "'key' is not an object" + IDS_ARRAYBUFFER_EXPECTED "ArrayBuffer object expected" IDS_PROP_DESC_MISMATCH "Property cannot have both accessors and a value" IDS_COMPILATION_ERROR "Microsoft JScript compilation error" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index e2b60b98bd5..801e940b95e 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -80,6 +80,7 @@ #define IDS_DATAVIEW_INVALID_OFFSET 0x13E2 #define IDS_WRONG_THIS 0x13FC #define IDS_KEY_NOT_OBJECT 0x13FD +#define IDS_ARRAYBUFFER_EXPECTED 0x15E4 /* FIXME: This is not compatible with native, but we would * conflict with IDS_UNSUPPORTED_ACTION otherwise */ #define IDS_PROP_DESC_MISMATCH 0x1F00 diff --git a/dlls/mshtml/tests/es5.js b/dlls/mshtml/tests/es5.js index a18fea6476a..353d0b0b5c0 100644 --- a/dlls/mshtml/tests/es5.js +++ b/dlls/mshtml/tests/es5.js @@ -37,6 +37,7 @@ var JS_E_DATAVIEW_NO_ARGUMENT = 0x800a13e0; var JS_E_DATAVIEW_INVALID_ACCESS = 0x800a13e1; var JS_E_DATAVIEW_INVALID_OFFSET = 0x800a13e2; var JS_E_WRONG_THIS = 0x800a13fc; +var JS_E_ARRAYBUFFER_EXPECTED = 0x800a15e4; var tests = []; @@ -1687,7 +1688,7 @@ sync_test("RegExp", function() { }); sync_test("ArrayBuffers & Views", function() { - var i, r, buf, view, view2, arr; + var i, r, buf, buf2, view, view2, arr; var types = [ [ "Int8", 1 ], @@ -1732,6 +1733,20 @@ sync_test("ArrayBuffers & Views", function() { r = ArrayBuffer.prototype.slice.length; ok(r === 2, "ArrayBuffer.prototype.slice.length = " + r); + try { + ArrayBuffer.prototype.slice.call(null); + ok(false, "ArrayBuffer: calling slice with null context did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_ARRAYBUFFER_EXPECTED, "ArrayBuffer: calling slice with null context threw " + n); + } + try { + ArrayBuffer.prototype.slice.call({}); + ok(false, "ArrayBuffer: calling slice with an object context did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_ARRAYBUFFER_EXPECTED, "ArrayBuffer: calling slice with an object context threw " + n); + } try { new ArrayBuffer(-1); ok(false, "new ArrayBuffer(-1) did not throw exception"); @@ -1983,10 +1998,39 @@ sync_test("ArrayBuffers & Views", function() { r = view2.getFloat32(0, true); ok(r === 1234.5, "view2.getFloat32(0) returned " + r); + r = buf.slice(-9, 1); + ok(r instanceof ArrayBuffer, "buf.slice did not return an ArrayBuffer"); + ok(r.byteLength === 0, "buf.slice(-9, 1).byteLength = " + r.byteLength); + r = buf.slice(); + ok(r.byteLength === 10, "buf.slice().byteLength = " + r.byteLength); + r = buf.slice(9, 16); + ok(r.byteLength === 1, "buf.slice(9, 16).byteLength = " + r.byteLength); + r = buf.slice(-9, -1); + ok(r.byteLength === 8, "buf.slice(-9, -1).byteLength = " + r.byteLength); + /* setters differing only in signedness have identical behavior, but they're not the same methods */ ok(view.setInt8 !== view.setUint8, "setInt8 and setUint8 are the same method"); ok(view.setInt16 !== view.setUint16, "setInt16 and setUint16 are the same method"); ok(view.setInt32 !== view.setUint32, "setInt32 and setUint32 are the same method"); + + /* slice makes a copy */ + buf2 = buf.slice(-9); + ok(buf2.byteLength === 9, "buf.slice(-9).byteLength = " + buf2.byteLength); + view2 = DataView(buf2, 1); + ok(view2.byteLength === 8, "buf.slice(-9) view(1).byteLength = " + view2.byteLength); + + r = view2.getUint32(0); + ok(r === 4294967040, "buf.slice(-9) view(1).getUint32(0) returned " + r); + view2.setInt16(0, -5); + r = view2.getUint16(1); + ok(r === 64511, "buf.slice(-9) view(1).getUint16(1) returned " + r); + r = view.getInt32(1); + ok(r === -1, "view.getInt32(1) after slice changed returned " + r); + + r = view2.setFloat64(0, 11.875); + ok(r === undefined, "buf.slice(-9) view(1).setFloat64(0, 11.875) returned " + r); + r = view2.getFloat64(0); + ok(r === 11.875, "buf.slice(-9) view(1).getFloat64(0) returned " + r); }); sync_test("builtin_context", function() { diff --git a/po/ar.po b/po/ar.po index b0644b6d247..65efd2a3869 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4001,15 +4001,15 @@ msgstr "البناء الشرطي معطل" msgid "Expected '@'" msgstr "متوقع ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4162,6 +4162,12 @@ msgid "'key' is not an object" msgstr "'[object]' ليس عنصر تاريخ" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "عنصر مصفوفة متوقع" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ast.po b/po/ast.po index b19415ca0ed..b4a99140578 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3950,15 +3950,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4097,6 +4097,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/bg.po b/po/bg.po index fddac21bf1a..f9a04548159 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4002,15 +4002,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Пре&гледай изходния код" @@ -4152,6 +4152,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ca.po b/po/ca.po index 1a16625b0ed..3755c055299 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3977,15 +3977,15 @@ msgstr "La compilació condicional està desactivada" msgid "Expected '@'" msgstr "S'esperava '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Error de compilació de Microsoft JScript" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Error d'entorn d'execució de Microsoft JScript" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error d'entorn d'execució desconegut" @@ -4128,6 +4128,12 @@ msgid "'key' is not an object" msgstr "'clau' no és un objecte" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "S'esperava un objecte Array" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "La propietat no pot tenir ambdós mètodes d'accés i un valor" diff --git a/po/cs.po b/po/cs.po index 61d14c7877e..de17e71bec8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3942,15 +3942,15 @@ msgstr "Podmíněná kompilace je vypnutá" msgid "Expected '@'" msgstr "Očekáváno „@“" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4103,6 +4103,12 @@ msgid "'key' is not an object" msgstr "„%s“ není platný název portu" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Očekáván objekt typu pole" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/da.po b/po/da.po index 8a8d854f95f..c167b013f4a 100644 --- a/po/da.po +++ b/po/da.po @@ -4034,15 +4034,15 @@ msgstr "Betinget kompilering er slået fra" msgid "Expected '@'" msgstr "Forventet ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4199,6 +4199,12 @@ msgid "'key' is not an object" msgstr "«[objekt]» er ikke et dato objekt" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Array objekt forventet" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/de.po b/po/de.po index 49f0e3a8641..0926d4fd335 100644 --- a/po/de.po +++ b/po/de.po @@ -3964,15 +3964,15 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet" msgid "Expected '@'" msgstr "'@' erwartet" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript Übersetzungsfehler" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript Laufzeitfehler" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unbekannter Laufzeitfehler" @@ -4116,6 +4116,12 @@ msgid "'key' is not an object" msgstr "'key' ist kein Objekt" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Array-Objekt erwartet" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben" diff --git a/po/el.po b/po/el.po index ce5e4c97e0c..00602d5f343 100644 --- a/po/el.po +++ b/po/el.po @@ -3904,15 +3904,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "&Περιεχόμενα" @@ -4052,6 +4052,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/en.po b/po/en.po index da9eba52581..fbff60dc9b9 100644 --- a/po/en.po +++ b/po/en.po @@ -3954,15 +3954,15 @@ msgstr "Conditional compilation is turned off" msgid "Expected '@'" msgstr "Expected '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -4103,6 +4103,10 @@ msgid "'key' is not an object" msgstr "'key' is not an object" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "ArrayBuffer object expected" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/en_US.po b/po/en_US.po index 3b99a12aac1..359d0e79b46 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3954,15 +3954,15 @@ msgstr "Conditional compilation is turned off" msgid "Expected '@'" msgstr "Expected '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -4103,6 +4103,10 @@ msgid "'key' is not an object" msgstr "'key' is not an object" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "ArrayBuffer object expected" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/eo.po b/po/eo.po index 4f8662faf86..f5896dc9fc9 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3910,15 +3910,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -4061,6 +4061,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/es.po b/po/es.po index 22476457977..2de5bf393de 100644 --- a/po/es.po +++ b/po/es.po @@ -3980,15 +3980,15 @@ msgstr "La compilación condicional está desactivada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Error de compilación Microsoft JScript" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Error de ejecución Microsoft JScript" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error desconocido en tiempo de ejecución" @@ -4139,6 +4139,12 @@ msgid "'key' is not an object" msgstr "'[this]' no es un objeto Map" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Objeto array esperado" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "La propiedad no puede tener tanto descriptores de acceso como un valor" diff --git a/po/fa.po b/po/fa.po index 8f352815e7e..3b34a446542 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3930,15 +3930,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4079,6 +4079,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fi.po b/po/fi.po index 0daa72a7d83..5eb62763e2d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3948,15 +3948,15 @@ msgstr "Ehdollinen kääntäminen on pois käytöstä" msgid "Expected '@'" msgstr "Odotettiin merkkiä '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript -käännösvirhe" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript -suoritusvirhe" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Tuntematon ajonaikainen virhe" @@ -4098,6 +4098,12 @@ msgid "'key' is not an object" msgstr "'key' ei ole objekti" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Odotettiin taulukkoa" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa" diff --git a/po/fr.po b/po/fr.po index 70a46a3fb8a..50845d1ad30 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3976,15 +3976,15 @@ msgstr "La compilation conditionnelle est désactivée" msgid "Expected '@'" msgstr "« @ » attendu" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Erreur de compilation Microsoft JScript" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Erreur d'exécution de Microsoft JScript" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Erreur d'exécution inconnue" @@ -4131,6 +4131,12 @@ msgid "'key' is not an object" msgstr "« this » n'est pas un objet de type Map" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Objet tableau attendu" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "La propriété ne peut à la fois avoir une valeur et des accesseurs" diff --git a/po/he.po b/po/he.po index 9fbc6b709c0..e85c7e7f3b0 100644 --- a/po/he.po +++ b/po/he.po @@ -3993,15 +3993,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4153,6 +4153,10 @@ msgid "'key' is not an object" msgstr "'%s' אינו שם תקני לפתחה" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hi.po b/po/hi.po index 8bb28139422..d713f3280af 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4008,6 +4008,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hr.po b/po/hr.po index 52ef822bed2..209b36f91fc 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4006,15 +4006,15 @@ msgstr "Kondicionalna kompilacija je isključena" msgid "Expected '@'" msgstr "Očekivano ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4167,6 +4167,12 @@ msgid "'key' is not an object" msgstr "'[object]' nije vremenski objekt" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Očekivan niz objekata" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hu.po b/po/hu.po index 36fa97b6191..61d01277647 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4052,15 +4052,15 @@ msgstr "Feltételes fordítás kikapcsolva" msgid "Expected '@'" msgstr "Hiányzó ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4217,6 +4217,12 @@ msgid "'key' is not an object" msgstr "'Az [object]' nem egy date (dátum) objektum" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Tömb objektumot vártam" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/it.po b/po/it.po index 8e8e5444d22..d85e8987f26 100644 --- a/po/it.po +++ b/po/it.po @@ -4060,15 +4060,15 @@ msgstr "Compilazione condizionale disattivata" msgid "Expected '@'" msgstr "Richiesto ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4225,6 +4225,12 @@ msgid "'key' is not an object" msgstr "'[oggetto]' non è un oggetto data" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Previsto un oggetto array" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ja.po b/po/ja.po index b655d6d40f7..bbe94b2a1b9 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3946,15 +3946,15 @@ msgstr "条件コンパイルはオフにされています" msgid "Expected '@'" msgstr "'@'を期待していました" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript コンパイル エラー" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 実行時エラー" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知の実行時エラー" @@ -4097,6 +4097,12 @@ msgid "'key' is not an object" msgstr "'key' はオブジェクトではありません" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "配列オブジェクトを期待していました" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "プロパティはアクセサーと値の両方になることはできません" diff --git a/po/ka.po b/po/ka.po index 48efc71b4bd..f281ceb6f76 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3936,15 +3936,15 @@ msgstr "პირობითი აგება გამორთულია" msgid "Expected '@'" msgstr "მოველოდი '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript აგების შეცდომა" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript გაშვების გარემოს შეცდომა" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "უცნობი გაშვების გარემოს შეცდომა" @@ -4088,6 +4088,12 @@ msgid "'key' is not an object" msgstr "'this'-ი | ტიპის ობიექტი არაა" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "მოველოდი მასივის ობიექტს" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ko.po b/po/ko.po index f166b9301b6..54066dfd666 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3936,15 +3936,15 @@ msgstr "조건부 컴파일이 해제되었습니다" msgid "Expected '@'" msgstr "'@'가 필요합니다" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 컴파일 오류" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 런타임 오류" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "알 수 없는 런타임 오류" @@ -4086,6 +4086,12 @@ msgid "'key' is not an object" msgstr "'key'는 개체가 아닙니다" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "배열 개체가 필요합니다" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다" diff --git a/po/lt.po b/po/lt.po index c0eaebdb518..ab2391cf842 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3957,15 +3957,15 @@ msgstr "Sąlyginis kompiliavimas išjungtas" msgid "Expected '@'" msgstr "Tikėtasi „@“" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompiliavimo klaida" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript vykdymo klaida" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Nežinoma vykdymo klaida" @@ -4108,6 +4108,12 @@ msgid "'key' is not an object" msgstr "„raktas“ nėra objektas" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Tikėtasi masyvo objekto" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės" diff --git a/po/ml.po b/po/ml.po index 5746b79bbbd..60e73cb4a06 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3862,15 +3862,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4010,6 +4010,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 477aaa49a53..bd0ddb43f09 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3976,15 +3976,15 @@ msgstr "Avhengig kompilering er skrudd av" msgid "Expected '@'" msgstr "Forventet '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompileringsfeil" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4137,6 +4137,12 @@ msgid "'key' is not an object" msgstr "'[object]' er ikke et dataobjekt" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Forventet rekke-objekt" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2e62e2709d2..a149c8e8625 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3967,15 +3967,15 @@ msgstr "Conditionele compilatie is uitgeschakeld" msgid "Expected '@'" msgstr "Verwacht '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilatie fout" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime-fout" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Onbekende runtime-fout" @@ -4118,6 +4118,12 @@ msgid "'key' is not an object" msgstr "'key' is geen object" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Array object verwacht" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Eigenschap kan niet zowel accessors als een waarde hebben" diff --git a/po/or.po b/po/or.po index 9bcefe76c14..0fd0946f667 100644 --- a/po/or.po +++ b/po/or.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4008,6 +4008,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pa.po b/po/pa.po index bc3b1d221ca..59b4615dc92 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4008,6 +4008,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pl.po b/po/pl.po index 0cbd73cf3b2..e10e4b26d9e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3974,15 +3974,15 @@ msgstr "Warunkowa kompilacja jest wyłączona" msgid "Expected '@'" msgstr "Oczekiwano '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Błąd kompilacji Microsoft JScript" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Błąd biblioteki uruchomieniowej Microsoft JScript" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Nieznany błąd biblioteki uruchomieniowej" @@ -4125,6 +4125,12 @@ msgid "'key' is not an object" msgstr "'key' nie jest obiektem" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Oczekiwany obiekt tablicowy" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Własność nie może mieć zarówno akcesorów i wartości" diff --git a/po/pt_BR.po b/po/pt_BR.po index 3d950686b83..58c1993b0f4 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3975,15 +3975,15 @@ msgstr "Compilação condicional está desligada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript erro de compilação" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript erro de execução" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Erro de execução desconhecido" @@ -4134,6 +4134,12 @@ msgid "'key' is not an object" msgstr "'this' não é um objeto Map" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Objeto tipo vetor esperado" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Propriedade não pode ter ambos acessores e valor" diff --git a/po/pt_PT.po b/po/pt_PT.po index a6c7cc74327..3c9e4219db5 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -4024,15 +4024,15 @@ msgstr "A compilação condicional está desactivada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4185,6 +4185,12 @@ msgid "'key' is not an object" msgstr "'[object]' não é um objecto de data" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Objecto Array esperado" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/rm.po b/po/rm.po index 8923a7bee76..84b2aa2854e 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3890,15 +3890,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4038,6 +4038,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ro.po b/po/ro.po index 6145d2d2c6a..49b7159fc22 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3977,15 +3977,15 @@ msgstr "Compilarea condițională este dezactivată" msgid "Expected '@'" msgstr "Se așteaptă „@”" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4140,6 +4140,12 @@ msgid "'key' is not an object" msgstr "„[obiect]” nu este un obiect de tip dată" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Se așteaptă un obiect matrice" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ru.po b/po/ru.po index e96ec9ee6b4..95f777f6520 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3982,15 +3982,15 @@ msgstr "Условная компиляция отключена" msgid "Expected '@'" msgstr "Ожидается «@»" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Ошибка компиляции Microsoft JScript" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Ошибка выполнения Microsoft JScript" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Неизвестная ошибка времени выполнения" @@ -4141,6 +4141,12 @@ msgid "'key' is not an object" msgstr "«this» не объект типа «Map»" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Ожидается объект типа «Array»" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Свойство не может одновременно иметь методы для доступа и значение" diff --git a/po/si.po b/po/si.po index fbc0bf117bf..4476cc90f50 100644 --- a/po/si.po +++ b/po/si.po @@ -3909,15 +3909,15 @@ msgstr "" msgid "Expected '@'" msgstr "අපේක්ෂා කරේ '='" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4070,6 +4070,12 @@ msgid "'key' is not an object" msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sk.po b/po/sk.po index 965c60c0ace..0d2bb3e153c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3946,15 +3946,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4101,6 +4101,12 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Object expected" +msgid "ArrayBuffer object expected" +msgstr "Očakávaný objekt" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sl.po b/po/sl.po index e50c8b92525..a36052e7d65 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4054,15 +4054,15 @@ msgstr "Pogojno kodno prevajanje je izklopljeno" msgid "Expected '@'" msgstr "Pričakovan je bil ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4219,6 +4219,12 @@ msgid "'key' is not an object" msgstr "'[object]' ni predmet datuma" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Pričakovan je bil predmet polja" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 6524fcd7572..64d2953413a 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -4029,15 +4029,15 @@ msgstr "" msgid "Expected '@'" msgstr "Очекивано ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Непознат извор" @@ -4193,6 +4193,12 @@ msgid "'key' is not an object" msgstr "„[object]“ није временски објекат" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Очекивани низ објекта" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 1cb64528592..d13d775eea5 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -4115,15 +4115,15 @@ msgstr "" msgid "Expected '@'" msgstr "Očekivano ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Nepoznat izvor" @@ -4279,6 +4279,12 @@ msgid "'key' is not an object" msgstr "„[object]“ nije vremenski objekat" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Očekivani niz objekta" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sv.po b/po/sv.po index 5306bbbb88c..ba303e82b82 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4003,15 +4003,15 @@ msgstr "Villkorlig kompilering är avslagen" msgid "Expected '@'" msgstr "'@' förväntades" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4164,6 +4164,12 @@ msgid "'key' is not an object" msgstr "'[object]' är inte ett datumobjekt" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Array-objekt förväntades" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ta.po b/po/ta.po index e8603f20999..8d37e884fbf 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3876,15 +3876,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4023,6 +4023,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/te.po b/po/te.po index 9c563b049c5..8653b6881d1 100644 --- a/po/te.po +++ b/po/te.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4008,6 +4008,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/th.po b/po/th.po index 6ef6b4c8b1b..40f810c2540 100644 --- a/po/th.po +++ b/po/th.po @@ -3922,15 +3922,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -4074,6 +4074,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/tr.po b/po/tr.po index e2f7e55a547..a3263d2cecf 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3959,15 +3959,15 @@ msgstr "Şartlı derleme kapatıldı" msgid "Expected '@'" msgstr "Beklenen '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript derleme hatası" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript çalışma zamanı hatası" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Bilinmeyen çalışma zamanı hatası" @@ -4114,6 +4114,12 @@ msgid "'key' is not an object" msgstr "'bu' bir | nesne değil" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Beklenen dizi nesnesi" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Nesnenin erişimcisi ve değeri birden olamaz" diff --git a/po/uk.po b/po/uk.po index 5fbd8c0c8ce..8f0a50f06c5 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3974,15 +3974,15 @@ msgstr "Умовна компіляція вимкнена" msgid "Expected '@'" msgstr "Очікується ';'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4134,6 +4134,12 @@ msgid "'key' is not an object" msgstr "'це' не є Map об'єкта" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "Очікується об'єкт Array" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "Властивість не може одночасно мати доступ і значення" diff --git a/po/wa.po b/po/wa.po index e11185e5aa6..94185f865f8 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3926,15 +3926,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4075,6 +4075,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 9d205134812..aa6709bef72 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3815,15 +3815,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3962,6 +3962,10 @@ msgid "'key' is not an object" msgstr "" #: dlls/jscript/jscript.rc:86 +msgid "ArrayBuffer object expected" +msgstr "" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 2ff5c086b5d..c27b2a915dc 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3902,15 +3902,15 @@ msgstr "条件编译已关闭" msgid "Expected '@'" msgstr "期望 '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 编译错误" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 运行时错误" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知运行时错误" @@ -4051,6 +4051,12 @@ msgid "'key' is not an object" msgstr "'key' 不是一个对象" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "期望得到 Array 对象" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "属性不能同时包含存取器和值" diff --git a/po/zh_TW.po b/po/zh_TW.po index bddb252a285..6dc9e6ed4a8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3914,15 +3914,15 @@ msgstr "條件編譯已關閉" msgid "Expected '@'" msgstr "預期為 '@'" -#: dlls/jscript/jscript.rc:88 +#: dlls/jscript/jscript.rc:89 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 編譯錯誤" -#: dlls/jscript/jscript.rc:89 +#: dlls/jscript/jscript.rc:90 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 執行期錯誤" -#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:91 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "不明執行期錯誤" @@ -4067,6 +4067,12 @@ msgid "'key' is not an object" msgstr "'this' 不是一個 | 物件" #: dlls/jscript/jscript.rc:86 +#, fuzzy +#| msgid "Array object expected" +msgid "ArrayBuffer object expected" +msgstr "預期為陣列物件" + +#: dlls/jscript/jscript.rc:87 msgid "Property cannot have both accessors and a value" msgstr "屬性不可同時有存取子和值"