jscript: Add initial implementation of DataView.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
Gabriel Ivăncescu 2024-02-12 17:47:11 +02:00 committed by Alexandre Julliard
parent 88c0f72bbf
commit 00f04ef3ce
57 changed files with 1292 additions and 253 deletions

View file

@ -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;
}

View file

@ -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;

View file

@ -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)

View file

@ -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"

View file

@ -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]"
};

View file

@ -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

View file

@ -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() {

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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"

View file

@ -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 ""

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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"

View file

@ -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 ""

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 "プロパティはアクセサーと値の両方になることはできません"

View file

@ -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 ""

View file

@ -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 "속성에 접근자와 값을 둘 다 지정할 수는 없습니다"

View file

@ -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"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 "Свойство не может одновременно иметь методы для доступа и значение"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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"

View file

@ -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 "Властивість не може одночасно мати доступ і значення"

View file

@ -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 ""

View file

@ -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 ""

View file

@ -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 "属性不能同时包含存取器和值"

View file

@ -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 "屬性不可同時有存取子和值"