jscript: Use proper error description for invalid Set 'this'.
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 <gabrielopcode@gmail.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
58479eefea
commit
121851955e
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
2
po/ar.po
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
2
po/bg.po
2
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
|
||||
|
|
4
po/ca.po
4
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
|
||||
|
|
2
po/cs.po
2
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
|
||||
|
|
2
po/da.po
2
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
|
||||
|
|
4
po/de.po
4
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
|
||||
|
|
2
po/el.po
2
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
|
||||
|
|
4
po/en.po
4
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"
|
||||
|
|
|
@ -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"
|
||||
|
|
2
po/eo.po
2
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
|
||||
|
|
4
po/es.po
4
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
|
||||
|
|
2
po/fa.po
2
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
|
||||
|
|
4
po/fi.po
4
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
|
||||
|
|
4
po/fr.po
4
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
|
||||
|
|
2
po/he.po
2
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
|
||||
|
|
2
po/hi.po
2
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
|
||||
|
|
2
po/hr.po
2
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
|
||||
|
|
2
po/hu.po
2
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
|
||||
|
|
2
po/it.po
2
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
|
||||
|
|
4
po/ja.po
4
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
|
||||
|
|
4
po/ko.po
4
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
|
||||
|
|
4
po/lt.po
4
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
|
||||
|
|
2
po/ml.po
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
4
po/nl.po
4
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
|
||||
|
|
2
po/or.po
2
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
|
||||
|
|
2
po/pa.po
2
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
|
||||
|
|
4
po/pl.po
4
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
po/rm.po
2
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
|
||||
|
|
2
po/ro.po
2
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
|
||||
|
|
4
po/ru.po
4
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
|
||||
|
|
2
po/si.po
2
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
|
||||
|
|
2
po/sk.po
2
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
|
||||
|
|
2
po/sl.po
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
po/sv.po
2
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
|
||||
|
|
2
po/ta.po
2
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
|
||||
|
|
2
po/te.po
2
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
|
||||
|
|
2
po/th.po
2
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
|
||||
|
|
2
po/tr.po
2
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
|
||||
|
|
4
po/uk.po
4
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
|
||||
|
|
2
po/wa.po
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue