jscript: Implement DataView setters.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
parent
00f04ef3ce
commit
556e3349ab
56 changed files with 756 additions and 303 deletions
|
@ -223,6 +223,175 @@ static HRESULT DataView_get_byteOffset(script_ctx_t *ctx, jsval_t vthis, WORD fl
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
static inline void copy_type_data(void *dst, const void *src, unsigned type_size, BOOL little_endian)
|
||||
{
|
||||
const BYTE *in = src;
|
||||
BYTE *out = dst;
|
||||
unsigned i;
|
||||
|
||||
if(little_endian)
|
||||
memcpy(out, in, type_size);
|
||||
else
|
||||
for(i = 0; i < type_size; i++)
|
||||
out[i] = in[type_size - i - 1];
|
||||
}
|
||||
|
||||
static HRESULT set_data(script_ctx_t *ctx, jsval_t vthis, unsigned argc, jsval_t *argv, unsigned type_size, const void *val)
|
||||
{
|
||||
BOOL little_endian = FALSE;
|
||||
DataViewInstance *view;
|
||||
HRESULT hres;
|
||||
DWORD offset;
|
||||
BYTE *data;
|
||||
double n;
|
||||
|
||||
if(!(view = dataview_this(vthis)))
|
||||
return JS_E_NOT_DATAVIEW;
|
||||
if(is_undefined(argv[0]) || is_undefined(argv[1]))
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
|
||||
hres = to_integer(ctx, argv[0], &n);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
if(n < 0.0 || n + type_size > view->size)
|
||||
return JS_E_DATAVIEW_INVALID_ACCESS;
|
||||
|
||||
offset = n;
|
||||
data = &view->buffer->buf[view->offset + offset];
|
||||
|
||||
if(type_size == 1) {
|
||||
data[0] = *(const BYTE*)val;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
if(argc > 2) {
|
||||
hres = to_boolean(argv[2], &little_endian);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
}
|
||||
|
||||
copy_type_data(data, val, type_size, little_endian);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT DataView_setFloat32(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
||||
{
|
||||
HRESULT hres;
|
||||
double n;
|
||||
float v;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(argc < 2)
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
hres = to_number(ctx, argv[1], &n);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
v = n; /* FIXME: don't assume rounding mode is round-to-nearest ties-to-even */
|
||||
|
||||
hres = set_data(ctx, vthis, argc, argv, sizeof(v), &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(r) *r = jsval_undefined();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT DataView_setFloat64(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
||||
{
|
||||
HRESULT hres;
|
||||
double v;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(argc < 2)
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
hres = to_number(ctx, argv[1], &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
hres = set_data(ctx, vthis, argc, argv, sizeof(v), &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(r) *r = jsval_undefined();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT DataView_setInt8(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
||||
{
|
||||
HRESULT hres;
|
||||
INT32 n;
|
||||
INT8 v;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(argc < 2)
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
hres = to_int32(ctx, argv[1], &n);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
v = n;
|
||||
|
||||
hres = set_data(ctx, vthis, argc, argv, sizeof(v), &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(r) *r = jsval_undefined();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT DataView_setInt16(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
||||
{
|
||||
HRESULT hres;
|
||||
INT32 n;
|
||||
INT16 v;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(argc < 2)
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
hres = to_int32(ctx, argv[1], &n);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
v = n;
|
||||
|
||||
hres = set_data(ctx, vthis, argc, argv, sizeof(v), &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(r) *r = jsval_undefined();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT DataView_setInt32(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
||||
{
|
||||
HRESULT hres;
|
||||
INT32 v;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(argc < 2)
|
||||
return JS_E_DATAVIEW_NO_ARGUMENT;
|
||||
hres = to_int32(ctx, argv[1], &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
hres = set_data(ctx, vthis, argc, argv, sizeof(v), &v);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(r) *r = jsval_undefined();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const builtin_prop_t DataView_props[] = {
|
||||
{L"setFloat32", DataView_setFloat32, PROPF_METHOD|1},
|
||||
{L"setFloat64", DataView_setFloat64, PROPF_METHOD|1},
|
||||
{L"setInt16", DataView_setInt16, PROPF_METHOD|1},
|
||||
{L"setInt32", DataView_setInt32, PROPF_METHOD|1},
|
||||
{L"setInt8", DataView_setInt8, PROPF_METHOD|1},
|
||||
{L"setUint16", DataView_setInt16, PROPF_METHOD|1},
|
||||
{L"setUint32", DataView_setInt32, PROPF_METHOD|1},
|
||||
{L"setUint8", DataView_setInt8, PROPF_METHOD|1},
|
||||
};
|
||||
|
||||
static void DataView_destructor(jsdisp_t *dispex)
|
||||
{
|
||||
DataViewInstance *view = dataview_from_jsdisp(dispex);
|
||||
|
@ -240,8 +409,8 @@ static HRESULT DataView_gc_traverse(struct gc_ctx *gc_ctx, enum gc_traverse_op o
|
|||
static const builtin_info_t DataView_info = {
|
||||
JSCLASS_DATAVIEW,
|
||||
NULL,
|
||||
0,
|
||||
NULL,
|
||||
ARRAY_SIZE(DataView_props),
|
||||
DataView_props,
|
||||
DataView_destructor,
|
||||
NULL,
|
||||
NULL,
|
||||
|
|
|
@ -496,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_ACCESS:
|
||||
case JS_E_DATAVIEW_INVALID_OFFSET:
|
||||
constr = ctx->range_error_constr;
|
||||
break;
|
||||
|
|
|
@ -583,6 +583,7 @@ static inline HRESULT disp_call_value(script_ctx_t *ctx, IDispatch *disp, jsval_
|
|||
#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_ACCESS MAKE_JSERROR(IDS_DATAVIEW_INVALID_ACCESS)
|
||||
#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)
|
||||
|
|
|
@ -78,6 +78,7 @@ STRINGTABLE
|
|||
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_ACCESS "DataView operation access beyond specified buffer length"
|
||||
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"
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
#define IDS_NONWRITABLE_MODIFIED 0x13D7
|
||||
#define IDS_NOT_DATAVIEW 0x13DF
|
||||
#define IDS_DATAVIEW_NO_ARGUMENT 0x13E0
|
||||
#define IDS_DATAVIEW_INVALID_ACCESS 0x13E1
|
||||
#define IDS_DATAVIEW_INVALID_OFFSET 0x13E2
|
||||
#define IDS_WRONG_THIS 0x13FC
|
||||
#define IDS_KEY_NOT_OBJECT 0x13FD
|
||||
|
|
|
@ -34,6 +34,7 @@ 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_ACCESS = 0x800a13e1;
|
||||
var JS_E_DATAVIEW_INVALID_OFFSET = 0x800a13e2;
|
||||
var JS_E_WRONG_THIS = 0x800a13fc;
|
||||
|
||||
|
@ -1688,6 +1689,17 @@ sync_test("RegExp", function() {
|
|||
sync_test("ArrayBuffers & Views", function() {
|
||||
var i, r, buf, view, view2, arr;
|
||||
|
||||
var types = [
|
||||
[ "Int8", 1 ],
|
||||
[ "Uint8", 1 ],
|
||||
[ "Int16", 2 ],
|
||||
[ "Uint16", 2 ],
|
||||
[ "Int32", 4 ],
|
||||
[ "Uint32", 4 ],
|
||||
[ "Float32", 4 ],
|
||||
[ "Float64", 8 ]
|
||||
];
|
||||
|
||||
function test_own_props(obj_name, props) {
|
||||
var obj = eval(obj_name);
|
||||
for(var i = 0; i < props.length; i++)
|
||||
|
@ -1738,7 +1750,11 @@ sync_test("ArrayBuffers & Views", function() {
|
|||
test_own_data_prop_desc(buf, "byteLength", false, false, false);
|
||||
|
||||
test_own_props("DataView.prototype", [
|
||||
"buffer", "byteLength", "byteOffset"
|
||||
"buffer", "byteLength", "byteOffset",
|
||||
"setInt8", "setUint8",
|
||||
"setInt16", "setUint16",
|
||||
"setInt32", "setUint32",
|
||||
"setFloat32", "setFloat64"
|
||||
]);
|
||||
|
||||
r = Object.prototype.toString.call(new DataView(buf));
|
||||
|
@ -1852,6 +1868,70 @@ sync_test("ArrayBuffers & Views", function() {
|
|||
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);
|
||||
|
||||
for(i = 0; i < types.length; i++) {
|
||||
var method = "set" + types[i][0], offs = 11 - types[i][1];
|
||||
r = DataView.prototype[method].length;
|
||||
ok(r === 1, "DataView.prototype." + method + ".length = " + r);
|
||||
try {
|
||||
view[method]();
|
||||
ok(false, "view." + method + "() did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_DATAVIEW_NO_ARGUMENT, "view." + method + "() threw " + n);
|
||||
}
|
||||
try {
|
||||
view[method](0);
|
||||
ok(false, "view." + method + "(0) did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_DATAVIEW_NO_ARGUMENT, "view." + method + "(0) threw " + n);
|
||||
}
|
||||
try {
|
||||
view[method](-1, 0);
|
||||
ok(false, "view." + method + "(-1, 0) did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_DATAVIEW_INVALID_ACCESS, "view." + method + "(-1, 0) threw " + n);
|
||||
}
|
||||
try {
|
||||
view[method](offs, 0);
|
||||
ok(false, "view." + method + "(" + offs + ", 0) did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_DATAVIEW_INVALID_ACCESS, "view." + method + "(" + offs + ", 0) threw " + n);
|
||||
}
|
||||
try {
|
||||
view[method].call(null, 0, 0);
|
||||
ok(false, "view." + method + "(0, 0) with null context did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_NOT_DATAVIEW, "view." + method + "(0, 0) with null context threw " + n);
|
||||
}
|
||||
try {
|
||||
view[method].call({}, 0, 0);
|
||||
ok(false, "view." + method + "(0, 0) with an object context did not throw exception");
|
||||
}catch(ex) {
|
||||
var n = ex.number >>> 0;
|
||||
ok(n === JS_E_NOT_DATAVIEW, "view." + method + "(0, 0) with an object context threw " + n);
|
||||
}
|
||||
}
|
||||
|
||||
r = view.setInt8(1, -257);
|
||||
ok(r === undefined, "view.setInt8(1, -1) returned " + r);
|
||||
r = view.setUint32(2, "12345678", true);
|
||||
ok(r === undefined, "view.setUint32(2, '12345678', true) returned " + r);
|
||||
r = view.setInt16(3, 65535, true);
|
||||
ok(r === undefined, "view.setInt16(3, 65535) returned " + r);
|
||||
r = view.setUint32(0, -2, true);
|
||||
ok(r === undefined, "view.setUint32(0, -2) returned " + r);
|
||||
r = view.setFloat32(6, 1234.5, true);
|
||||
ok(r === undefined, "view.setFloat32(6, 1234.5) returned " + r);
|
||||
|
||||
/* setters differing only in signedness have identical behavior, but they're not the same methods */
|
||||
ok(view.setInt8 !== view.setUint8, "setInt8 and setUint8 are the same method");
|
||||
ok(view.setInt16 !== view.setUint16, "setInt16 and setUint16 are the same method");
|
||||
ok(view.setInt32 !== view.setUint32, "setInt32 and setUint32 are the same method");
|
||||
});
|
||||
|
||||
sync_test("builtin_context", function() {
|
||||
|
|
16
po/ar.po
16
po/ar.po
|
@ -4001,15 +4001,15 @@ msgstr "البناء الشرطي معطل"
|
|||
msgid "Expected '@'"
|
||||
msgstr "متوقع ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4142,22 +4142,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'[object]' ليس عنصر تاريخ"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[object]' ليس عنصر تاريخ"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ast.po
16
po/ast.po
|
@ -3950,15 +3950,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4081,18 +4081,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/bg.po
16
po/bg.po
|
@ -4002,15 +4002,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Пре&гледай изходния код"
|
||||
|
@ -4136,18 +4136,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ca.po
16
po/ca.po
|
@ -3977,15 +3977,15 @@ msgstr "La compilació condicional està desactivada"
|
|||
msgid "Expected '@'"
|
||||
msgstr "S'esperava '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Error de compilació de Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Error d'entorn d'execució de Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Error d'entorn d'execució desconegut"
|
||||
|
||||
|
@ -4112,18 +4112,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' no és un objecte de |"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'clau' no és un objecte"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
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"
|
||||
|
||||
|
|
16
po/cs.po
16
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:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4083,22 +4083,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/da.po
16
po/da.po
|
@ -4034,15 +4034,15 @@ msgstr "Betinget kompilering er slået fra"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Forventet ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4179,22 +4179,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/de.po
16
po/de.po
|
@ -3964,15 +3964,15 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet"
|
|||
msgid "Expected '@'"
|
||||
msgstr "'@' erwartet"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript Übersetzungsfehler"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript Laufzeitfehler"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Unbekannter Laufzeitfehler"
|
||||
|
||||
|
@ -4100,18 +4100,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' ist kein |-Objekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' ist kein Objekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben"
|
||||
|
||||
|
|
16
po/el.po
16
po/el.po
|
@ -3904,15 +3904,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "&Περιεχόμενα"
|
||||
|
@ -4036,18 +4036,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/en.po
16
po/en.po
|
@ -3954,15 +3954,15 @@ msgstr "Conditional compilation is turned off"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Expected '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript compilation error"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript runtime error"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Unknown runtime error"
|
||||
|
||||
|
@ -4087,18 +4087,22 @@ 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 operation access beyond specified buffer length"
|
||||
msgstr "DataView operation access beyond specified buffer length"
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr "DataView constructor argument offset is invalid"
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' is not a | object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' is not an object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Property cannot have both accessors and a value"
|
||||
|
||||
|
|
16
po/en_US.po
16
po/en_US.po
|
@ -3954,15 +3954,15 @@ msgstr "Conditional compilation is turned off"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Expected '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript compilation error"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript runtime error"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Unknown runtime error"
|
||||
|
||||
|
@ -4087,18 +4087,22 @@ 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 operation access beyond specified buffer length"
|
||||
msgstr "DataView operation access beyond specified buffer length"
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr "DataView constructor argument offset is invalid"
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' is not a | object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' is not an object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Property cannot have both accessors and a value"
|
||||
|
||||
|
|
16
po/eo.po
16
po/eo.po
|
@ -3910,15 +3910,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown printer driver."
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4045,18 +4045,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/es.po
16
po/es.po
|
@ -3980,15 +3980,15 @@ msgstr "La compilación condicional está desactivada"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Esperado '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Error de compilación Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Error de ejecución Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Error desconocido en tiempo de ejecución"
|
||||
|
||||
|
@ -4119,22 +4119,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "La propiedad no puede tener tanto descriptores de acceso como un valor"
|
||||
|
||||
|
|
16
po/fa.po
16
po/fa.po
|
@ -3930,15 +3930,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4063,18 +4063,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/fi.po
16
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:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript -käännösvirhe"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript -suoritusvirhe"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Tuntematon ajonaikainen virhe"
|
||||
|
||||
|
@ -4082,18 +4082,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' ei ole |-objekti"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' ei ole objekti"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa"
|
||||
|
||||
|
|
16
po/fr.po
16
po/fr.po
|
@ -3976,15 +3976,15 @@ msgstr "La compilation conditionnelle est désactivée"
|
|||
msgid "Expected '@'"
|
||||
msgstr "« @ » attendu"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Erreur de compilation Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Erreur d'exécution de Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Erreur d'exécution inconnue"
|
||||
|
||||
|
@ -4111,22 +4111,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "La propriété ne peut à la fois avoir une valeur et des accesseurs"
|
||||
|
||||
|
|
16
po/he.po
16
po/he.po
|
@ -3993,15 +3993,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4133,22 +4133,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'%s' is not a valid port name"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'%s' אינו שם תקני לפתחה"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'%s' is not a valid port name"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'%s' אינו שם תקני לפתחה"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/hi.po
16
po/hi.po
|
@ -3860,15 +3860,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3992,18 +3992,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/hr.po
16
po/hr.po
|
@ -4006,15 +4006,15 @@ msgstr "Kondicionalna kompilacija je isključena"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Očekivano ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4147,22 +4147,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'[object]' nije vremenski objekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[object]' nije vremenski objekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/hu.po
16
po/hu.po
|
@ -4052,15 +4052,15 @@ msgstr "Feltételes fordítás kikapcsolva"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Hiányzó ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4197,22 +4197,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/it.po
16
po/it.po
|
@ -4060,15 +4060,15 @@ msgstr "Compilazione condizionale disattivata"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Richiesto ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4205,22 +4205,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[oggetto]' non è un oggetto data"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ja.po
16
po/ja.po
|
@ -3946,15 +3946,15 @@ msgstr "条件コンパイルはオフにされています"
|
|||
msgid "Expected '@'"
|
||||
msgstr "'@'を期待していました"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript コンパイル エラー"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript 実行時エラー"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "未知の実行時エラー"
|
||||
|
||||
|
@ -4081,18 +4081,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' は | オブジェクトではありません"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' はオブジェクトではありません"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "プロパティはアクセサーと値の両方になることはできません"
|
||||
|
||||
|
|
16
po/ka.po
16
po/ka.po
|
@ -3936,15 +3936,15 @@ msgstr "პირობითი აგება გამორთულია"
|
|||
msgid "Expected '@'"
|
||||
msgstr "მოველოდი '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript აგების შეცდომა"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript გაშვების გარემოს შეცდომა"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "უცნობი გაშვების გარემოს შეცდომა"
|
||||
|
||||
|
@ -4070,20 +4070,24 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this'-ი | ტიპის ობიექტი არაა"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a | object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'this'-ი | ტიპის ობიექტი არაა"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ko.po
16
po/ko.po
|
@ -3936,15 +3936,15 @@ msgstr "조건부 컴파일이 해제되었습니다"
|
|||
msgid "Expected '@'"
|
||||
msgstr "'@'가 필요합니다"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript 컴파일 오류"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript 런타임 오류"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "알 수 없는 런타임 오류"
|
||||
|
||||
|
@ -4070,18 +4070,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this'는 '|' 개체가 아닙니다"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key'는 개체가 아닙니다"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다"
|
||||
|
||||
|
|
16
po/lt.po
16
po/lt.po
|
@ -3957,15 +3957,15 @@ msgstr "Sąlyginis kompiliavimas išjungtas"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Tikėtasi „@“"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript kompiliavimo klaida"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript vykdymo klaida"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Nežinoma vykdymo klaida"
|
||||
|
||||
|
@ -4092,18 +4092,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "„Šis“ nėra | objektas"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "„raktas“ nėra objektas"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės"
|
||||
|
||||
|
|
16
po/ml.po
16
po/ml.po
|
@ -3862,15 +3862,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3994,18 +3994,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/nb_NO.po
16
po/nb_NO.po
|
@ -3976,15 +3976,15 @@ msgstr "Avhengig kompilering er skrudd av"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Forventet '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript kompileringsfeil"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4117,22 +4117,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[object]' er ikke et dataobjekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/nl.po
16
po/nl.po
|
@ -3967,15 +3967,15 @@ msgstr "Conditionele compilatie is uitgeschakeld"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Verwacht '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript compilatie fout"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript runtime-fout"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Onbekende runtime-fout"
|
||||
|
||||
|
@ -4102,18 +4102,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' is geen | object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' is geen object"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Eigenschap kan niet zowel accessors als een waarde hebben"
|
||||
|
||||
|
|
16
po/or.po
16
po/or.po
|
@ -3860,15 +3860,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3992,18 +3992,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/pa.po
16
po/pa.po
|
@ -3860,15 +3860,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3992,18 +3992,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/pl.po
16
po/pl.po
|
@ -3974,15 +3974,15 @@ msgstr "Warunkowa kompilacja jest wyłączona"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Oczekiwano '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Błąd kompilacji Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Błąd biblioteki uruchomieniowej Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Nieznany błąd biblioteki uruchomieniowej"
|
||||
|
||||
|
@ -4109,18 +4109,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' nie jest obiektem |"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' nie jest obiektem"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Własność nie może mieć zarówno akcesorów i wartości"
|
||||
|
||||
|
|
16
po/pt_BR.po
16
po/pt_BR.po
|
@ -3975,15 +3975,15 @@ msgstr "Compilação condicional está desligada"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Esperado '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript erro de compilação"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript erro de execução"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Erro de execução desconhecido"
|
||||
|
||||
|
@ -4114,22 +4114,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Propriedade não pode ter ambos acessores e valor"
|
||||
|
||||
|
|
16
po/pt_PT.po
16
po/pt_PT.po
|
@ -4024,15 +4024,15 @@ msgstr "A compilação condicional está desactivada"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Esperado '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4165,22 +4165,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/rm.po
16
po/rm.po
|
@ -3890,15 +3890,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4022,18 +4022,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ro.po
16
po/ro.po
|
@ -3977,15 +3977,15 @@ msgstr "Compilarea condițională este dezactivată"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Se așteaptă „@”"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4120,22 +4120,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, 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:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ru.po
16
po/ru.po
|
@ -3982,15 +3982,15 @@ msgstr "Условная компиляция отключена"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Ожидается «@»"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Ошибка компиляции Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Ошибка выполнения Microsoft JScript"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Неизвестная ошибка времени выполнения"
|
||||
|
||||
|
@ -4121,22 +4121,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a Map object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "«this» не объект типа «Map»"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a Map object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "«this» не объект типа «Map»"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Свойство не может одновременно иметь методы для доступа и значение"
|
||||
|
||||
|
|
16
po/si.po
16
po/si.po
|
@ -3909,15 +3909,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr "අපේක්ෂා කරේ '='"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4050,22 +4050,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'%s' is not a valid port name"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'%s' වලංගු තොට නමක් නෙමෙයි."
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'%s' is not a valid port name"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'%s' වලංගු තොට නමක් නෙමෙයි."
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/sk.po
16
po/sk.po
|
@ -3946,15 +3946,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4085,18 +4085,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/sl.po
16
po/sl.po
|
@ -4054,15 +4054,15 @@ msgstr "Pogojno kodno prevajanje je izklopljeno"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Pričakovan je bil ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4199,22 +4199,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'[object]' ni predmet datuma"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[object]' ni predmet datuma"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -4029,15 +4029,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr "Очекивано ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Непознат извор"
|
||||
|
@ -4173,22 +4173,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "„[object]“ није временски објекат"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "„[object]“ није временски објекат"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -4115,15 +4115,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr "Očekivano ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Nepoznat izvor"
|
||||
|
@ -4259,22 +4259,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "„[object]“ nije vremenski objekat"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "„[object]“ nije vremenski objekat"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/sv.po
16
po/sv.po
|
@ -4003,15 +4003,15 @@ msgstr "Villkorlig kompilering är avslagen"
|
|||
msgid "Expected '@'"
|
||||
msgstr "'@' förväntades"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4144,22 +4144,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, 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
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'[object]' is not a date object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'[object]' är inte ett datumobjekt"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/ta.po
16
po/ta.po
|
@ -3876,15 +3876,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4007,18 +4007,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/te.po
16
po/te.po
|
@ -3860,15 +3860,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3992,18 +3992,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/th.po
16
po/th.po
|
@ -3922,15 +3922,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown printer driver."
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4058,18 +4058,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/tr.po
16
po/tr.po
|
@ -3959,15 +3959,15 @@ msgstr "Şartlı derleme kapatıldı"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Beklenen '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript derleme hatası"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript çalışma zamanı hatası"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "Bilinmeyen çalışma zamanı hatası"
|
||||
|
||||
|
@ -4096,20 +4096,24 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'bu' bir | nesne değil"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a | object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'bu' bir | nesne değil"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Nesnenin erişimcisi ve değeri birden olamaz"
|
||||
|
||||
|
|
16
po/uk.po
16
po/uk.po
|
@ -3974,15 +3974,15 @@ msgstr "Умовна компіляція вимкнена"
|
|||
msgid "Expected '@'"
|
||||
msgstr "Очікується ';'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
#, fuzzy
|
||||
#| msgid "Unknown error"
|
||||
msgid "Unknown runtime error"
|
||||
|
@ -4114,22 +4114,26 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a Map object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'це' не є Map об'єкта"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a Map object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'це' не є Map об'єкта"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Властивість не може одночасно мати доступ і значення"
|
||||
|
||||
|
|
16
po/wa.po
16
po/wa.po
|
@ -3926,15 +3926,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4059,18 +4059,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/wine.pot
16
po/wine.pot
|
@ -3815,15 +3815,15 @@ msgstr ""
|
|||
msgid "Expected '@'"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3946,18 +3946,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "'this' is not a | object"
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'key' is not an object"
|
||||
msgid "'this' is not a | object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
16
po/zh_CN.po
16
po/zh_CN.po
|
@ -3902,15 +3902,15 @@ msgstr "条件编译已关闭"
|
|||
msgid "Expected '@'"
|
||||
msgstr "期望 '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript 编译错误"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript 运行时错误"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "未知运行时错误"
|
||||
|
||||
|
@ -4035,18 +4035,22 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' 不是 | 对象"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'key' 不是一个对象"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "属性不能同时包含存取器和值"
|
||||
|
||||
|
|
16
po/zh_TW.po
16
po/zh_TW.po
|
@ -3914,15 +3914,15 @@ msgstr "條件編譯已關閉"
|
|||
msgid "Expected '@'"
|
||||
msgstr "預期為 '@'"
|
||||
|
||||
#: dlls/jscript/jscript.rc:87
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
msgid "Microsoft JScript compilation error"
|
||||
msgstr "Microsoft JScript 編譯錯誤"
|
||||
|
||||
#: dlls/jscript/jscript.rc:88
|
||||
#: dlls/jscript/jscript.rc:89
|
||||
msgid "Microsoft JScript runtime error"
|
||||
msgstr "Microsoft JScript 執行期錯誤"
|
||||
|
||||
#: dlls/jscript/jscript.rc:89 dlls/vbscript/vbscript.rc:64
|
||||
#: dlls/jscript/jscript.rc:90 dlls/vbscript/vbscript.rc:64
|
||||
msgid "Unknown runtime error"
|
||||
msgstr "不明執行期錯誤"
|
||||
|
||||
|
@ -4049,20 +4049,24 @@ 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"
|
||||
msgid "DataView operation access beyond specified buffer length"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:83
|
||||
msgid "DataView constructor argument offset is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
msgid "'this' is not a | object"
|
||||
msgstr "'this' 不是一個 | 物件"
|
||||
|
||||
#: dlls/jscript/jscript.rc:84
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#, fuzzy
|
||||
#| msgid "'this' is not a | object"
|
||||
msgid "'key' is not an object"
|
||||
msgstr "'this' 不是一個 | 物件"
|
||||
|
||||
#: dlls/jscript/jscript.rc:85
|
||||
#: dlls/jscript/jscript.rc:86
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "屬性不可同時有存取子和值"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue