From 00f04ef3ce9455b582b17783084a45413deb9045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Iv=C4=83ncescu?= Date: Mon, 12 Feb 2024 17:47:11 +0200 Subject: [PATCH] jscript: Add initial implementation of DataView. 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 | 237 ++++++++++++++++++++++++++++++++++++++- dlls/jscript/error.c | 3 + dlls/jscript/jscript.h | 7 +- dlls/jscript/jscript.rc | 3 + dlls/jscript/object.c | 1 + dlls/jscript/resource.h | 3 + dlls/mshtml/tests/es5.js | 127 ++++++++++++++++++++- po/ar.po | 24 +++- po/ast.po | 22 +++- po/bg.po | 22 +++- po/ca.po | 24 +++- po/cs.po | 24 +++- po/da.po | 24 +++- po/de.po | 24 +++- po/el.po | 22 +++- po/en.po | 22 +++- po/en_US.po | 22 +++- po/eo.po | 22 +++- po/es.po | 24 +++- po/fa.po | 22 +++- po/fi.po | 24 +++- po/fr.po | 24 +++- po/he.po | 24 +++- po/hi.po | 22 +++- po/hr.po | 24 +++- po/hu.po | 24 +++- po/it.po | 24 +++- po/ja.po | 24 +++- po/ka.po | 24 +++- po/ko.po | 24 +++- po/lt.po | 24 +++- po/ml.po | 22 +++- po/nb_NO.po | 24 +++- po/nl.po | 24 +++- po/or.po | 22 +++- po/pa.po | 22 +++- po/pl.po | 24 +++- po/pt_BR.po | 24 +++- po/pt_PT.po | 24 +++- po/rm.po | 22 +++- po/ro.po | 24 +++- po/ru.po | 24 +++- po/si.po | 24 +++- po/sk.po | 22 +++- po/sl.po | 24 +++- po/sr_RS@cyrillic.po | 24 +++- po/sr_RS@latin.po | 24 +++- po/sv.po | 24 +++- po/ta.po | 22 +++- po/te.po | 22 +++- po/th.po | 22 +++- po/tr.po | 24 +++- po/uk.po | 24 +++- po/wa.po | 22 +++- po/wine.pot | 22 +++- po/zh_CN.po | 24 +++- po/zh_TW.po | 24 +++- 57 files changed, 1292 insertions(+), 253 deletions(-) diff --git a/dlls/jscript/arraybuf.c b/dlls/jscript/arraybuf.c index 3afce4c46fe..b8604f1acf6 100644 --- a/dlls/jscript/arraybuf.c +++ b/dlls/jscript/arraybuf.c @@ -31,11 +31,30 @@ typedef struct { DECLSPEC_ALIGN(sizeof(double)) BYTE buf[]; } ArrayBufferInstance; +typedef struct { + jsdisp_t dispex; + + ArrayBufferInstance *buffer; + DWORD offset; + DWORD size; +} DataViewInstance; + static inline ArrayBufferInstance *arraybuf_from_jsdisp(jsdisp_t *jsdisp) { return CONTAINING_RECORD(jsdisp, ArrayBufferInstance, dispex); } +static inline DataViewInstance *dataview_from_jsdisp(jsdisp_t *jsdisp) +{ + return CONTAINING_RECORD(jsdisp, DataViewInstance, dispex); +} + +static inline ArrayBufferInstance *arraybuf_this(jsval_t vthis) +{ + jsdisp_t *jsdisp = is_object_instance(vthis) ? to_jsdisp(get_object(vthis)) : NULL; + return (jsdisp && is_class(jsdisp, JSCLASS_ARRAYBUFFER)) ? arraybuf_from_jsdisp(jsdisp) : NULL; +} + static HRESULT ArrayBuffer_get_byteLength(script_ctx_t *ctx, jsdisp_t *jsthis, jsval_t *r) { TRACE("%p\n", jsthis); @@ -159,11 +178,181 @@ static const builtin_info_t ArrayBufferConstr_info = { NULL }; -HRESULT init_arraybuf_constructors(script_ctx_t *ctx) +static inline DataViewInstance *dataview_this(jsval_t vthis) +{ + jsdisp_t *jsdisp = is_object_instance(vthis) ? to_jsdisp(get_object(vthis)) : NULL; + return (jsdisp && is_class(jsdisp, JSCLASS_DATAVIEW)) ? dataview_from_jsdisp(jsdisp) : NULL; +} + +static HRESULT DataView_get_buffer(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, + jsval_t *r) +{ + DataViewInstance *view; + + TRACE("\n"); + + if(!(view = dataview_this(vthis))) + return JS_E_NOT_DATAVIEW; + if(r) *r = jsval_obj(jsdisp_addref(&view->buffer->dispex)); + return S_OK; +} + +static HRESULT DataView_get_byteLength(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, + jsval_t *r) +{ + DataViewInstance *view; + + TRACE("\n"); + + if(!(view = dataview_this(vthis))) + return JS_E_NOT_DATAVIEW; + if(r) *r = jsval_number(view->size); + return S_OK; +} + +static HRESULT DataView_get_byteOffset(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, + jsval_t *r) +{ + DataViewInstance *view; + + TRACE("\n"); + + if(!(view = dataview_this(vthis))) + return JS_E_NOT_DATAVIEW; + if(r) *r = jsval_number(view->offset); + return S_OK; +} + +static void DataView_destructor(jsdisp_t *dispex) +{ + DataViewInstance *view = dataview_from_jsdisp(dispex); + if(view->buffer) + jsdisp_release(&view->buffer->dispex); + free(view); +} + +static HRESULT DataView_gc_traverse(struct gc_ctx *gc_ctx, enum gc_traverse_op op, jsdisp_t *dispex) +{ + DataViewInstance *view = dataview_from_jsdisp(dispex); + return gc_process_linked_obj(gc_ctx, op, dispex, &view->buffer->dispex, (void**)&view->buffer); +} + +static const builtin_info_t DataView_info = { + JSCLASS_DATAVIEW, + NULL, + 0, + NULL, + DataView_destructor, + NULL, + NULL, + NULL, + NULL, + DataView_gc_traverse +}; + +static const builtin_info_t DataViewInst_info = { + JSCLASS_DATAVIEW, + NULL, + 0, + NULL, + DataView_destructor, + NULL, + NULL, + NULL, + NULL, + DataView_gc_traverse +}; + +static HRESULT DataViewConstr_value(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, + jsval_t *r) { ArrayBufferInstance *arraybuf; + DataViewInstance *view; + DWORD offset = 0, size; HRESULT hres; + TRACE("\n"); + + switch(flags) { + case DISPATCH_METHOD: + case DISPATCH_CONSTRUCT: { + if(!argc || !(arraybuf = arraybuf_this(argv[0]))) + return JS_E_DATAVIEW_NO_ARGUMENT; + size = arraybuf->size; + + if(argc > 1) { + double offs, len, maxsize = size; + hres = to_integer(ctx, argv[1], &offs); + if(FAILED(hres)) + return hres; + if(offs < 0.0 || offs > maxsize) + return JS_E_DATAVIEW_INVALID_OFFSET; + offset = offs; + + if(argc > 2 && !is_undefined(argv[2])) { + hres = to_integer(ctx, argv[2], &len); + if(FAILED(hres)) + return hres; + if(len < 0.0 || offs+len > maxsize) + return JS_E_DATAVIEW_INVALID_OFFSET; + size = len; + }else + size -= offset; + } + + if(!r) + return S_OK; + + if(!(view = calloc(1, sizeof(DataViewInstance)))) + return E_OUTOFMEMORY; + + hres = init_dispex_from_constr(&view->dispex, ctx, &DataViewInst_info, ctx->dataview_constr); + if(FAILED(hres)) { + free(view); + return hres; + } + + jsdisp_addref(&arraybuf->dispex); + view->buffer = arraybuf; + view->offset = offset; + view->size = size; + + *r = jsval_obj(&view->dispex); + break; + } + default: + FIXME("unimplemented flags: %x\n", flags); + return E_NOTIMPL; + } + + return S_OK; +} + +static const builtin_info_t DataViewConstr_info = { + JSCLASS_FUNCTION, + Function_value, + 0, + NULL, + NULL, + NULL +}; + +HRESULT init_arraybuf_constructors(script_ctx_t *ctx) +{ + static const struct { + const WCHAR *name; + builtin_invoke_t get; + } DataView_getters[] = { + { L"buffer", DataView_get_buffer }, + { L"byteLength", DataView_get_byteLength }, + { L"byteOffset", DataView_get_byteOffset }, + }; + ArrayBufferInstance *arraybuf; + DataViewInstance *view; + property_desc_t desc; + HRESULT hres; + unsigned i; + if(ctx->version < SCRIPTLANGUAGEVERSION_ES5) return S_OK; @@ -184,6 +373,52 @@ HRESULT init_arraybuf_constructors(script_ctx_t *ctx) hres = jsdisp_define_data_property(ctx->global, L"ArrayBuffer", PROPF_CONFIGURABLE | PROPF_WRITABLE, jsval_obj(ctx->arraybuf_constr)); + if(FAILED(hres)) + return hres; + + if(!(view = calloc(1, sizeof(DataViewInstance)))) + return E_OUTOFMEMORY; + + hres = create_arraybuf(ctx, 0, &view->buffer); + if(FAILED(hres)) { + free(view); + return hres; + } + + hres = init_dispex(&view->dispex, ctx, &DataView_info, ctx->object_prototype); + if(FAILED(hres)) { + jsdisp_release(&view->buffer->dispex); + free(view); + return hres; + } + + desc.flags = PROPF_CONFIGURABLE; + desc.mask = PROPF_CONFIGURABLE | PROPF_ENUMERABLE; + desc.explicit_getter = desc.explicit_setter = TRUE; + desc.explicit_value = FALSE; + desc.setter = NULL; + + /* FIXME: If we find we need builtin accessors in other places, we should consider a more generic solution */ + for(i = 0; i < ARRAY_SIZE(DataView_getters); i++) { + hres = create_builtin_function(ctx, DataView_getters[i].get, NULL, NULL, PROPF_METHOD, NULL, &desc.getter); + if(SUCCEEDED(hres)) { + hres = jsdisp_define_property(&view->dispex, DataView_getters[i].name, &desc); + jsdisp_release(desc.getter); + } + if(FAILED(hres)) { + jsdisp_release(&view->dispex); + return hres; + } + } + + hres = create_builtin_constructor(ctx, DataViewConstr_value, L"DataView", &DataViewConstr_info, + PROPF_CONSTR|1, &view->dispex, &ctx->dataview_constr); + jsdisp_release(&view->dispex); + if(FAILED(hres)) + return hres; + + hres = jsdisp_define_data_property(ctx->global, L"DataView", PROPF_CONFIGURABLE | PROPF_WRITABLE, + jsval_obj(ctx->dataview_constr)); return hres; } diff --git a/dlls/jscript/error.c b/dlls/jscript/error.c index f6eda62b88d..1c84ff70f87 100644 --- a/dlls/jscript/error.c +++ b/dlls/jscript/error.c @@ -483,6 +483,8 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx) case JS_E_OBJECT_NONEXTENSIBLE: case JS_E_NONCONFIGURABLE_REDEFINED: case JS_E_NONWRITABLE_MODIFIED: + case JS_E_NOT_DATAVIEW: + case JS_E_DATAVIEW_NO_ARGUMENT: case JS_E_WRONG_THIS: case JS_E_KEY_NOT_OBJECT: case JS_E_PROP_DESC_MISMATCH: @@ -494,6 +496,7 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx) case JS_E_FRACTION_DIGITS_OUT_OF_RANGE: case JS_E_PRECISION_OUT_OF_RANGE: case JS_E_INVALID_LENGTH: + case JS_E_DATAVIEW_INVALID_OFFSET: constr = ctx->range_error_constr; break; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index dd7aa4dddcc..d792b34b3d1 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -117,6 +117,7 @@ typedef enum { JSCLASS_VBARRAY, JSCLASS_JSON, JSCLASS_ARRAYBUFFER, + JSCLASS_DATAVIEW, JSCLASS_MAP, JSCLASS_SET, JSCLASS_WEAKMAP, @@ -437,11 +438,12 @@ struct _script_ctx_t { jsdisp_t *string_constr; jsdisp_t *vbarray_constr; jsdisp_t *arraybuf_constr; + jsdisp_t *dataview_constr; jsdisp_t *map_prototype; jsdisp_t *set_prototype; jsdisp_t *weakmap_prototype; }; - jsdisp_t *global_objects[24]; + jsdisp_t *global_objects[25]; }; }; C_ASSERT(RTL_SIZEOF_THROUGH_FIELD(script_ctx_t, weakmap_prototype) == RTL_SIZEOF_THROUGH_FIELD(script_ctx_t, global_objects)); @@ -579,6 +581,9 @@ static inline HRESULT disp_call_value(script_ctx_t *ctx, IDispatch *disp, jsval_ #define JS_E_OBJECT_NONEXTENSIBLE MAKE_JSERROR(IDS_OBJECT_NONEXTENSIBLE) #define JS_E_NONCONFIGURABLE_REDEFINED MAKE_JSERROR(IDS_NONCONFIGURABLE_REDEFINED) #define JS_E_NONWRITABLE_MODIFIED MAKE_JSERROR(IDS_NONWRITABLE_MODIFIED) +#define JS_E_NOT_DATAVIEW MAKE_JSERROR(IDS_NOT_DATAVIEW) +#define JS_E_DATAVIEW_NO_ARGUMENT MAKE_JSERROR(IDS_DATAVIEW_NO_ARGUMENT) +#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_PROP_DESC_MISMATCH MAKE_JSERROR(IDS_PROP_DESC_MISMATCH) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index e5289a550a3..31e2d18cf57 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -76,6 +76,9 @@ STRINGTABLE IDS_OBJECT_NONEXTENSIBLE "Cannot define property '|': object is not extensible" IDS_NONCONFIGURABLE_REDEFINED "Cannot redefine non-configurable property '|'" IDS_NONWRITABLE_MODIFIED "Cannot modify non-writable property '|'" + IDS_NOT_DATAVIEW "'this' is not a DataView object" + IDS_DATAVIEW_NO_ARGUMENT "Required argument offset or value in DataView method is not specified" + 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_PROP_DESC_MISMATCH "Property cannot have both accessors and a value" diff --git a/dlls/jscript/object.c b/dlls/jscript/object.c index cba35927378..16ecc3dea3c 100644 --- a/dlls/jscript/object.c +++ b/dlls/jscript/object.c @@ -53,6 +53,7 @@ static HRESULT Object_toString(script_ctx_t *ctx, jsval_t vthis, WORD flags, uns L"[object ArrayBuffer]", L"[object Object]", L"[object Object]", + L"[object Object]", L"[object Object]" }; diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index ad771b67475..6d92e05a837 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -74,6 +74,9 @@ #define IDS_OBJECT_NONEXTENSIBLE 0x13D5 #define IDS_NONCONFIGURABLE_REDEFINED 0x13D6 #define IDS_NONWRITABLE_MODIFIED 0x13D7 +#define IDS_NOT_DATAVIEW 0x13DF +#define IDS_DATAVIEW_NO_ARGUMENT 0x13E0 +#define IDS_DATAVIEW_INVALID_OFFSET 0x13E2 #define IDS_WRONG_THIS 0x13FC #define IDS_KEY_NOT_OBJECT 0x13FD /* FIXME: This is not compatible with native, but we would diff --git a/dlls/mshtml/tests/es5.js b/dlls/mshtml/tests/es5.js index b9d9b0d03d6..dc15ed3af8a 100644 --- a/dlls/mshtml/tests/es5.js +++ b/dlls/mshtml/tests/es5.js @@ -32,6 +32,9 @@ var JS_E_INVALID_LENGTH = 0x800a13a5; var JS_E_INVALID_WRITABLE_PROP_DESC = 0x800a13ac; var JS_E_NONCONFIGURABLE_REDEFINED = 0x800a13d6; var JS_E_NONWRITABLE_MODIFIED = 0x800a13d7; +var JS_E_NOT_DATAVIEW = 0x800a13df; +var JS_E_DATAVIEW_NO_ARGUMENT = 0x800a13e0; +var JS_E_DATAVIEW_INVALID_OFFSET = 0x800a13e2; var JS_E_WRONG_THIS = 0x800a13fc; var tests = []; @@ -1683,7 +1686,7 @@ sync_test("RegExp", function() { }); sync_test("ArrayBuffers & Views", function() { - var r, buf; + var i, r, buf, view, view2, arr; function test_own_props(obj_name, props) { var obj = eval(obj_name); @@ -1691,6 +1694,12 @@ sync_test("ArrayBuffers & Views", function() { ok(Object.prototype.hasOwnProperty.call(obj, props[i]), props[i] + " not a property of " + obj_name); } + function test_not_own_props(obj_name, props) { + var obj = eval(obj_name); + for(var i = 0; i < props.length; i++) + ok(!Object.prototype.hasOwnProperty.call(obj, props[i]), props[i] + " is a property of " + obj_name); + } + function test_readonly(obj, prop, val) { var name = Object.getPrototypeOf(obj).constructor.toString(); name = name.substring(9, name.indexOf("(", 9)) + ".prototype." + prop; @@ -1727,6 +1736,122 @@ sync_test("ArrayBuffers & Views", function() { ok(buf.byteLength === 10, "ArrayBuffer(10).byteLength = " + buf.byteLength); test_readonly(buf, "byteLength", 10); test_own_data_prop_desc(buf, "byteLength", false, false, false); + + test_own_props("DataView.prototype", [ + "buffer", "byteLength", "byteOffset" + ]); + + r = Object.prototype.toString.call(new DataView(buf)); + ok(r === "[object Object]", "Object toString(new DataView(buf)) = " + r); + r = DataView.length; + ok(r === 1, "DataView.length = " + r); + + /* DataView.prototype has actual accessors, but others don't */ + arr = [ "buffer", "byteLength", "byteOffset" ]; + for(i = 0; i < arr.length; i++) { + var prop = arr[i], desc = Object.getOwnPropertyDescriptor(DataView.prototype, prop); + ok(!("value" in desc), "DataView: value is in desc"); + ok(!("writable" in desc), "DataView: writable is in desc"); + ok(desc.enumerable === false, "DataView: desc.enumerable = " + desc.enumerable); + ok(desc.configurable === true, "DataView: desc.configurable = " + desc.configurable); + ok(Object.getPrototypeOf(desc.get) === Function.prototype, "DataView: desc.get not a function: " + desc.get); + ok("set" in desc, "DataView: set is not in desc"); + ok(desc.set === undefined, "DataView: desc.set not undefined: " + desc.set); + try { + desc.get.call(null); + ok(false, "DataView: calling " + prop + " getter with null did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_NOT_DATAVIEW, "DataView: calling " + prop + " getter with null threw " + n); + } + try { + desc.get.call({}); + ok(false, "DataView: calling " + prop + " getter with an object did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_NOT_DATAVIEW, "DataView: calling " + prop + " getter with an object threw " + n); + } + try { + desc.get.call(DataView); + ok(false, "DataView: calling " + prop + " getter with DataView constructor did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_NOT_DATAVIEW, "DataView: calling " + prop + " getter with DataView constructor threw " + n); + } + try { + desc.get.call(new ArrayBuffer()); + ok(false, "DataView: calling " + prop + " getter with ArrayBuffer did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_NOT_DATAVIEW, "DataView: calling " + prop + " getter with ArrayBuffer threw " + n); + } + r = desc.get.call(DataView.prototype); + if(prop === "buffer") + ok(Object.getPrototypeOf(r) === ArrayBuffer.prototype, "DataView: calling " + prop + " getter with DataView.prototype returned " + r); + else + ok(r === 0, "DataView: calling " + prop + " getter with DataView.prototype returned " + r); + } + + try { + new DataView(); + ok(false, "new DataView() did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_DATAVIEW_NO_ARGUMENT, "new DataView() threw " + n); + } + try { + new DataView(ArrayBuffer); + ok(false, "new DataView(ArrayBuffer) did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_DATAVIEW_NO_ARGUMENT, "new DataView(ArrayBuffer) threw " + n); + } + try { + new DataView(buf, -1); + ok(false, "new DataView(buf, -1) did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_DATAVIEW_INVALID_OFFSET, "new DataView(buf, -1) threw " + n); + } + try { + new DataView(buf, 11); + ok(false, "new DataView(buf, 11) did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_DATAVIEW_INVALID_OFFSET, "new DataView(buf, 11) threw " + n); + } + try { + new DataView(buf, 9, 2); + ok(false, "new DataView(buf, 9, 2) did not throw exception"); + }catch(ex) { + var n = ex.number >>> 0; + ok(n === JS_E_DATAVIEW_INVALID_OFFSET, "new DataView(buf, 9, 2) threw " + n); + } + + view = new DataView(buf, 9, 1); + ok(view.buffer === buf, "DataView(buf, 9, 1).buffer = " + view.buffer); + ok(view.byteLength === 1, "DataView(buf, 9, 1).byteLength = " + view.byteLength); + ok(view.byteOffset === 9, "DataView(buf, 9, 1).byteOffset = " + view.byteOffset); + test_readonly(view, "byteLength", 1); + test_readonly(view, "byteOffset", 9); + test_not_own_props("view", [ "buffer", "byteLength", "byteOffset" ]); + + view = new DataView(buf, 10); + ok(view.buffer === buf, "DataView(buf, 10).buffer = " + view.buffer); + ok(view.byteLength === 0, "DataView(buf, 10).byteLength = " + view.byteLength); + ok(view.byteOffset === 10, "DataView(buf, 10).byteOffset = " + view.byteOffset); + view = new DataView(buf, 1, 7); + ok(view.buffer === buf, "DataView(buf, 1, 7).buffer = " + view.buffer); + ok(view.byteLength === 7, "DataView(buf, 1, 7).byteLength = " + view.byteLength); + ok(view.byteOffset === 1, "DataView(buf, 1, 7).byteOffset = " + view.byteOffset); + view2 = new DataView(buf, 6); + ok(view2.buffer === buf, "DataView(buf, 6).buffer = " + view2.buffer); + ok(view2.byteLength === 4, "DataView(buf, 6).byteLength = " + view2.byteLength); + ok(view2.byteOffset === 6, "DataView(buf, 6).byteOffset = " + view2.byteOffset); + view = DataView(buf); + ok(view.buffer === buf, "DataView(buf).buffer = " + view.buffer); + ok(view.byteLength === 10, "DataView(buf).byteLength = " + view.byteLength); + ok(view.byteOffset === 0, "DataView(buf).byteOffset = " + view.byteOffset); }); sync_test("builtin_context", function() { diff --git a/po/ar.po b/po/ar.po index 875b2e2330e..76672a838f1 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4001,15 +4001,15 @@ msgstr "البناء الشرطي معطل" msgid "Expected '@'" msgstr "متوقع ';'" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4134,16 +4134,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' ليس عنصر تاريخ" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' ليس عنصر تاريخ" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' ليس عنصر تاريخ" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ast.po b/po/ast.po index d1782b463c1..f7670300249 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3950,15 +3950,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4073,14 +4073,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/bg.po b/po/bg.po index edbdf2a54a5..1872a43cb5e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4002,15 +4002,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Пре&гледай изходния код" @@ -4128,14 +4128,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ca.po b/po/ca.po index a5babd6529b..b0c16e530d4 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Error de compilació de Microsoft JScript" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Error d'entorn d'execució de Microsoft JScript" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error d'entorn d'execució desconegut" @@ -4102,14 +4102,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "No es pot modificar la propietat no escrivible '|'" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' no és un objecte de |" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' no és un objecte de |" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'clau' no és un objecte" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 1c44cd37e63..8d435b9ad59 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4075,16 +4075,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "„%s“ není platný název portu" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'%s' is not a valid port name" +msgid "'this' is not a | object" +msgstr "„%s“ není platný název portu" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'%s' is not a valid port name" msgid "'key' is not an object" msgstr "„%s“ není platný název portu" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/da.po b/po/da.po index 46456b544a7..601b49b0dfb 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4171,16 +4171,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "«[objekt]» er ikke et dato objekt" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "«[objekt]» er ikke et dato objekt" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "«[objekt]» er ikke et dato objekt" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/de.po b/po/de.po index afbff8c90a0..219fb4f25a7 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript Übersetzungsfehler" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript Laufzeitfehler" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unbekannter Laufzeitfehler" @@ -4090,14 +4090,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' ist kein |-Objekt" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' ist kein |-Objekt" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' ist kein Objekt" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 6fc1b9414ed..6bc40a651f8 100644 --- a/po/el.po +++ b/po/el.po @@ -3904,15 +3904,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "&Περιεχόμενα" @@ -4028,14 +4028,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/en.po b/po/en.po index 67b9344d16e..1f201c7ac91 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -4079,14 +4079,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" #: dlls/jscript/jscript.rc:80 +msgid "'this' is not a DataView object" +msgstr "'this' is not a DataView object" + +#: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "Required argument offset or value in DataView method is not specified" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "DataView constructor argument offset is invalid" + +#: dlls/jscript/jscript.rc:83 msgid "'this' is not a | object" msgstr "'this' is not a | object" -#: dlls/jscript/jscript.rc:81 +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' is not an object" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 d30698a9e43..9c05f6daf9f 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -4079,14 +4079,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" #: dlls/jscript/jscript.rc:80 +msgid "'this' is not a DataView object" +msgstr "'this' is not a DataView object" + +#: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "Required argument offset or value in DataView method is not specified" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "DataView constructor argument offset is invalid" + +#: dlls/jscript/jscript.rc:83 msgid "'this' is not a | object" msgstr "'this' is not a | object" -#: dlls/jscript/jscript.rc:81 +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' is not an object" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 ad96f3724b3..99e652a8f47 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3910,15 +3910,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -4037,14 +4037,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/es.po b/po/es.po index 1d25ac30b30..df4992013f2 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Error de compilación Microsoft JScript" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Error de ejecución Microsoft JScript" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error desconocido en tiempo de ejecución" @@ -4111,16 +4111,30 @@ msgstr "No se puede modificar la propiedad no modificable '|'" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'this' is not a Map object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[this]' no es un objeto Map" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "'[this]' no es un objeto Map" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a Map object" msgid "'key' is not an object" msgstr "'[this]' no es un objeto Map" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 3eedc15db7f..957ebb6ec5f 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3930,15 +3930,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4055,14 +4055,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fi.po b/po/fi.po index c1970fcbbe5..bbb5a537739 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript -käännösvirhe" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript -suoritusvirhe" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Tuntematon ajonaikainen virhe" @@ -4072,14 +4072,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' ei ole |-objekti" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' ei ole |-objekti" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' ei ole objekti" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 9f0f2c50eb5..c777a249a75 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Erreur de compilation Microsoft JScript" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Erreur d'exécution de Microsoft JScript" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Erreur d'exécution inconnue" @@ -4103,16 +4103,30 @@ msgstr "Impossible de modifier une propriété qui est protégée en écriture ' #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'this' is not a Map object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "« this » n'est pas un objet de type Map" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "« this » n'est pas un objet de type Map" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a Map object" msgid "'key' is not an object" msgstr "« this » n'est pas un objet de type Map" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 c52ab13f86a..a93f4227fd0 100644 --- a/po/he.po +++ b/po/he.po @@ -3993,15 +3993,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4125,16 +4125,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'%s' אינו שם תקני לפתחה" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'%s' is not a valid port name" +msgid "'this' is not a | object" +msgstr "'%s' אינו שם תקני לפתחה" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'%s' is not a valid port name" msgid "'key' is not an object" msgstr "'%s' אינו שם תקני לפתחה" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hi.po b/po/hi.po index 69825e5e4d6..1928a4314d5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3984,14 +3984,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hr.po b/po/hr.po index eac5a893e58..67a795505c9 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4139,16 +4139,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' nije vremenski objekt" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' nije vremenski objekt" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' nije vremenski objekt" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hu.po b/po/hu.po index 9682e3dfa24..e615a63352e 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4189,16 +4189,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'Az [object]' nem egy date (dátum) objektum" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'Az [object]' nem egy date (dátum) objektum" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/it.po b/po/it.po index df8cc721758..77dbfdabf0c 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4197,16 +4197,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[oggetto]' non è un oggetto data" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[oggetto]' non è un oggetto data" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[oggetto]' non è un oggetto data" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ja.po b/po/ja.po index 2a3f5c6f1d4..aed88eafcee 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3946,15 +3946,15 @@ msgstr "条件コンパイルはオフにされています" msgid "Expected '@'" msgstr "'@'を期待していました" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript コンパイル エラー" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 実行時エラー" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知の実行時エラー" @@ -4071,14 +4071,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "書換不可のプロパティ '|' は変更できません" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' は | オブジェクトではありません" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' は | オブジェクトではありません" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' はオブジェクトではありません" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "プロパティはアクセサーと値の両方になることはできません" diff --git a/po/ka.po b/po/ka.po index 384818759c0..b5ae9eebf4e 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3936,15 +3936,15 @@ msgstr "პირობითი აგება გამორთულია" msgid "Expected '@'" msgstr "მოველოდი '@'" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript აგების შეცდომა" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript გაშვების გარემოს შეცდომა" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "უცნობი გაშვების გარემოს შეცდომა" @@ -4060,16 +4060,30 @@ msgid "Cannot modify non-writable property '|'" msgstr "არაჩაწერადი თვისების '|' შეცვლა შეუძლებელია" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this'-ი | ტიპის ობიექტი არაა" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this'-ი | ტიპის ობიექტი არაა" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a | object" msgid "'key' is not an object" msgstr "'this'-ი | ტიპის ობიექტი არაა" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ko.po b/po/ko.po index 9147aa28ea1..b1b4adadf35 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3936,15 +3936,15 @@ msgstr "조건부 컴파일이 해제되었습니다" msgid "Expected '@'" msgstr "'@'가 필요합니다" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 컴파일 오류" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 런타임 오류" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "알 수 없는 런타임 오류" @@ -4060,14 +4060,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "쓰기 가능하지 않은 속성 '|'을(를) 수정할 수 없습니다" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this'는 '|' 개체가 아닙니다" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this'는 '|' 개체가 아닙니다" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key'는 개체가 아닙니다" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다" diff --git a/po/lt.po b/po/lt.po index 2279a84969a..ab0f30e8c48 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompiliavimo klaida" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript vykdymo klaida" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Nežinoma vykdymo klaida" @@ -4082,14 +4082,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "Negalima modifikuoti nerašomos savybės „|“" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "„Šis“ nėra | objektas" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "„Šis“ nėra | objektas" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "„raktas“ nėra objektas" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 4d54220c403..ebf02082bfa 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3862,15 +3862,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3986,14 +3986,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 58927a3bf36..463c244684a 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompileringsfeil" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4109,16 +4109,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' er ikke et dataobjekt" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' er ikke et dataobjekt" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' er ikke et dataobjekt" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nl.po b/po/nl.po index 45c74cba3dd..4b0b7fccba2 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilatie fout" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime-fout" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Onbekende runtime-fout" @@ -4092,14 +4092,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "Kan onschrijfbare eigenschap '|' niet veranderen" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' is geen | object" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' is geen | object" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' is geen object" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 d38e99d8653..00bbb8b6e33 100644 --- a/po/or.po +++ b/po/or.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3984,14 +3984,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pa.po b/po/pa.po index a35ee472812..d46b0f650b3 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3984,14 +3984,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pl.po b/po/pl.po index b8dfd1a108d..6280be17e3f 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Błąd kompilacji Microsoft JScript" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Błąd biblioteki uruchomieniowej Microsoft JScript" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Nieznany błąd biblioteki uruchomieniowej" @@ -4099,14 +4099,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "Nie można zmienić niezapisywalnej własności '|'" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' nie jest obiektem |" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' nie jest obiektem |" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' nie jest obiektem" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 2b7035b3580..40e7fd069cb 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript erro de compilação" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript erro de execução" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Erro de execução desconhecido" @@ -4106,16 +4106,30 @@ msgstr "Não pode modificar propriedade não gravável '|'" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'this' is not a Map object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' não é um objeto Map" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "'this' não é um objeto Map" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a Map object" msgid "'key' is not an object" msgstr "'this' não é um objeto Map" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 567b696089f..730ec66b6c1 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4157,16 +4157,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' não é um objecto de data" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' não é um objecto de data" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' não é um objecto de data" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/rm.po b/po/rm.po index 756859b9211..613fa4dc918 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3890,15 +3890,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4014,14 +4014,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ro.po b/po/ro.po index ca754bbd41d..1cbea9496ce 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4112,16 +4112,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "„[obiect]” nu este un obiect de tip dată" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "„[obiect]” nu este un obiect de tip dată" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ru.po b/po/ru.po index 81603dc6b15..87f2cf7e874 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3982,15 +3982,15 @@ msgstr "Условная компиляция отключена" msgid "Expected '@'" msgstr "Ожидается «@»" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Ошибка компиляции Microsoft JScript" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Ошибка выполнения Microsoft JScript" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Неизвестная ошибка времени выполнения" @@ -4113,16 +4113,30 @@ msgstr "Невозможно изменить свойство «|»" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'this' is not a Map object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "«this» не объект типа «Map»" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "«this» не объект типа «Map»" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a Map object" msgid "'key' is not an object" msgstr "«this» не объект типа «Map»" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "Свойство не может одновременно иметь методы для доступа и значение" diff --git a/po/si.po b/po/si.po index 1c0b852bec7..057dac82882 100644 --- a/po/si.po +++ b/po/si.po @@ -3909,15 +3909,15 @@ msgstr "" msgid "Expected '@'" msgstr "අපේක්ෂා කරේ '='" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4042,16 +4042,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'%s' is not a valid port name" +msgid "'this' is not a | object" +msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'%s' is not a valid port name" msgid "'key' is not an object" msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sk.po b/po/sk.po index 681f07f63e2..73a67145082 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3946,15 +3946,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4077,14 +4077,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sl.po b/po/sl.po index 3f75a92a1b5..3a41c4e5c9d 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4191,16 +4191,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' ni predmet datuma" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' ni predmet datuma" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' ni predmet datuma" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 fe426ee4294..f598b882c28 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Непознат извор" @@ -4165,16 +4165,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "„[object]“ није временски објекат" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "„[object]“ није временски објекат" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "„[object]“ није временски објекат" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 3e3d7169ed3..bdb435093b5 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Nepoznat izvor" @@ -4251,16 +4251,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "„[object]“ nije vremenski objekat" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "„[object]“ nije vremenski objekat" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "„[object]“ nije vremenski objekat" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sv.po b/po/sv.po index 2286bfc2a7e..31c5c8be31b 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4136,16 +4136,30 @@ msgstr "" #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'[object]' är inte ett datumobjekt" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'[object]' is not a date object" +msgid "'this' is not a | object" +msgstr "'[object]' är inte ett datumobjekt" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'[object]' is not a date object" msgid "'key' is not an object" msgstr "'[object]' är inte ett datumobjekt" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ta.po b/po/ta.po index f01dd933bcf..cf53c8fa1f5 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3876,15 +3876,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3999,14 +3999,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/te.po b/po/te.po index e66bd30febb..c6b0b7de0ba 100644 --- a/po/te.po +++ b/po/te.po @@ -3860,15 +3860,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3984,14 +3984,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/th.po b/po/th.po index 23af60508c5..e6520331eb8 100644 --- a/po/th.po +++ b/po/th.po @@ -3922,15 +3922,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -4050,14 +4050,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/tr.po b/po/tr.po index 023774001d4..83289fd3827 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:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript derleme hatası" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript çalışma zamanı hatası" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Bilinmeyen çalışma zamanı hatası" @@ -4086,16 +4086,30 @@ msgid "Cannot modify non-writable property '|'" msgstr "'|' yazılamayan nesnesi değiştirilemiyor" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'bu' bir | nesne değil" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'bu' bir | nesne değil" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a | object" msgid "'key' is not an object" msgstr "'bu' bir | nesne değil" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 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 7413cb9e2f9..98fb30a0e62 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3974,15 +3974,15 @@ msgstr "Умовна компіляція вимкнена" msgid "Expected '@'" msgstr "Очікується ';'" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4106,16 +4106,30 @@ msgstr "Неможливо змінити властивість, яка не п #: dlls/jscript/jscript.rc:80 #, fuzzy #| msgid "'this' is not a Map object" -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'це' не є Map об'єкта" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "'це' не є Map об'єкта" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a Map object" msgid "'key' is not an object" msgstr "'це' не є Map об'єкта" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "Властивість не може одночасно мати доступ і значення" diff --git a/po/wa.po b/po/wa.po index 0016e44525c..316b5dc4e31 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3926,15 +3926,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -4051,14 +4051,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 52027bc7c59..e5d98e11e0e 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3815,15 +3815,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3938,14 +3938,26 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "" #: dlls/jscript/jscript.rc:81 -msgid "'key' is not an object" +msgid "Required argument offset or value in DataView method is not specified" msgstr "" #: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "" + +#: dlls/jscript/jscript.rc:84 +msgid "'key' is not an object" +msgstr "" + +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 74d29a607d1..aaec7b4e87e 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3902,15 +3902,15 @@ msgstr "条件编译已关闭" msgid "Expected '@'" msgstr "期望 '@'" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 编译错误" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 运行时错误" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知运行时错误" @@ -4025,14 +4025,28 @@ msgid "Cannot modify non-writable property '|'" msgstr "无法更改不可写的属性 '|'" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' 不是 | 对象" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' 不是 | 对象" + +#: dlls/jscript/jscript.rc:84 msgid "'key' is not an object" msgstr "'key' 不是一个对象" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "属性不能同时包含存取器和值" diff --git a/po/zh_TW.po b/po/zh_TW.po index 7ebd0116a9c..fa95860aa17 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3914,15 +3914,15 @@ msgstr "條件編譯已關閉" msgid "Expected '@'" msgstr "預期為 '@'" -#: dlls/jscript/jscript.rc:84 +#: dlls/jscript/jscript.rc:87 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 編譯錯誤" -#: dlls/jscript/jscript.rc:85 +#: dlls/jscript/jscript.rc:88 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 執行期錯誤" -#: dlls/jscript/jscript.rc:86 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "不明執行期錯誤" @@ -4039,16 +4039,30 @@ msgid "Cannot modify non-writable property '|'" msgstr "無法修改不可寫入的屬性 '|'" #: dlls/jscript/jscript.rc:80 -msgid "'this' is not a | object" +#, fuzzy +#| msgid "'this' is not a | object" +msgid "'this' is not a DataView object" msgstr "'this' 不是一個 | 物件" #: dlls/jscript/jscript.rc:81 +msgid "Required argument offset or value in DataView method is not specified" +msgstr "" + +#: dlls/jscript/jscript.rc:82 +msgid "DataView constructor argument offset is invalid" +msgstr "" + +#: dlls/jscript/jscript.rc:83 +msgid "'this' is not a | object" +msgstr "'this' 不是一個 | 物件" + +#: dlls/jscript/jscript.rc:84 #, fuzzy #| msgid "'this' is not a | object" msgid "'key' is not an object" msgstr "'this' 不是一個 | 物件" -#: dlls/jscript/jscript.rc:82 +#: dlls/jscript/jscript.rc:85 msgid "Property cannot have both accessors and a value" msgstr "屬性不可同時有存取子和值"