From 7f1c98cac61609474a188e87c4d66680ad1b1094 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 1 Apr 2021 18:18:58 +0200 Subject: [PATCH] jscript: Support non-extensible objects in jsdisp_define_property. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/jscript/dispex.c | 3 +++ dlls/jscript/error.c | 1 + dlls/jscript/jscript.h | 1 + dlls/jscript/jscript.rc | 1 + dlls/jscript/resource.h | 1 + dlls/mshtml/tests/es5.js | 1 - po/ar.po | 14 +++++++++----- po/ast.po | 14 +++++++++----- po/bg.po | 14 +++++++++----- po/ca.po | 14 +++++++++----- po/cs.po | 14 +++++++++----- po/da.po | 14 +++++++++----- po/de.po | 14 +++++++++----- po/el.po | 14 +++++++++----- po/en.po | 14 +++++++++----- po/en_US.po | 14 +++++++++----- po/eo.po | 14 +++++++++----- po/es.po | 14 +++++++++----- po/fa.po | 14 +++++++++----- po/fi.po | 14 +++++++++----- po/fr.po | 14 +++++++++----- po/he.po | 14 +++++++++----- po/hi.po | 14 +++++++++----- po/hr.po | 14 +++++++++----- po/hu.po | 14 +++++++++----- po/it.po | 14 +++++++++----- po/ja.po | 14 +++++++++----- po/ko.po | 14 +++++++++----- po/lt.po | 14 +++++++++----- po/ml.po | 14 +++++++++----- po/nb_NO.po | 14 +++++++++----- po/nl.po | 14 +++++++++----- po/or.po | 14 +++++++++----- po/pa.po | 14 +++++++++----- po/pl.po | 14 +++++++++----- po/pt_BR.po | 14 +++++++++----- po/pt_PT.po | 14 +++++++++----- po/rm.po | 14 +++++++++----- po/ro.po | 14 +++++++++----- po/ru.po | 14 +++++++++----- po/si.po | 14 +++++++++----- po/sk.po | 14 +++++++++----- po/sl.po | 14 +++++++++----- po/sr_RS@cyrillic.po | 14 +++++++++----- po/sr_RS@latin.po | 14 +++++++++----- po/sv.po | 14 +++++++++----- po/ta.po | 14 +++++++++----- po/te.po | 14 +++++++++----- po/th.po | 14 +++++++++----- po/tr.po | 14 +++++++++----- po/uk.po | 14 +++++++++----- po/wa.po | 14 +++++++++----- po/wine.pot | 14 +++++++++----- po/zh_CN.po | 14 +++++++++----- po/zh_TW.po | 14 +++++++++----- 55 files changed, 448 insertions(+), 246 deletions(-) diff --git a/dlls/jscript/dispex.c b/dlls/jscript/dispex.c index 303e5bb8c99..9b11f607791 100644 --- a/dlls/jscript/dispex.c +++ b/dlls/jscript/dispex.c @@ -2503,6 +2503,9 @@ HRESULT jsdisp_define_property(jsdisp_t *obj, const WCHAR *name, property_desc_t if(FAILED(hres)) return hres; + if((!prop || prop->type == PROP_DELETED) && !obj->extensible) + return throw_error(obj->ctx, JS_E_OBJECT_NONEXTENSIBLE, name); + if(!prop && !(prop = alloc_prop(obj, name, PROP_DELETED, 0))) return E_OUTOFMEMORY; diff --git a/dlls/jscript/error.c b/dlls/jscript/error.c index 38a2485c858..bb9e5a28c8e 100644 --- a/dlls/jscript/error.c +++ b/dlls/jscript/error.c @@ -473,6 +473,7 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx) case JS_E_ENUMERATOR_EXPECTED: case JS_E_REGEXP_EXPECTED: case JS_E_ARRAY_EXPECTED: + case JS_E_OBJECT_NONEXTENSIBLE: case JS_E_NONCONFIGURABLE_REDEFINED: case JS_E_NONWRITABLE_MODIFIED: case JS_E_PROP_DESC_MISMATCH: diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index f27f660d802..750158aabd9 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -569,6 +569,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_PRECISION_OUT_OF_RANGE MAKE_JSERROR(IDS_PRECISION_OUT_OF_RANGE) #define JS_E_INVALID_LENGTH MAKE_JSERROR(IDS_INVALID_LENGTH) #define JS_E_ARRAY_EXPECTED MAKE_JSERROR(IDS_ARRAY_EXPECTED) +#define JS_E_OBJECT_NONEXTENSIBLE MAKE_JSERROR(IDS_OBJECT_NONEXTENSIBLE) #define JS_E_NONCONFIGURABLE_REDEFINED MAKE_JSERROR(IDS_NONCONFIGURABLE_REDEFINED) #define JS_E_NONWRITABLE_MODIFIED MAKE_JSERROR(IDS_NONWRITABLE_MODIFIED) #define JS_E_PROP_DESC_MISMATCH MAKE_JSERROR(IDS_PROP_DESC_MISMATCH) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index ac280e3371a..8533121ee77 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -70,6 +70,7 @@ STRINGTABLE IDS_INVALID_LENGTH "Array length must be a finite positive integer" IDS_ARRAY_EXPECTED "Array object expected" IDS_INVALID_WRITABLE_PROP_DESC "'writable' attribute on the property descriptor cannot be set to 'true' on this object" + IDS_OBJECT_NONEXTENSIBLE "Cannot define property '|': object is not extensible" IDS_NONCONFIGURABLE_REDEFINED "Cannot redefine non-configurable property '|'" IDS_NONWRITABLE_MODIFIED "Cannot modify non-writable property '|'" IDS_PROP_DESC_MISMATCH "Property cannot have both accessors and a value" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index 18c22bd04d9..d396d214c04 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -68,6 +68,7 @@ #define IDS_INVALID_LENGTH 0x13A5 #define IDS_ARRAY_EXPECTED 0x13A7 #define IDS_INVALID_WRITABLE_PROP_DESC 0x13AC +#define IDS_OBJECT_NONEXTENSIBLE 0x13D5 #define IDS_NONCONFIGURABLE_REDEFINED 0x13D6 #define IDS_NONWRITABLE_MODIFIED 0x13D7 /* FIXME: This is not compatible with native, but we would diff --git a/dlls/mshtml/tests/es5.js b/dlls/mshtml/tests/es5.js index 8d38070b387..5851278e983 100644 --- a/dlls/mshtml/tests/es5.js +++ b/dlls/mshtml/tests/es5.js @@ -950,7 +950,6 @@ sync_test("preventExtensions", function() { ok(!("x" in o), "x property added to o"); try { Object.defineProperty(o, "y", { value: true }); - todo_wine. ok(false, "expected exception"); }catch(e) { ok(e.name === "TypeError", "got " + e.name + " exception"); diff --git a/po/ar.po b/po/ar.po index a3b9a296730..01e83e76c56 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3891,15 +3891,15 @@ msgstr "البناء الشرطي معطل" msgid "Expected '@'" msgstr "متوقع ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3996,14 +3996,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ast.po b/po/ast.po index 2716d751a5c..c8ed6de09d4 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3772,15 +3772,15 @@ msgstr "" msgid "Expected '@'" msgstr "Esperábase «@»" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3871,14 +3871,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/bg.po b/po/bg.po index bfb6194858a..e5971a58c07 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3900,15 +3900,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Пре&гледай изходния код" @@ -4002,14 +4002,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ca.po b/po/ca.po index e31fe8b3222..c577fe65fbb 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3881,15 +3881,15 @@ msgstr "La compilació condicional està desactivada" msgid "Expected '@'" msgstr "S'esperava '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Error de compilació de Microsoft JScript" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Error d'entorn d'execució de Microsoft JScript" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error d'entorn d'execució desconegut" @@ -3982,14 +3982,18 @@ msgstr "" "'true' en aquest objecte" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "No es pot redefinir la propietat no configurable '|'" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "No es pot modificar la propietat no escrivible '|'" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "La propietat no pot tenir ambdós mètodes d'accés i un valor" diff --git a/po/cs.po b/po/cs.po index c40f6e6b98e..805a3c2fcbb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3832,15 +3832,15 @@ msgstr "Podmíněná kompilace je vypnutá" msgid "Expected '@'" msgstr "Očekáváno „@“" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3937,14 +3937,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/da.po b/po/da.po index 0f1d682a74c..5ff3eb2294c 100644 --- a/po/da.po +++ b/po/da.po @@ -3928,15 +3928,15 @@ msgstr "Betinget kompilering er slået fra" msgid "Expected '@'" msgstr "Forventet ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4037,14 +4037,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/de.po b/po/de.po index 4a3ab550894..8b3aa24e3d2 100644 --- a/po/de.po +++ b/po/de.po @@ -3866,15 +3866,15 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet" msgid "Expected '@'" msgstr "'@' erwartet" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript Übersetzungsfehler" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript Laufzeitfehler" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unbekannter Laufzeitfehler" @@ -3967,15 +3967,19 @@ msgstr "" "nicht auf 'true' gesetzt werden" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "" "Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben" diff --git a/po/el.po b/po/el.po index 8652b7fbacd..8143f85422b 100644 --- a/po/el.po +++ b/po/el.po @@ -3814,15 +3814,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "&Περιεχόμενα" @@ -3914,14 +3914,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/en.po b/po/en.po index 0b0653f056f..47d4a3189bf 100644 --- a/po/en.po +++ b/po/en.po @@ -3858,15 +3858,15 @@ msgstr "Conditional compilation is turned off" msgid "Expected '@'" msgstr "Expected '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -3959,14 +3959,18 @@ msgstr "" "this object" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "Cannot define property '|': object is not extensible" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/en_US.po b/po/en_US.po index d757e1321f7..e84317562b3 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3858,15 +3858,15 @@ msgstr "Conditional compilation is turned off" msgid "Expected '@'" msgstr "Expected '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Unknown runtime error" @@ -3959,14 +3959,18 @@ msgstr "" "this object" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "Cannot define property '|': object is not extensible" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value" diff --git a/po/eo.po b/po/eo.po index 3b3fec31fa7..3d03d8020aa 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3808,15 +3808,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -3911,14 +3911,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/es.po b/po/es.po index 8f8bfd794bf..86221a2183b 100644 --- a/po/es.po +++ b/po/es.po @@ -3874,15 +3874,15 @@ msgstr "La compilación condicional está desactivada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Error de compilación Microsoft JScript" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Error de ejecución Microsoft JScript" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Error desconocido en tiempo de ejecución" @@ -3975,14 +3975,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fa.po b/po/fa.po index 9297df16097..b8fdd3b34da 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3839,15 +3839,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3940,14 +3940,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/fi.po b/po/fi.po index b90e82136f8..18b901f9f13 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3852,15 +3852,15 @@ msgstr "Ehdollinen kääntäminen on pois käytöstä" msgid "Expected '@'" msgstr "Odotettiin merkkiä '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript -käännösvirhe" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript -suoritusvirhe" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Tuntematon ajonaikainen virhe" @@ -3952,14 +3952,18 @@ msgstr "" "Attribuutti 'writable' ei voi olla 'true' tämän objektin ominaisuuksissa" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Ei-konfiguroitavaa ominaisuutta '|' ei voi määritellä uudestaan" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa" diff --git a/po/fr.po b/po/fr.po index b8a1292f602..3a906af2b36 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3916,15 +3916,15 @@ msgstr "La compilation conditionnelle est désactivée" msgid "Expected '@'" msgstr "« @ » attendu" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4021,14 +4021,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/he.po b/po/he.po index 765a2d36811..4dc11912cb0 100644 --- a/po/he.po +++ b/po/he.po @@ -3892,15 +3892,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3996,14 +3996,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hi.po b/po/hi.po index 624113edf95..d8a8a961373 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3771,15 +3771,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3871,14 +3871,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hr.po b/po/hr.po index 42d95b9cfdf..1d904564b78 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3896,15 +3896,15 @@ msgstr "Kondicionalna kompilacija je isključena" msgid "Expected '@'" msgstr "Očekivano ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4001,14 +4001,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/hu.po b/po/hu.po index eee8646dcec..3fb067ad795 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3946,15 +3946,15 @@ msgstr "Feltételes fordítás kikapcsolva" msgid "Expected '@'" msgstr "Hiányzó ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4055,14 +4055,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/it.po b/po/it.po index 2c5e775233f..5eb26a63afa 100644 --- a/po/it.po +++ b/po/it.po @@ -3954,15 +3954,15 @@ msgstr "Compilazione condizionale disattivata" msgid "Expected '@'" msgstr "Richiesto ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4063,14 +4063,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ja.po b/po/ja.po index 615ec8a7027..f0f95f22069 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3856,15 +3856,15 @@ msgstr "条件コンパイルはオフにされています" msgid "Expected '@'" msgstr "'@'を期待していました" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript コンパイル エラー" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 実行時エラー" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知の実行時エラー" @@ -3957,14 +3957,18 @@ msgstr "" "きません" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "変更不可のプロパティ '|' は再定義できません" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "書換不可のプロパティ '|' は変更できません" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "プロパティはアクセサーと値の両方になることはできません" diff --git a/po/ko.po b/po/ko.po index df03623cda0..8c0c7dfe9bf 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3846,15 +3846,15 @@ msgstr "조건부 컴파일이 해제되었습니다" msgid "Expected '@'" msgstr "'@'가 필요합니다" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 컴파일 오류" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 런타임 오류" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "알 수 없는 런타임 오류" @@ -3946,14 +3946,18 @@ msgstr "" "속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "구성 가능하지 않은 속성 '|'을(를) 재정의할 수 없습니다" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "쓰기 가능하지 않은 속성 '|'을(를) 수정할 수 없습니다" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다" diff --git a/po/lt.po b/po/lt.po index befaa6ccda4..1f560063c37 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3861,15 +3861,15 @@ msgstr "Sąlyginis kompiliavimas išjungtas" msgid "Expected '@'" msgstr "Tikėtasi „@“" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript kompiliavimo klaida" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript vykdymo klaida" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Nežinoma vykdymo klaida" @@ -3962,14 +3962,18 @@ msgstr "" "objektui" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Negalima modifikuoti nerašomos savybės „|“" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės" diff --git a/po/ml.po b/po/ml.po index b37593c0172..05d9cc6a0bc 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3773,15 +3773,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3873,14 +3873,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 8e1477bc6f6..28ab501407a 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3872,15 +3872,15 @@ msgstr "Avhengig kompilering er skrudd av" msgid "Expected '@'" msgstr "Forventet '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3977,14 +3977,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/nl.po b/po/nl.po index 7dd88b9bd4b..89b56bf1fde 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3872,15 +3872,15 @@ msgstr "Conditionele compilatie is uitgeschakeld" msgid "Expected '@'" msgstr "Verwacht '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript compilatie fout" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime-fout" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Onbekende runtime-fout" @@ -3973,14 +3973,18 @@ msgstr "" "ingesteld voor dit object" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Kan onconfigureerbare eigenschap '|' niet herdefiniëren" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Kan onschrijfbare eigenschap '|' niet veranderen" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Eigenschap kan niet zowel accessors als een waarde hebben" diff --git a/po/or.po b/po/or.po index a63ee016d61..80771ff7251 100644 --- a/po/or.po +++ b/po/or.po @@ -3771,15 +3771,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3871,14 +3871,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pa.po b/po/pa.po index b9a3893558b..f9c6b946089 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3771,15 +3771,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3871,14 +3871,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pl.po b/po/pl.po index a05637dd09d..f2ddc1115ce 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3910,15 +3910,15 @@ msgstr "Warunkowa kompilacja jest wyłączona" msgid "Expected '@'" msgstr "Oczekiwano '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4015,14 +4015,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 81277b3b9e1..43042ee3fcf 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3871,15 +3871,15 @@ msgstr "Compilação condicional está desligada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript erro de compilação" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript erro de execução" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Erro de execução desconhecido" @@ -3972,14 +3972,18 @@ msgstr "" "'verdade' neste objeto" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Não pode redefinir propriedade não configurável '|'" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Não pode modificar propriedade não gravável '|'" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Propriedade não pode ter ambos acessores e valor" diff --git a/po/pt_PT.po b/po/pt_PT.po index 96f5afd5af8..0b7f08ba544 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3914,15 +3914,15 @@ msgstr "A compilação condicional está desactivada" msgid "Expected '@'" msgstr "Esperado '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4019,14 +4019,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/rm.po b/po/rm.po index e8fd3a5fe00..14539ecef63 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3800,15 +3800,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3900,14 +3900,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ro.po b/po/ro.po index a9bf81d7c23..60fadf0be0d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3869,15 +3869,15 @@ msgstr "Compilarea condițională este dezactivată" msgid "Expected '@'" msgstr "Se așteaptă „@”" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3976,14 +3976,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ru.po b/po/ru.po index 6f3266b466d..849992d4fff 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3876,15 +3876,15 @@ msgstr "Условная компиляция отключена" msgid "Expected '@'" msgstr "Ожидается «@»" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3981,14 +3981,18 @@ msgid "" msgstr "Невозможно установить атрибут «writable» в «true» для этого объекта" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Невозможно переопределить ненастраиваемое свойство «|»" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Невозможно изменить свойство «|»" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Свойство не может одновременно иметь методы для доступа и значение" diff --git a/po/si.po b/po/si.po index de8fcf740cd..5a18390a7a3 100644 --- a/po/si.po +++ b/po/si.po @@ -3801,15 +3801,15 @@ msgstr "" msgid "Expected '@'" msgstr "අපේක්ෂා කරේ '='" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3906,14 +3906,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sk.po b/po/sk.po index 97a0281a148..1170a24b1e8 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3845,15 +3845,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3950,14 +3950,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sl.po b/po/sl.po index 9f2f0b3305d..eb9fc01d6e7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3948,15 +3948,15 @@ msgstr "Pogojno kodno prevajanje je izklopljeno" msgid "Expected '@'" msgstr "Pričakovan je bil ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -4057,14 +4057,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 4d4df718ac2..676189f1e59 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3927,15 +3927,15 @@ msgstr "" msgid "Expected '@'" msgstr "Очекивано ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Непознат извор" @@ -4036,14 +4036,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index d37974c2cf3..70d5a10bc30 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -4007,15 +4007,15 @@ msgstr "" msgid "Expected '@'" msgstr "Očekivano ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy msgid "Unknown runtime error" msgstr "Nepoznat izvor" @@ -4116,14 +4116,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/sv.po b/po/sv.po index fa92c34dd7c..3e6ad6793d4 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3893,15 +3893,15 @@ msgstr "Villkorlig kompilering är avslagen" msgid "Expected '@'" msgstr "'@' förväntades" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3998,14 +3998,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/ta.po b/po/ta.po index 58a1d87edf4..9d2949a03c8 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3736,15 +3736,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3835,14 +3835,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/te.po b/po/te.po index b1bbbac2062..744878bd894 100644 --- a/po/te.po +++ b/po/te.po @@ -3771,15 +3771,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3871,14 +3871,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/th.po b/po/th.po index 37b27a6da1b..6f00210cd48 100644 --- a/po/th.po +++ b/po/th.po @@ -3832,15 +3832,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown printer driver." msgid "Unknown runtime error" @@ -3936,14 +3936,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/tr.po b/po/tr.po index 1eef4c7c298..5c8e5017355 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3865,15 +3865,15 @@ msgstr "Şartlı derleme kapatıldı" msgid "Expected '@'" msgstr "Beklenen '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript derleme hatası" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript çalışma zamanı hatası" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "Bilinmeyen çalışma zamanı hatası" @@ -3966,14 +3966,18 @@ msgstr "" "ayarlananmıyor" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "'|' yazılamayan nesnesi değiştirilemiyor" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Nesnenin erişimcisi ve değeri birden olamaz" diff --git a/po/uk.po b/po/uk.po index 21bb5115266..4125a697001 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3876,15 +3876,15 @@ msgstr "Умовна компіляція вимкнена" msgid "Expected '@'" msgstr "Очікується ';'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3978,14 +3978,18 @@ msgstr "" "Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "Неможливо змінити властивість, яка не підлягає запису '|'" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "Властивість не може одночасно мати доступ і значення" diff --git a/po/wa.po b/po/wa.po index 53576cc6eb7..272c2a339af 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3834,15 +3834,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3935,14 +3935,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index e936db26a27..90df990fa55 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3727,15 +3727,15 @@ msgstr "" msgid "Expected '@'" msgstr "" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "" @@ -3826,14 +3826,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 9ff2beda952..10ee1388df8 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3811,15 +3811,15 @@ msgstr "条件编译已关闭" msgid "Expected '@'" msgstr "期望 '@'" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "Microsoft JScript 编译错误" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "Microsoft JScript 运行时错误" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 msgid "Unknown runtime error" msgstr "未知运行时错误" @@ -3910,14 +3910,18 @@ msgid "" msgstr "无法在此对象上更改属性描述符中的“writable”属性为“true”" #: dlls/jscript/jscript.rc:74 +msgid "Cannot define property '|': object is not extensible" +msgstr "" + +#: dlls/jscript/jscript.rc:75 msgid "Cannot redefine non-configurable property '|'" msgstr "无法重定义不可配置的属性“|”" -#: dlls/jscript/jscript.rc:75 +#: dlls/jscript/jscript.rc:76 msgid "Cannot modify non-writable property '|'" msgstr "无法更改不可写的属性“|”" -#: dlls/jscript/jscript.rc:76 +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr "属性不能同时包含存取器和值" diff --git a/po/zh_TW.po b/po/zh_TW.po index dd2ba85d93c..e74456ca4f4 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3861,15 +3861,15 @@ msgstr "條件編譯已被關閉" msgid "Expected '@'" msgstr "預期為 ;" -#: dlls/jscript/jscript.rc:78 +#: dlls/jscript/jscript.rc:79 msgid "Microsoft JScript compilation error" msgstr "" -#: dlls/jscript/jscript.rc:79 +#: dlls/jscript/jscript.rc:80 msgid "Microsoft JScript runtime error" msgstr "" -#: dlls/jscript/jscript.rc:80 dlls/vbscript/vbscript.rc:64 +#: dlls/jscript/jscript.rc:81 dlls/vbscript/vbscript.rc:64 #, fuzzy #| msgid "Unknown error" msgid "Unknown runtime error" @@ -3966,14 +3966,18 @@ msgid "" msgstr "" #: dlls/jscript/jscript.rc:74 -msgid "Cannot redefine non-configurable property '|'" +msgid "Cannot define property '|': object is not extensible" msgstr "" #: dlls/jscript/jscript.rc:75 -msgid "Cannot modify non-writable property '|'" +msgid "Cannot redefine non-configurable property '|'" msgstr "" #: dlls/jscript/jscript.rc:76 +msgid "Cannot modify non-writable property '|'" +msgstr "" + +#: dlls/jscript/jscript.rc:77 msgid "Property cannot have both accessors and a value" msgstr ""