From 121851955e697b3158cbcf31801164eb627e78e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Iv=C4=83ncescu?= Date: Thu, 14 Apr 2022 19:24:46 +0300 Subject: [PATCH] jscript: Use proper error description for invalid Set 'this'. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Map and Set share the same error code, but the description given is different, so we need to throw it manually. Signed-off-by: Gabriel Ivăncescu Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/jscript/jscript.rc | 2 +- dlls/jscript/set.c | 30 +++++++++++++++--------------- po/ar.po | 2 +- po/ast.po | 2 +- po/bg.po | 2 +- po/ca.po | 4 +++- po/cs.po | 2 +- po/da.po | 2 +- po/de.po | 4 +++- po/el.po | 2 +- po/en.po | 4 ++-- po/en_US.po | 4 ++-- po/eo.po | 2 +- po/es.po | 4 +++- po/fa.po | 2 +- po/fi.po | 4 +++- po/fr.po | 4 +++- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/it.po | 2 +- po/ja.po | 4 +++- po/ko.po | 4 +++- po/lt.po | 4 +++- po/ml.po | 2 +- po/nb_NO.po | 2 +- po/nl.po | 4 +++- po/or.po | 2 +- po/pa.po | 2 +- po/pl.po | 4 +++- po/pt_BR.po | 4 +++- po/pt_PT.po | 2 +- po/rm.po | 2 +- po/ro.po | 2 +- po/ru.po | 4 +++- po/si.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sr_RS@cyrillic.po | 2 +- po/sr_RS@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tr.po | 2 +- po/uk.po | 4 +++- po/wa.po | 2 +- po/wine.pot | 2 +- po/zh_CN.po | 4 +++- po/zh_TW.po | 4 +++- 51 files changed, 97 insertions(+), 67 deletions(-) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index c931eef2dba..2fd0b33ca12 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -75,7 +75,7 @@ STRINGTABLE IDS_OBJECT_NONEXTENSIBLE "Cannot define property '|': object is not extensible" IDS_NONCONFIGURABLE_REDEFINED "Cannot redefine non-configurable property '|'" IDS_NONWRITABLE_MODIFIED "Cannot modify non-writable property '|'" - IDS_MAP_EXPECTED "'this' is not a Map object" + IDS_MAP_EXPECTED "'this' is not a | object" IDS_PROP_DESC_MISMATCH "Property cannot have both accessors and a value" IDS_COMPILATION_ERROR "Microsoft JScript compilation error" diff --git a/dlls/jscript/set.c b/dlls/jscript/set.c index f3e8fe664c8..dbb4a5dac8f 100644 --- a/dlls/jscript/set.c +++ b/dlls/jscript/set.c @@ -86,7 +86,7 @@ static int jsval_map_compare(const void *k, const struct wine_rb_entry *e) } } -static HRESULT get_map_this(jsval_t vthis, MapInstance **ret) +static HRESULT get_map_this(script_ctx_t *ctx, jsval_t vthis, MapInstance **ret) { jsdisp_t *jsdisp; @@ -94,14 +94,14 @@ static HRESULT get_map_this(jsval_t vthis, MapInstance **ret) return JS_E_OBJECT_EXPECTED; if(!(jsdisp = to_jsdisp(get_object(vthis))) || !is_class(jsdisp, JSCLASS_MAP)) { WARN("not a Map object passed as 'this'\n"); - return JS_E_MAP_EXPECTED; + return throw_error(ctx, JS_E_MAP_EXPECTED, L"Map"); } *ret = CONTAINING_RECORD(jsdisp, MapInstance, dispex); return S_OK; } -static HRESULT get_set_this(jsval_t vthis, MapInstance **ret) +static HRESULT get_set_this(script_ctx_t *ctx, jsval_t vthis, MapInstance **ret) { jsdisp_t *jsdisp; @@ -109,7 +109,7 @@ static HRESULT get_set_this(jsval_t vthis, MapInstance **ret) return JS_E_OBJECT_EXPECTED; if(!(jsdisp = to_jsdisp(get_object(vthis))) || !is_class(jsdisp, JSCLASS_SET)) { WARN("not a Set object passed as 'this'\n"); - return JS_E_MAP_EXPECTED; + return throw_error(ctx, JS_E_MAP_EXPECTED, L"Set"); } *ret = CONTAINING_RECORD(jsdisp, MapInstance, dispex); @@ -226,7 +226,7 @@ static HRESULT Map_clear(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -249,7 +249,7 @@ static HRESULT Map_delete(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -266,7 +266,7 @@ static HRESULT Map_forEach(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigne MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -283,7 +283,7 @@ static HRESULT Map_get(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned ar MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -305,7 +305,7 @@ static HRESULT Map_set(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned ar MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -322,7 +322,7 @@ static HRESULT Map_has(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned ar MapInstance *map; HRESULT hres; - hres = get_map_this(vthis, &map); + hres = get_map_this(ctx, vthis, &map); if(FAILED(hres)) return hres; @@ -431,7 +431,7 @@ static HRESULT Set_add(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned ar MapInstance *set; HRESULT hres; - hres = get_set_this(vthis, &set); + hres = get_set_this(ctx, vthis, &set); if(FAILED(hres)) return hres; @@ -446,7 +446,7 @@ static HRESULT Set_clear(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned MapInstance *set; HRESULT hres; - hres = get_set_this(vthis, &set); + hres = get_set_this(ctx, vthis, &set); if(FAILED(hres)) return hres; @@ -469,7 +469,7 @@ static HRESULT Set_delete(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned MapInstance *set; HRESULT hres; - hres = get_set_this(vthis, &set); + hres = get_set_this(ctx, vthis, &set); if(FAILED(hres)) return hres; @@ -486,7 +486,7 @@ static HRESULT Set_forEach(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigne MapInstance *set; HRESULT hres; - hres = get_set_this(vthis, &set); + hres = get_set_this(ctx, vthis, &set); if(FAILED(hres)) return hres; @@ -503,7 +503,7 @@ static HRESULT Set_has(script_ctx_t *ctx, jsval_t vthis, WORD flags, unsigned ar MapInstance *set; HRESULT hres; - hres = get_set_this(vthis, &set); + hres = get_set_this(ctx, vthis, &set); if(FAILED(hres)) return hres; diff --git a/po/ar.po b/po/ar.po index b6d973ba9e3..d8501f1468c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4037,7 +4037,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' ليس عنصر تاريخ" #: dlls/jscript/jscript.rc:80 diff --git a/po/ast.po b/po/ast.po index 71f227773f8..0fa3764c58c 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3909,7 +3909,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/bg.po b/po/bg.po index eba2d59671e..ea994fb3944 100644 --- a/po/bg.po +++ b/po/bg.po @@ -4039,7 +4039,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/ca.po b/po/ca.po index ffdd81f3914..d5bea7b7766 100644 --- a/po/ca.po +++ b/po/ca.po @@ -4011,7 +4011,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "No es pot modificar la propietat no escrivible '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' no és un objecte de Map" #: dlls/jscript/jscript.rc:80 diff --git a/po/cs.po b/po/cs.po index ef5fad5c1ef..25edfee3c2b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3978,7 +3978,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "„%s“ není platný název portu" #: dlls/jscript/jscript.rc:80 diff --git a/po/da.po b/po/da.po index 4f057cdab58..a6be0132e51 100644 --- a/po/da.po +++ b/po/da.po @@ -4078,7 +4078,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "«[objekt]» er ikke et dato objekt" #: dlls/jscript/jscript.rc:80 diff --git a/po/de.po b/po/de.po index ad81f08de43..a928798edec 100644 --- a/po/de.po +++ b/po/de.po @@ -4001,7 +4001,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' ist kein Map-Objekt" #: dlls/jscript/jscript.rc:80 diff --git a/po/el.po b/po/el.po index 3bb890176a9..d0ab3fa10f0 100644 --- a/po/el.po +++ b/po/el.po @@ -3949,7 +3949,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/en.po b/po/en.po index 014454f498f..c57d7f2671e 100644 --- a/po/en.po +++ b/po/en.po @@ -3992,8 +3992,8 @@ msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" -msgstr "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "'this' is not a | object" #: dlls/jscript/jscript.rc:80 msgid "Property cannot have both accessors and a value" diff --git a/po/en_US.po b/po/en_US.po index e7744030e77..7ea6079c873 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3992,8 +3992,8 @@ msgid "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" -msgstr "'this' is not a Map object" +msgid "'this' is not a | object" +msgstr "'this' is not a | object" #: dlls/jscript/jscript.rc:80 msgid "Property cannot have both accessors and a value" diff --git a/po/eo.po b/po/eo.po index a18519bbbec..331ea114260 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3948,7 +3948,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/es.po b/po/es.po index 9cfe5da4301..e42352f785a 100644 --- a/po/es.po +++ b/po/es.po @@ -4012,7 +4012,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "No se puede modificar la propiedad no modificable '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, 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:80 diff --git a/po/fa.po b/po/fa.po index 4d6842f6f18..5ae1f14ef96 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3974,7 +3974,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/fi.po b/po/fi.po index 566fdd5c4f3..46b1bed56b7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3985,7 +3985,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' ei ole Map-objekti" #: dlls/jscript/jscript.rc:80 diff --git a/po/fr.po b/po/fr.po index 12b27ed35f1..1fa31360b88 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4014,7 +4014,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Impossible de modifier une propriété qui est protégée en écriture '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, 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:80 diff --git a/po/he.po b/po/he.po index 32894f33fdd..70a2788e961 100644 --- a/po/he.po +++ b/po/he.po @@ -4033,7 +4033,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'%s' אינו שם תקני לפתחה" #: dlls/jscript/jscript.rc:80 diff --git a/po/hi.po b/po/hi.po index 4f28c25fe9b..4eeb32ae384 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3904,7 +3904,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/hr.po b/po/hr.po index 7a80cda1327..b3f4deb9785 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4042,7 +4042,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' nije vremenski objekt" #: dlls/jscript/jscript.rc:80 diff --git a/po/hu.po b/po/hu.po index b264f2dc71d..f482c5d6c59 100644 --- a/po/hu.po +++ b/po/hu.po @@ -4096,7 +4096,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'Az [object]' nem egy date (dátum) objektum" #: dlls/jscript/jscript.rc:80 diff --git a/po/it.po b/po/it.po index d3ab38d005d..a3e2b8a2430 100644 --- a/po/it.po +++ b/po/it.po @@ -4104,7 +4104,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[oggetto]' non è un oggetto data" #: dlls/jscript/jscript.rc:80 diff --git a/po/ja.po b/po/ja.po index a2cdfbb5af7..9cd501a6d17 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3986,7 +3986,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "書換不可のプロパティ '|' は変更できません" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' は Map オブジェクトではありません" #: dlls/jscript/jscript.rc:80 diff --git a/po/ko.po b/po/ko.po index cdaba227525..9a0e1150a69 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3973,7 +3973,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "쓰기 가능하지 않은 속성 '|'을(를) 수정할 수 없습니다" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this'는 Map 개체가 아닙니다" #: dlls/jscript/jscript.rc:80 diff --git a/po/lt.po b/po/lt.po index d3a07a583c7..af378ce917f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3995,7 +3995,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Negalima modifikuoti nerašomos savybės „|“" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "„Šis“ nėra atvaizdžio objektas" #: dlls/jscript/jscript.rc:80 diff --git a/po/ml.po b/po/ml.po index e765a3a447b..95627e6fd03 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3906,7 +3906,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/nb_NO.po b/po/nb_NO.po index 7773b390d7f..ddda7a9e0dc 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -4012,7 +4012,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' er ikke et dataobjekt" #: dlls/jscript/jscript.rc:80 diff --git a/po/nl.po b/po/nl.po index 57a71e2c1aa..659afc3bf40 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4006,7 +4006,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Kan onschrijfbare eigenschap '|' niet veranderen" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' is geen Map object" #: dlls/jscript/jscript.rc:80 diff --git a/po/or.po b/po/or.po index 5d413f81bb6..bac17abcff8 100644 --- a/po/or.po +++ b/po/or.po @@ -3904,7 +3904,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/pa.po b/po/pa.po index 49e93e6b2b3..020e365bc4e 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3904,7 +3904,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/pl.po b/po/pl.po index da01b55c3d2..a5accc68b47 100644 --- a/po/pl.po +++ b/po/pl.po @@ -4011,7 +4011,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Nie można zmienić niezapisywalnej własności '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' nie jest obiektem Map" #: dlls/jscript/jscript.rc:80 diff --git a/po/pt_BR.po b/po/pt_BR.po index a9e3905201a..a2e3bfb7e94 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4007,7 +4007,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Não pode modificar propriedade não gravável '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, 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:80 diff --git a/po/pt_PT.po b/po/pt_PT.po index dafe7b563dd..4a05ea5346d 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -4060,7 +4060,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' não é um objecto de data" #: dlls/jscript/jscript.rc:80 diff --git a/po/rm.po b/po/rm.po index 28914e8f011..5e8e0bd0a17 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3934,7 +3934,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/ro.po b/po/ro.po index 40514637adf..252446c00c3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -4017,7 +4017,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "„[obiect]” nu este un obiect de tip dată" #: dlls/jscript/jscript.rc:80 diff --git a/po/ru.po b/po/ru.po index 9b87b0a320e..6acfe33ea73 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4014,7 +4014,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Невозможно изменить свойство «|»" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "«this» не объект типа «Map»" #: dlls/jscript/jscript.rc:80 diff --git a/po/si.po b/po/si.po index c7089d29bc8..8e0a430f623 100644 --- a/po/si.po +++ b/po/si.po @@ -3947,7 +3947,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'%s' is not a valid port name" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." #: dlls/jscript/jscript.rc:80 diff --git a/po/sk.po b/po/sk.po index 0a1afeacf89..87da42564ab 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3989,7 +3989,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/sl.po b/po/sl.po index 37b5e6bacd0..b41eeef1562 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4098,7 +4098,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' ni predmet datuma" #: dlls/jscript/jscript.rc:80 diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 8b09304cd28..f3451dc519f 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -4074,7 +4074,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "„[object]“ није временски објекат" #: dlls/jscript/jscript.rc:80 diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index c54f6fb5830..44d10ac30df 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -4155,7 +4155,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "„[object]“ nije vremenski objekat" #: dlls/jscript/jscript.rc:80 diff --git a/po/sv.po b/po/sv.po index 7b980a7a4ce..92b90d6bce6 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4039,7 +4039,7 @@ msgstr "" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' är inte ett datumobjekt" #: dlls/jscript/jscript.rc:80 diff --git a/po/ta.po b/po/ta.po index 5a1211a21a0..903e1cb376b 100644 --- a/po/ta.po +++ b/po/ta.po @@ -3870,7 +3870,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/te.po b/po/te.po index 98b960c0052..eb8cc898eb7 100644 --- a/po/te.po +++ b/po/te.po @@ -3904,7 +3904,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/th.po b/po/th.po index c6f72f303af..59e1dc644df 100644 --- a/po/th.po +++ b/po/th.po @@ -3971,7 +3971,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/tr.po b/po/tr.po index 677dfb8677e..840f61846cc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4007,7 +4007,7 @@ msgstr "'|' yazılamayan nesnesi değiştirilemiyor" #: dlls/jscript/jscript.rc:79 #, fuzzy #| msgid "'[object]' is not a date object" -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'[object]' bir tarih nesnesi değil" #: dlls/jscript/jscript.rc:80 diff --git a/po/uk.po b/po/uk.po index 21eee9fe622..1c1328b36b4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -4007,7 +4007,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "Неможливо змінити властивість, яка не підлягає запису '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'це' не є Map об'єкта" #: dlls/jscript/jscript.rc:80 diff --git a/po/wa.po b/po/wa.po index ff6f7902285..bbe318ebb94 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3969,7 +3969,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/wine.pot b/po/wine.pot index ca599af4bee..a4d78acfabb 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3859,7 +3859,7 @@ msgid "Cannot modify non-writable property '|'" msgstr "" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "" #: dlls/jscript/jscript.rc:80 diff --git a/po/zh_CN.po b/po/zh_CN.po index feede1a0be3..faf05b4367a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3940,7 +3940,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "无法更改不可写的属性 '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' 不是 Map 对象" #: dlls/jscript/jscript.rc:80 diff --git a/po/zh_TW.po b/po/zh_TW.po index ac26dad6f45..f7fe09d49a5 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3946,7 +3946,9 @@ msgid "Cannot modify non-writable property '|'" msgstr "無法修改不可寫入的屬性 '|'" #: dlls/jscript/jscript.rc:79 -msgid "'this' is not a Map object" +#, fuzzy +#| msgid "'this' is not a Map object" +msgid "'this' is not a | object" msgstr "'this' 不是 Map 物件" #: dlls/jscript/jscript.rc:80