diff --git a/dlls/jscript/compile.c b/dlls/jscript/compile.c index 7188f4c1799..9718c69048f 100644 --- a/dlls/jscript/compile.c +++ b/dlls/jscript/compile.c @@ -172,6 +172,24 @@ static HRESULT push_instr_bstr_uint(compiler_ctx_t *ctx, jsop_t op, const WCHAR return S_OK; } +static HRESULT push_instr_uint_str(compiler_ctx_t *ctx, jsop_t op, unsigned arg1, const WCHAR *arg2) +{ + unsigned instr; + WCHAR *str; + + str = compiler_alloc_string(ctx->code, arg2); + if(!str) + return E_OUTOFMEMORY; + + instr = push_instr(ctx, op); + if(instr == -1) + return E_OUTOFMEMORY; + + instr_ptr(ctx, instr)->arg1.uint = arg1; + instr_ptr(ctx, instr)->arg2.str = str; + return S_OK; +} + static HRESULT push_instr_double(compiler_ctx_t *ctx, jsop_t op, double arg) { unsigned instr; @@ -489,9 +507,17 @@ static HRESULT compile_delete_expression(compiler_ctx_t *ctx, unary_expression_t } case EXPR_IDENT: return push_instr_bstr(ctx, OP_delete_ident, ((identifier_expression_t*)expr->expression)->identifier); - default: - expr->expr.eval = delete_expression_eval; - return compile_interp_fallback(ctx, &expr->expr); + default: { + const WCHAR fixmeW[] = {'F','I','X','M','E',0}; + + WARN("invalid delete, unimplemented exception message\n"); + + hres = compile_expression(ctx, expr->expression); + if(FAILED(hres)) + return hres; + + return push_instr_uint_str(ctx, OP_throw_type, JS_E_INVALID_DELETE, fixmeW); + } } return S_OK; diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index 2dcdd445590..46bdffb62ad 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -1336,6 +1336,16 @@ static HRESULT interp_throw(exec_ctx_t *ctx) return throw_reference_error(ctx->parser->script, &ctx->ei, arg, NULL); } +static HRESULT interp_throw_type(exec_ctx_t *ctx) +{ + const HRESULT hres = ctx->parser->code->instrs[ctx->ip].arg1.uint; + const WCHAR *str = ctx->parser->code->instrs[ctx->ip].arg2.str; + + TRACE("%08x %s\n", hres, debugstr_w(str)); + + return throw_type_error(ctx->parser->script, &ctx->ei, hres, str); +} + /* ECMA-262 3rd Edition 12.14 */ static HRESULT catch_eval(script_ctx_t *ctx, catch_block_t *block, return_type_t *rt, VARIANT *ret) { @@ -2365,13 +2375,6 @@ static HRESULT interp_mod(exec_ctx_t *ctx) return stack_push_number(ctx, fmod(num_val(&l), num_val(&r))); } -/* ECMA-262 3rd Edition 11.4.2 */ -HRESULT delete_expression_eval(script_ctx_t *ctx, expression_t *_expr, DWORD flags, jsexcept_t *ei, exprval_t *ret) -{ - FIXME("\n"); - return E_NOTIMPL; -} - /* ECMA-262 3rd Edition 11.4.2 */ static HRESULT interp_delete(exec_ctx_t *ctx) { diff --git a/dlls/jscript/engine.h b/dlls/jscript/engine.h index 3147092f867..b2707cfb9b1 100644 --- a/dlls/jscript/engine.h +++ b/dlls/jscript/engine.h @@ -90,6 +90,7 @@ typedef struct _func_stack { X(str, 1, ARG_STR, 0) \ X(this, 1, 0,0) \ X(throw, 0, ARG_UINT, 0) \ + X(throw_type, 0, ARG_UINT, ARG_STR) \ X(tonum, 1, 0,0) \ X(tree, 1, ARG_EXPR, 0) \ X(typeof, 1, 0,0) \ @@ -570,8 +571,6 @@ HRESULT member_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exp HRESULT identifier_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN; HRESULT property_value_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN; -HRESULT delete_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN; - HRESULT compiled_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN; HRESULT compile_subscript(parser_ctx_t*,expression_t*,BOOL,unsigned*) DECLSPEC_HIDDEN; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 78977a61545..b8d7e330468 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -466,6 +466,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_UNDEFINED_VARIABLE MAKE_JSERROR(IDS_UNDEFINED) #define JS_E_BOOLEAN_EXPECTED MAKE_JSERROR(IDS_NOT_BOOL) #define JS_E_VBARRAY_EXPECTED MAKE_JSERROR(IDS_NOT_VBARRAY) +#define JS_E_INVALID_DELETE MAKE_JSERROR(IDS_INVALID_DELETE) #define JS_E_JSCRIPT_EXPECTED MAKE_JSERROR(IDS_JSCRIPT_EXPECTED) #define JS_E_REGEXP_SYNTAX MAKE_JSERROR(IDS_REGEXP_SYNTAX_ERROR) #define JS_E_INVALID_URI_CODING MAKE_JSERROR(IDS_URI_INVALID_CODING) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index 84d0ba88b39..e7dd630129c 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -43,6 +43,7 @@ STRINGTABLE IDS_ILLEGAL_ASSIGN "Illegal assignment" IDS_UNDEFINED "'|' is undefined" IDS_NOT_BOOL "Boolean object expected" + IDS_INVALID_DELETE "Cannot delete '|'" IDS_NOT_VBARRAY "VBArray object expected" IDS_JSCRIPT_EXPECTED "JScript object expected" IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index efea25a7e1c..5285b507096 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -43,6 +43,7 @@ #define IDS_ILLEGAL_ASSIGN 0x1390 #define IDS_UNDEFINED 0x1391 #define IDS_NOT_BOOL 0x1392 +#define IDS_INVALID_DELETE 0x1394 #define IDS_NOT_VBARRAY 0x1395 #define IDS_JSCRIPT_EXPECTED 0x1396 #define IDS_REGEXP_SYNTAX_ERROR 0x1399 diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index f8b411d6ca6..2b2245e6c18 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -1967,6 +1967,7 @@ var exception_array = { E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 }, E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 }, E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 }, + E_INVALID_DELETE: { type: "TypeError", number: -2146823276 }, E_UNDEFINED: { type: "TypeError", number: -2146823279 }, E_JSCRIPT_EXPECTED: { type: "TypeError", number: -2146823274 }, E_NOT_ARRAY: { type: "TypeError", number: -2146823257 }, @@ -2034,6 +2035,15 @@ testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBAR testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY"); testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED"); testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED"); +testException(function() {delete (new Object());}, "E_INVALID_DELETE"); +testException(function() {delete false;}, "E_INVALID_DELETE"); + +obj = new Object(); +obj.prop = 1; +tmp = false; +testException(function() {delete ((tmp = true) ? obj.prop : obj.prop);}, "E_INVALID_DELETE"); +ok(tmp, "delete (..) expression not evaluated"); + //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED"); //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED"); diff --git a/po/ar.po b/po/ar.po index d8109c72e6a..effd480311a 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3518,30 +3518,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "اح&ذف\tDel" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/bg.po b/po/bg.po index d5fb0af4a70..fff6466d2c9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3534,30 +3534,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/ca.po b/po/ca.po index e128b2e96cc..88725dd6b89 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3566,30 +3566,35 @@ msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "No es pot completar\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI per a codificar conté caràcters invàlids" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "URI per a descodificar és incorrecte" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Longitud del vector ha de ser un enter positiu finit" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "S'esperava un objecte Array" diff --git a/po/cs.po b/po/cs.po index 6f00a87001e..de7119ed4d4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3581,30 +3581,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/da.po b/po/da.po index 7d970f2a078..c8ee22b3ae2 100644 --- a/po/da.po +++ b/po/da.po @@ -3613,31 +3613,36 @@ msgstr "Boolean objekt forventet" #: jscript.rc:46 #, fuzzy +msgid "Cannot delete '|'" +msgstr "Kan ikke fuldføre\n" + +#: jscript.rc:47 +#, fuzzy msgid "VBArray object expected" msgstr "Array objekt forventet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntax fejl i regulært udtryk" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array objekt forventet" diff --git a/po/de.po b/po/de.po index 7aed9c7c29c..85e98215ddf 100644 --- a/po/de.po +++ b/po/de.po @@ -3546,30 +3546,35 @@ msgid "Boolean object expected" msgstr "Boolisches Objekt erwartet" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Kann nicht abschliessen\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray Objekt erwartet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript Objekt erwartet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntax Fehler in regulärem Ausdruck" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array Objekt erwartet" diff --git a/po/el.po b/po/el.po index 7dbdd0d5c24..1371123c903 100644 --- a/po/el.po +++ b/po/el.po @@ -3475,30 +3475,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/en.po b/po/en.po index 032e80da5b3..d842ceb5569 100644 --- a/po/en.po +++ b/po/en.po @@ -3427,30 +3427,34 @@ msgid "Boolean object expected" msgstr "Boolean object expected" #: jscript.rc:46 +msgid "Cannot delete '|'" +msgstr "Cannot delete '|'" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/en_US.po b/po/en_US.po index 9570533259f..6a5f4dd01c0 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3542,30 +3542,34 @@ msgid "Boolean object expected" msgstr "Boolean object expected" #: jscript.rc:46 +msgid "Cannot delete '|'" +msgstr "Cannot delete '|'" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/eo.po b/po/eo.po index b86757d8965..d8203b6b26a 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3562,30 +3562,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/es.po b/po/es.po index 2435fb4dc85..00a0cbc31b6 100644 --- a/po/es.po +++ b/po/es.po @@ -3599,31 +3599,36 @@ msgstr "Objeto Booleano esperado" #: jscript.rc:46 #, fuzzy +msgid "Cannot delete '|'" +msgstr "Fecha de borrado" + +#: jscript.rc:47 +#, fuzzy msgid "VBArray object expected" msgstr "Objeto Arreglo esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresion regular" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "La longitud del arreglo debe ser un entero positivo finito" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Objeto Arreglo esperado" diff --git a/po/fa.po b/po/fa.po index 6d618ebb91f..ff4d4259c04 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3518,30 +3518,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "&حذف\tDel" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/fi.po b/po/fi.po index 87f9b1265af..90c425f6d2f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3582,30 +3582,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Poistoaika" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/fr.po b/po/fr.po index 10fd7d55577..c07d761cad9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3566,30 +3566,35 @@ msgid "Boolean object expected" msgstr "Objet booléen attendu" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Ne peut terminer cette opération\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Objet tableau attendu" diff --git a/po/he.po b/po/he.po index 434c5f010c5..33ebded2b66 100644 --- a/po/he.po +++ b/po/he.po @@ -3516,30 +3516,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "תאריך המחיקה" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/hi.po b/po/hi.po index 3d9da65ba91..5e0d1dcdb10 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3459,30 +3459,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/hu.po b/po/hu.po index 87b7080798b..dca522e8600 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3660,31 +3660,36 @@ msgstr "Boolean (igaz-hamis) objektumot vártam" #: jscript.rc:46 #, fuzzy +msgid "Cannot delete '|'" +msgstr "Törlési dátum" + +#: jscript.rc:47 +#, fuzzy msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Tömb objektumot vártam" diff --git a/po/it.po b/po/it.po index bff714eecab..26bf1538ba1 100644 --- a/po/it.po +++ b/po/it.po @@ -3557,30 +3557,35 @@ msgid "Boolean object expected" msgstr "Previsto un oggetto Booleano" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Impossibile completare\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Previsto un oggetto VBArray" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Previsto un oggetto JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Previsto un oggetto array" diff --git a/po/ja.po b/po/ja.po index 64b358db206..3a7001e9531 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3531,30 +3531,35 @@ msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "完了できません。\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされるURIに無効な文字が含まれています" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "デコードされるURIが正しくありません" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" diff --git a/po/ko.po b/po/ko.po index 10970462f3b..2a3b7d549cc 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3532,30 +3532,35 @@ msgid "Boolean object expected" msgstr "볼린 객제가 필요함" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "완료되지 않았습니다\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "해독하는 URI가 올바르지 않음" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "배열 객체가 필요함" diff --git a/po/lt.po b/po/lt.po index e6e0186a3a7..529a7ac1272 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3550,30 +3550,35 @@ msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Nepavyko užbaigti\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI yra neteisingas" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" diff --git a/po/ml.po b/po/ml.po index 9623f263ef2..0c7593fcae5 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3459,30 +3459,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 45b80d40e8f..18480768a64 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3686,31 +3686,36 @@ msgstr "Forventet boolsk verdi" #: jscript.rc:46 #, fuzzy +msgid "Cannot delete '|'" +msgstr "Klarte ikke fullføre\n" + +#: jscript.rc:47 +#, fuzzy msgid "VBArray object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Forventet rekke-objekt" diff --git a/po/nl.po b/po/nl.po index 9acf798c857..265cdd4bd96 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3554,30 +3554,35 @@ msgid "Boolean object expected" msgstr "Boolean object verwacht" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Kan niet voltooien\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array object verwacht" diff --git a/po/or.po b/po/or.po index c4e0fbceb10..da3abd3afc1 100644 --- a/po/or.po +++ b/po/or.po @@ -3459,30 +3459,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/pa.po b/po/pa.po index 99dbc138121..c6655b0d504 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3459,30 +3459,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/pl.po b/po/pl.po index 45cf61b5502..4f2d205be63 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3563,30 +3563,35 @@ msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Nie można ukończyć\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" diff --git a/po/pt_BR.po b/po/pt_BR.po index 6dca5e487b2..9068773893d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3673,31 +3673,36 @@ msgid "Boolean object expected" msgstr "Objeto boleano esperado" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Não é possível completar\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Objeto Array esperado" diff --git a/po/pt_PT.po b/po/pt_PT.po index 12dc9fc9793..d1e7d577bde 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3728,31 +3728,36 @@ msgid "Boolean object expected" msgstr "Objecto boleano esperado" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Não consegue completar\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Objecto Array esperado" diff --git a/po/rm.po b/po/rm.po index a7edbdb7d9d..69166bafd89 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3501,30 +3501,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/ro.po b/po/ro.po index 745505574aa..8536751699c 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3733,31 +3733,36 @@ msgstr "Se așteaptă un obiect boolean" #: jscript.rc:46 #, fuzzy +msgid "Cannot delete '|'" +msgstr "Data ștergerii" + +#: jscript.rc:47 +#, fuzzy msgid "VBArray object expected" msgstr "Se așteaptă un obiect matrice" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" diff --git a/po/ru.po b/po/ru.po index c73eea2ef31..a335d5ed312 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3551,30 +3551,35 @@ msgid "Boolean object expected" msgstr "Ожидается объект типа 'bool'" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Невозможно завершить выполнение\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Ожидается объект типа 'VBArray'" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Ожидается объект типа 'JScript'" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Ожидается объект типа 'Array'" diff --git a/po/sk.po b/po/sk.po index d82467f9808..2f40525dfcc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3488,30 +3488,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/sl.po b/po/sl.po index 10bdaff728d..3d10f1d4a9f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3595,31 +3595,36 @@ msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Ni mogoče dokončati\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Pričakovan je bil predmet polja" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 9a740209023..cbe2741c1e7 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3554,31 +3554,36 @@ msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Датум брисања" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Очекивани низ објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 005d7d83dc6..15d99addb18 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3638,31 +3638,36 @@ msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Datum brisanja" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Očekivani niz objekta" diff --git a/po/sv.po b/po/sv.po index 21175af5460..5045a789b09 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3555,31 +3555,36 @@ msgid "Boolean object expected" msgstr "Boolskt objekt förväntades" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Kan inte slutföra\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Array-objekt förväntades" diff --git a/po/te.po b/po/te.po index 7bc7ba9e68a..a31ed8d0084 100644 --- a/po/te.po +++ b/po/te.po @@ -3459,30 +3459,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/th.po b/po/th.po index 62585262590..0b9ed64b47f 100644 --- a/po/th.po +++ b/po/th.po @@ -3495,30 +3495,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "ลบ\tDel" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/tr.po b/po/tr.po index 12007572bff..44676086dfe 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3576,30 +3576,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Silinme tarihi" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/uk.po b/po/uk.po index 269229da544..d0931ff512c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3547,31 +3547,36 @@ msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "Неможливо завершити\n" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "Очікується об'єкт Array" diff --git a/po/wa.po b/po/wa.po index 598a53e07e1..f051312e4bd 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3508,30 +3508,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "&Rafacer\tDel" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index e4039813999..d5de9dbf738 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3422,30 +3422,34 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:47 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:48 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:50 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:49 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:51 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:50 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:52 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 3d2a4c6fc2c..3ddd6c26aec 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3560,30 +3560,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "删除日期" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 49cc0f7b2a8..d511cb3d57c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3576,30 +3576,35 @@ msgid "Boolean object expected" msgstr "" #: jscript.rc:46 +#, fuzzy +msgid "Cannot delete '|'" +msgstr "刪除" + +#: jscript.rc:47 msgid "VBArray object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "JScript object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "Array object expected" msgstr ""