jscript: Throw type error on invalid delete.
This commit is contained in:
parent
7845fe595d
commit
fd6ecbd781
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
17
po/ar.po
17
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 ""
|
||||
|
||||
|
|
22
po/bg.po
22
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 ""
|
||||
|
||||
|
|
17
po/ca.po
17
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"
|
||||
|
||||
|
|
22
po/cs.po
22
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 ""
|
||||
|
||||
|
|
17
po/da.po
17
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"
|
||||
|
||||
|
|
17
po/de.po
17
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"
|
||||
|
||||
|
|
22
po/el.po
22
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 ""
|
||||
|
||||
|
|
16
po/en.po
16
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"
|
||||
|
||||
|
|
16
po/en_US.po
16
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"
|
||||
|
||||
|
|
22
po/eo.po
22
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 ""
|
||||
|
||||
|
|
17
po/es.po
17
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"
|
||||
|
||||
|
|
17
po/fa.po
17
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 ""
|
||||
|
||||
|
|
17
po/fi.po
17
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 ""
|
||||
|
||||
|
|
17
po/fr.po
17
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"
|
||||
|
||||
|
|
17
po/he.po
17
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 ""
|
||||
|
||||
|
|
22
po/hi.po
22
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 ""
|
||||
|
||||
|
|
17
po/hu.po
17
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"
|
||||
|
||||
|
|
17
po/it.po
17
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"
|
||||
|
||||
|
|
17
po/ja.po
17
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 "配列オブジェクトを期待していました"
|
||||
|
||||
|
|
17
po/ko.po
17
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 "배열 객체가 필요함"
|
||||
|
||||
|
|
17
po/lt.po
17
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"
|
||||
|
||||
|
|
22
po/ml.po
22
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 ""
|
||||
|
||||
|
|
17
po/nb_NO.po
17
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"
|
||||
|
||||
|
|
17
po/nl.po
17
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"
|
||||
|
||||
|
|
22
po/or.po
22
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 ""
|
||||
|
||||
|
|
22
po/pa.po
22
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 ""
|
||||
|
||||
|
|
17
po/pl.po
17
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"
|
||||
|
||||
|
|
17
po/pt_BR.po
17
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"
|
||||
|
||||
|
|
17
po/pt_PT.po
17
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"
|
||||
|
||||
|
|
22
po/rm.po
22
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 ""
|
||||
|
||||
|
|
17
po/ro.po
17
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"
|
||||
|
||||
|
|
17
po/ru.po
17
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'"
|
||||
|
||||
|
|
22
po/sk.po
22
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 ""
|
||||
|
||||
|
|
17
po/sl.po
17
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"
|
||||
|
||||
|
|
|
@ -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 "Очекивани низ објекта"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
17
po/sv.po
17
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"
|
||||
|
||||
|
|
22
po/te.po
22
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 ""
|
||||
|
||||
|
|
17
po/th.po
17
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 ""
|
||||
|
||||
|
|
17
po/tr.po
17
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 ""
|
||||
|
||||
|
|
17
po/uk.po
17
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"
|
||||
|
||||
|
|
17
po/wa.po
17
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 ""
|
||||
|
||||
|
|
22
po/wine.pot
22
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 ""
|
||||
|
||||
|
|
17
po/zh_CN.po
17
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 ""
|
||||
|
||||
|
|
17
po/zh_TW.po
17
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 ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue