From b568d88815d717503b8b4a2042666ce3b0abf9cd Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 12 Dec 2012 13:12:04 +0100 Subject: [PATCH] jscript: Throw an error if return statement is in eval code. --- dlls/jscript/compile.c | 8 +++++ dlls/jscript/jscript.h | 1 + dlls/jscript/jscript.rc | 1 + dlls/jscript/resource.h | 1 + dlls/jscript/tests/api.js | 2 ++ po/ar.po | 46 +++++++++++++++------------- po/bg.po | 46 +++++++++++++++------------- po/ca.po | 46 +++++++++++++++------------- po/cs.po | 46 +++++++++++++++------------- po/da.po | 46 +++++++++++++++------------- po/de.po | 46 +++++++++++++++------------- po/el.po | 46 +++++++++++++++------------- po/en.po | 46 +++++++++++++++------------- po/en_US.po | 46 +++++++++++++++------------- po/eo.po | 46 +++++++++++++++------------- po/es.po | 46 +++++++++++++++------------- po/fa.po | 46 +++++++++++++++------------- po/fi.po | 46 +++++++++++++++------------- po/fr.po | 46 +++++++++++++++------------- po/he.po | 46 +++++++++++++++------------- po/hi.po | 64 +++++++++++++++++++++------------------ po/hu.po | 46 +++++++++++++++------------- po/it.po | 46 +++++++++++++++------------- po/ja.po | 46 +++++++++++++++------------- po/ko.po | 46 +++++++++++++++------------- po/lt.po | 46 +++++++++++++++------------- po/ml.po | 64 +++++++++++++++++++++------------------ po/nb_NO.po | 46 +++++++++++++++------------- po/nl.po | 46 +++++++++++++++------------- po/or.po | 64 +++++++++++++++++++++------------------ po/pa.po | 64 +++++++++++++++++++++------------------ po/pl.po | 46 +++++++++++++++------------- po/pt_BR.po | 46 +++++++++++++++------------- po/pt_PT.po | 46 +++++++++++++++------------- po/rm.po | 64 +++++++++++++++++++++------------------ po/ro.po | 46 +++++++++++++++------------- po/ru.po | 46 +++++++++++++++------------- po/sk.po | 46 +++++++++++++++------------- po/sl.po | 46 +++++++++++++++------------- po/sr_RS@cyrillic.po | 46 +++++++++++++++------------- po/sr_RS@latin.po | 46 +++++++++++++++------------- po/sv.po | 46 +++++++++++++++------------- po/te.po | 64 +++++++++++++++++++++------------------ po/th.po | 46 +++++++++++++++------------- po/tr.po | 64 +++++++++++++++++++++------------------ po/uk.po | 46 +++++++++++++++------------- po/wa.po | 46 +++++++++++++++------------- po/wine.pot | 64 +++++++++++++++++++++------------------ po/zh_CN.po | 46 +++++++++++++++------------- po/zh_TW.po | 46 +++++++++++++++------------- 50 files changed, 1210 insertions(+), 1017 deletions(-) diff --git a/dlls/jscript/compile.c b/dlls/jscript/compile.c index 501c340870e..e849ef98edd 100644 --- a/dlls/jscript/compile.c +++ b/dlls/jscript/compile.c @@ -44,6 +44,8 @@ typedef struct { parser_ctx_t *parser; bytecode_t *code; + BOOL from_eval; + unsigned code_off; unsigned code_size; @@ -1464,6 +1466,11 @@ static HRESULT compile_return_statement(compiler_ctx_t *ctx, expression_statemen { HRESULT hres; + if(ctx->from_eval) { + WARN("misplaced return statement\n"); + return JS_E_MISPLACED_RETURN; + } + hres = pop_to_stat(ctx, TRUE, FALSE, NULL); if(FAILED(hres)) return hres; @@ -1866,6 +1873,7 @@ static HRESULT compile_function(compiler_ctx_t *ctx, source_elements_t *source, ctx->var_head = ctx->var_tail = NULL; ctx->func_head = ctx->func_tail = NULL; + ctx->from_eval = from_eval; off = ctx->code_off; ctx->func = func; diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 5bffc2131fa..0da5eeebbdc 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -493,6 +493,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_MISSING_RBRACKET MAKE_JSERROR(IDS_RBRACKET) #define JS_E_INVALID_CHAR MAKE_JSERROR(IDS_INVALID_CHAR) #define JS_E_UNTERMINATED_STRING MAKE_JSERROR(IDS_UNTERMINATED_STR) +#define JS_E_MISPLACED_RETURN MAKE_JSERROR(IDS_MISPLACED_RETURN) #define JS_E_INVALID_BREAK MAKE_JSERROR(IDS_INVALID_BREAK) #define JS_E_INVALID_CONTINUE MAKE_JSERROR(IDS_INVALID_CONTINUE) #define JS_E_LABEL_REDEFINED MAKE_JSERROR(IDS_LABEL_REDEFINED) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index 17865694e38..54bf455a3f3 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -36,6 +36,7 @@ STRINGTABLE IDS_RBRACKET "Expected ')'" IDS_INVALID_CHAR "Invalid character" IDS_UNTERMINATED_STR "Unterminated string constant" + IDS_MISPLACED_RETURN "'return' statement outside of function" IDS_INVALID_BREAK "Can't have 'break' outside of loop" IDS_INVALID_CONTINUE "Can't have 'continue' outside of loop" IDS_LABEL_REDEFINED "Label redefined" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index b11d465f661..fc4c8294181 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -36,6 +36,7 @@ #define IDS_RBRACKET 0x03EE #define IDS_INVALID_CHAR 0x03F6 #define IDS_UNTERMINATED_STR 0x03F7 +#define IDS_MISPLACED_RETURN 0x03FA #define IDS_INVALID_BREAK 0x03FB #define IDS_INVALID_CONTINUE 0x03FC #define IDS_LABEL_REDEFINED 0x0401 diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index 5f5d009ee8e..6322eae22ce 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -2227,6 +2227,7 @@ var exception_array = { E_INVALID_CONTINUE: { type: "SyntaxError", number: -2146827268 }, E_LABEL_NOT_FOUND: { type: "SyntaxError", number: -2146827262 }, E_LABEL_REDEFINED: { type: "SyntaxError", number: -2146827263 }, + E_MISPLACED_RETURN: { type: "SyntaxError", number: -2146827270 }, E_ILLEGAL_ASSIGN: { type: "ReferenceError", number: -2146823280 }, @@ -2345,6 +2346,7 @@ testSyntaxError("ok(false, 'unexpected execution'); some_label: continue some_la testSyntaxError("ok(false, 'unexpected execution'); while(true) continue some_label;", "E_LABEL_NOT_FOUND"); testSyntaxError("ok(false, 'unexpected execution'); some_label: { while(true) continue some_label; }", "E_INVALID_CONTINUE"); testSyntaxError("ok(false, 'unexpected execution'); some_label: { some_label: while(true); }", "E_LABEL_REDEFINED"); +testSyntaxError("return;", "E_MISPLACED_RETURN"); // ReferenceError tests testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN"); diff --git a/po/ar.po b/po/ar.po index 4cb36269730..f5e94a36ebe 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3510,93 +3510,97 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "تعذّر إيجاد '%s'." -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "اح&ذف\tDel" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "اح&ذف\tDel" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/bg.po b/po/bg.po index a97c5c3aa44..2b751d0062d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3538,93 +3538,97 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Файлът не е намерен" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Разпечатай" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/ca.po b/po/ca.po index cdc11db6199..9bae8704cdc 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3590,94 +3590,98 @@ msgid "Unterminated string constant" msgstr "Cadena constant no finalitzat" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "No es pot tenir 'break' fora d'un bucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "No es pot tenir 'continue' fora d'un bucle" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etiqueta redefinida" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etiqueta no trobada" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "La compilació condicional està desactivada" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "S'esperava un nombre" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "S'esperava una funció" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[objecte]' no és un objecte de data" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "S'esperava un objecte" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Assignació il·legal" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' no està definit" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "No es pot suprimir '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI per a codificar conté caràcters invàlids" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI per a descodificar és incorrecte" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valor d'enumeració fora de rang.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "El subíndex està fora del rang" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Longitud del vector ha de ser un enter positiu finit" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "S'esperava un objecte Array" diff --git a/po/cs.po b/po/cs.po index e3eb5e37bed..04cd6071130 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3588,93 +3588,97 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Soubor nebyl nalezen" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Rozsah tisku" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/da.po b/po/da.po index 4fe4559e064..d01e2ee2e32 100644 --- a/po/da.po +++ b/po/da.po @@ -3559,94 +3559,98 @@ msgid "Unterminated string constant" msgstr "Uafsluttet strengkonstant" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Kan ikke have 'break' udenfor en løkke" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Kan ikke have «continue» udenfor en løkke" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etiket omdefineret" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etiket ikke fundet" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Betinget kompilering er slået fra" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Nummer forventet" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Funktion forventet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "«[objekt]» er ikke et dato objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objekt forventet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Ulovlig tildeling" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "«|» er ikke defineret" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolsk objekt forventet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Kan ikke slette «|»" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray objekt forventet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntaksfejl i regulært udtryk" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI der skal afkodes er forkert" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Opregnings værdi uden for intervallet.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Indekset er uden for grænserne" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array objekt forventet" diff --git a/po/de.po b/po/de.po index 4b2f8b358e8..8eb02e09524 100644 --- a/po/de.po +++ b/po/de.po @@ -3547,90 +3547,94 @@ msgid "Unterminated string constant" msgstr "konstante Zeichenkette nicht terminiert" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Unerwartetes 'break' außerhalb einer Schleife" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Unerwartetes 'continue' außerhalb einer Schleife" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Label neu definiert" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Label nicht gefunden" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Bedingte Kompilierung ist ausgeschaltet" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Zahl erwartet" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Funktion erwartet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[Objekt]' ist kein Datums-Objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objekt erwartet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Unzulässige Zuweisung" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' nicht definiert" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolesches Objekt erwartet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Kann '|' nicht löschen" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray Objekt erwartet" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript Objekt erwartet" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntaxfehler in regulärem Ausdruck" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Genauigkeit außerhalb des zulässigen Bereichs" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine natürliche Zahl sein" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array Objekt erwartet" diff --git a/po/el.po b/po/el.po index b90673c7a04..26711af8d4d 100644 --- a/po/el.po +++ b/po/el.po @@ -3473,91 +3473,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Το αρχείο δε βρέθηκε" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/en.po b/po/en.po index b5d03581e48..995ed70daeb 100644 --- a/po/en.po +++ b/po/en.po @@ -3537,90 +3537,94 @@ msgid "Unterminated string constant" msgstr "Unterminated string constant" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "'return' statement outside of function" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Can't have 'break' outside of loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Label redefined" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Precision is out of range" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/en_US.po b/po/en_US.po index dba952b240e..b3af78605df 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3539,90 +3539,94 @@ msgid "Unterminated string constant" msgstr "Unterminated string constant" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "'return' statement outside of function" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Can't have 'break' outside of loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Label redefined" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Label not found" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Precision is out of range" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/eo.po b/po/eo.po index 190d0c6e901..d215b53e834 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3456,92 +3456,96 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 msgid "Label not found" msgstr "Etikedo ne trovita" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Etendiĝon" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/es.po b/po/es.po index fee1edc0592..9c7258bf6a3 100644 --- a/po/es.po +++ b/po/es.po @@ -3573,94 +3573,98 @@ msgid "Unterminated string constant" msgstr "Constante de cadena no terminada" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "No se puede usar 'break' fuera de un bucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "No se puede usar 'continue' fuera de un bucle" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etiqueta vuelta a definir" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etiqueta no encontrada" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "La compilación condicional está desactivada" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Función esperada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[objeto]' no es un objeto de fecha" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Asignación ilegal" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' no está definido" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "No se puede borrar '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresión regular" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI a decodificar es incorrecta" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valor de la enumeración fuera de rango.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Subíndice fuera de rango" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "La longitud del array debe ser un entero positivo finito" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Objeto array esperado" diff --git a/po/fa.po b/po/fa.po index 4b89993aa41..fd8130c7b3c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3510,93 +3510,97 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "'%s' پیدا نشد." -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "&حذف\tDel" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "&حذف\tDel" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/fi.po b/po/fi.po index c1213976d58..ef675bddb95 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3534,90 +3534,94 @@ msgid "Unterminated string constant" msgstr "Päättymätön merkkijonovakio" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "'break' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "'continue' ei voi esiintyä silmukan ulkopuolella" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Nimiö määritelty toistamiseen" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Nimiötä ei löydy" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Ehdollinen kääntäminen on pois käytöstä" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Odotettiin lukua" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Odotettiin funktiota" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[objekti]' ei ole päivämääräobjekti" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Odotettiin objektia" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Virheellinen sijoitus" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' on määrittelemätön" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Odotettiin totuusarvoa" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Ei voida poistaa '|':tä" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Odotettiin VBArray-objektia" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Odotettiin JScript-objektia" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntaksivirhe säännöllisessä lausekkeessa" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "Enkoodattava URI sisältää virheellisiä merkkejä" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "Dekoodattava URI on virheellinen" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Desimaalien määrä ei kelpaa" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Tarkkuus ei kelpaa" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Taulukon pituuden täytyy olla positiivinen kokonaisluku" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Odotettiin taulukkoa" diff --git a/po/fr.po b/po/fr.po index d2e9582e4fc..7aa66d38c97 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3563,90 +3563,94 @@ msgid "Unterminated string constant" msgstr "Constante chaîne de caractères non clôturée" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "« break » impossible à l'extérieur d'une boucle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "« continue » impossible à l'extérieur d'une boucle" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Étiquette redéfinie" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Étiquette introuvable" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "La compilation conditionnelle est désactivée" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Nombre attendu" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Fonction attendue" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "« [objet] » n'est pas un objet de type date" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objet attendu" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Affectation illégale" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "« | » n'est pas défini" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Objet booléen attendu" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Impossible de supprimer « | »" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Nombre de décimales hors plage" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Précision hors limites" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Objet tableau attendu" diff --git a/po/he.po b/po/he.po index 8da39016650..210e75f4593 100644 --- a/po/he.po +++ b/po/he.po @@ -3542,94 +3542,98 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "הקובץ לא נמצא" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' אינו מוגדר" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "תאריך המחיקה" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "טווח ההדפסה" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/hi.po b/po/hi.po index f998f15ad94..3b362d86a9e 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3447,91 +3447,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "फ़ॉन्ट (&F)..." -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/hu.po b/po/hu.po index 995ff052fa1..ac6095f22a0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3577,94 +3577,98 @@ msgid "Unterminated string constant" msgstr "Lezáratlan sztring konstans" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Nem lehet 'break' a cikluson kívűl" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Nem lehet 'continue' a cikluson kívül" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Címke újradefiniált" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Címke nem található" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Feltételes fordítás kikapcsolva" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Számot vártam" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Függvényt vártam" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objektumot vártam" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Nem megengedett összerendelés" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "A '|' nem definiált" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "'|' nem törölhető" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Felsorolási érték határon kívül esik.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Érvénytelen alszkript" -#: jscript.rc:59 +#: jscript.rc:60 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:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Tömb objektumot vártam" diff --git a/po/it.po b/po/it.po index 6e503068678..161e344a2e5 100644 --- a/po/it.po +++ b/po/it.po @@ -3590,94 +3590,98 @@ msgid "Unterminated string constant" msgstr "Costante stringa non terminata" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Impossibile avere 'break' fuori dal ciclo" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Impossibile avere 'continue' fuori dal ciclo" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etichetta ridefinita" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etichetta non trovata" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Compilazione condizionale disattivata" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Richiesto un numero" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Richiesta una funzione" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[oggetto]' non è un oggetto data" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Previsto un oggetto" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Assegnamento illegale" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' non è definito" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Previsto un oggetto Booleano" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Impossibile eliminare '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Previsto un oggetto VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Previsto un oggetto JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valore dell'enumerazione fuori portata.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Sottoscript fuori portata" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Previsto un oggetto array" diff --git a/po/ja.po b/po/ja.po index 777d2019ea6..84a9954fff2 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3531,90 +3531,94 @@ msgid "Unterminated string constant" msgstr "文字列定数が終端していません" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "ループ外で break は使えません" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "ループ外で continue は使えません" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "ラベルが再定義されました" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "ラベルが見つかりません" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "条件コンパイルはオフにされています" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "数値を期待していました" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "関数を期待していました" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' は日付オブジェクトではありません" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "オブジェクトを期待していました" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "不正な代入です" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|'は未定義です" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "'|'を削除できません" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされる URI に無効な文字が含まれています" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "デコードされる URI が正しくありません" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "小数点以下の桁数が範囲外です" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "精度指定が範囲外です" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" diff --git a/po/ko.po b/po/ko.po index 6c96f6ef180..0fa120c3b4d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3529,90 +3529,94 @@ msgid "Unterminated string constant" msgstr "끝나지 않은 문자열 상수" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "루프 바깥에는 'break'를 사용할 수 없음" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "루프 바깥에는 'continue'를 사용할 수 없음" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "라벨이 정의되지 않음" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "라벨을 찾을 수 없음" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "조건부 컴파일이 해제되어 있음" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "숫자가 필요합니다" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "함수가 필요합니다" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[객체]' 는 날짜 객체가 아님" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "객체가 필요합니다" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "잘못된 할당" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' 는 정의되지 않았음" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "'|'를 지울 수 없음" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "해독하는 URI가 올바르지 않음" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "분수 값이 범위를 벗어남" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "정밀도 범위를 벗어남" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "배열 객체가 필요함" diff --git a/po/lt.po b/po/lt.po index 3607e91db19..9d7adacde49 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3543,90 +3543,94 @@ msgid "Unterminated string constant" msgstr "Nebaigta eilutės konstanta" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Negalima turėti „break“ ne cikle" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Negalima turėti „continue“ ne cikle" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Žymė apibrėžta iš naujo" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Žymė nerasta" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Sąlyginis kompiliavimas išjungtas" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Tikėtasi skaičiaus" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Tikėtasi funkcijos" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "„[objektas]“ nėra datos objektas" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Tikėtasi objekto" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Neleistinas priskyrimas" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "„|“ neapibrėžtas" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Negalima pašalinti „|“" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI neteisingas" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Tikslumas nepatenka į rėžius" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" diff --git a/po/ml.po b/po/ml.po index 2ba3ede34a7..3e6f3566c6e 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3447,91 +3447,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "_അക്ഷരസഞ്ചയം..." -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 02b48014192..639d108a2ce 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3689,98 +3689,102 @@ msgid "Unterminated string constant" msgstr "Uavsluttet strengkonstant" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Fant ikke filen" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Forventet nummer" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Forventet funksjon" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' er ikke et dataobjekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Forventet objekt" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Ugyldig tilordning" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' er udefinert" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "Klarte ikke fullføre\n" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "VBArray object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:55 +#: jscript.rc:56 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Enum-verdien er utenfor rekkevidde.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Precision is out of range" msgstr "Enum-verdien er utenfor rekkevidde.\n" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Forventet rekke-objekt" diff --git a/po/nl.po b/po/nl.po index 63b854cf900..7dfdd9663ec 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3605,96 +3605,100 @@ msgid "Unterminated string constant" msgstr "Onafgesloten tekenreeksconstante" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Bestand niet gevonden" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Conditionele compilatie is uitgeschakeld" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Getal verwacht" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Functie verwacht" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' is geen datum object" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Object verwacht" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Ongeldige toekenning" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' is ongedefinieerd" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolean object verwacht" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan niet voltooien\n" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Opsommingsaantal buiten bereik.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Index buiten bereik" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array object verwacht" diff --git a/po/or.po b/po/or.po index 18826ca2940..abc366bd8dd 100644 --- a/po/or.po +++ b/po/or.po @@ -3447,91 +3447,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "ଅକ୍ଷରରୂପ (&F)..." -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/pa.po b/po/pa.po index 749e30ce7bd..6c02e06de4f 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3447,91 +3447,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "ਫੌਂਟ(&F)..." -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/pl.po b/po/pl.po index 2de7cd13a10..8ec6b18546b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3559,90 +3559,94 @@ msgid "Unterminated string constant" msgstr "Niezakończona stała znakowa" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Nie można umieścić 'break' poza pętlą" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Nie można umieścić 'continue' poza pętlą" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etykieta zdefiniowana ponownie" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Nie znaleziono etykiety" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Warunkowa kompilacja jest wyłączona" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Oczekiwana liczba" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Oczekiwana funkcja" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[obiekt]' nie jest obiektem daty" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Oczekiwany obiekt" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Niepoprawne przypisanie" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' jest niezdefiniowany" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Nie można usunąć '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Ilość cyfr znaczących jest poza zakresem" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Precyzja jest poza poza zakresem" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" diff --git a/po/pt_BR.po b/po/pt_BR.po index 59a7fe51ed8..54d20eadd6f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3548,90 +3548,94 @@ msgid "Unterminated string constant" msgstr "Constante de string não terminada" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Não pode haver 'break' fora de um loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Não pode haver 'continue' fora de um loop" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Rótulo redefinido" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Rótulo não encontrado" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Compilação condicional está desligada" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objeto de data" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Objeto booleano esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Não é possível excluir '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado está incorreto" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Número de dígitos fracionários fora do limite" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Precisão fora do limite" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Objeto Vetor esperado" diff --git a/po/pt_PT.po b/po/pt_PT.po index af3aac574cb..9be86a62eb2 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3587,94 +3587,98 @@ msgid "Unterminated string constant" msgstr "Constante de string não terminada" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Não pode ter um 'break' fora do ciclo" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Não pode ter um 'continue' fora do ciclo" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etiqueta redefinida" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etiqueta não encontrada" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "A compilação condicional está desactivada" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objecto de data" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objecto esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Não se pode apagar '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI a ser descodificado é incorreto" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Valor de enumeração fora dos limites.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Subscripto fora de alcance" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Objecto Array esperado" diff --git a/po/rm.po b/po/rm.po index 5b6a1d19b18..a8f2768b52f 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3475,91 +3475,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "&Stampar tema" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/ro.po b/po/ro.po index 9c6010f4609..2e20e853ea2 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3546,94 +3546,98 @@ msgid "Unterminated string constant" msgstr "Șir constant neterminat" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 msgid "Label not found" msgstr "Eticheta nu a fost găsită" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Se așteaptă un număr" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Se așteaptă o funcție" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Se așteaptă un obiect" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Atribuire ilegală" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "„|” nu este definit" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "Data ștergerii" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Se așteaptă un obiect VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:55 +#: jscript.rc:56 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Interval tipărire" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" diff --git a/po/ru.po b/po/ru.po index 4eafbc47715..8ee81eea690 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3546,90 +3546,94 @@ msgid "Unterminated string constant" msgstr "Незавершённая строковая константа" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Выражение 'break' не может находится вне цикла" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Выражение 'continue' не может находится вне цикла" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Метка переопределена" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Метка не найдена" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Условная компиляция отключена" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Ожидается число" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Ожидается функция" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' не объект типа 'date'" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Ожидается объект" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Неверное присваивание" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' не определён" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Ожидается объект типа 'bool'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Невозможно удалить '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Ожидается объект типа 'VBArray'" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Ожидается объект типа 'JScript'" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Количество знаков после запятой вне диапазона" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Точность представления вне диапазона" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Ожидается объект типа 'Array'" diff --git a/po/sk.po b/po/sk.po index 19ea4915473..7eb18efc039 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3487,92 +3487,96 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 msgid "Label not found" msgstr "Pole nenájdené" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Očakávané číslo" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Očakávaná funkcia" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Očakávaný objekt" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Rozsah tlače" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/sl.po b/po/sl.po index 8137cc56962..510ddbd03ae 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3579,94 +3579,98 @@ msgid "Unterminated string constant" msgstr "Nedoločena konstanta niza" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Ni mogoče imeti 'premora' izven zanke" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Izven zanke ni mogoče imeti 'continue'" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Ponovna definicija oznake" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Oznake ni mogoče najti" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Pogojno kodno prevajanje je izklopljeno" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Pričakovano je bilo število" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Pričakovana je bila funkcija" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' ni predmet datuma" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Pričakovan je bil predmet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Neveljavna dodelitev" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' ni določen" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Ni mogoče izbrisati '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI za odkodiranje je nepravilen" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy #| msgid "Enumeration value out of range.\n" msgid "Number of fraction digits is out of range" msgstr "Vrednost oštevilčenja je izven obsega.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Podskript je izven obsega" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:60 +#: jscript.rc:61 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 cfe275d2382..e78f4bf8aa3 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3572,96 +3572,100 @@ msgid "Unterminated string constant" msgstr "Незавршена константа ниски" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Датотека није пронађена" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Очекивани број" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Очекивана функција" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "„[object]“ није временски објекат" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Очекивани објекат" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Недозвољен задатак" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "„|“ није одређено" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "Датум брисања" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:55 +#: jscript.rc:56 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy msgid "Number of fraction digits is out of range" msgstr "Потпис је ван домета.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Потпис је ван домета" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Очекивани низ објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 7e2ce873451..c10fb59e919 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3650,96 +3650,100 @@ msgid "Unterminated string constant" msgstr "Nezavršena konstanta niski" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "Datoteka nije pronađena" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Očekivani broj" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "„[object]“ nije vremenski objekat" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Očekivani objekat" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Nedozvoljen zadatak" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "„|“ nije određeno" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "Datum brisanja" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:55 +#: jscript.rc:56 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:57 +#: jscript.rc:58 #, fuzzy msgid "Number of fraction digits is out of range" msgstr "Potpis je van dometa.\n" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Potpis je van dometa" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Očekivani niz objekta" diff --git a/po/sv.po b/po/sv.po index 77809c12d0f..2f18aff4c4e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3527,90 +3527,94 @@ msgid "Unterminated string constant" msgstr "Oterminerad strängkonstant" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "Går ej att ha 'break' utanför loop" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "Går ej att ha 'continue' utanför loop" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Etiketten är redan definierat" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Etiketten hittades inte" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Villkorlig kompilering är avslagen" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Nummer förväntades" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Funktion förväntades" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' är inte ett datumobjekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Objekt förväntades" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Ogiltig tilldelning" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' är odefinierat" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Boolskt objekt förväntades" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "'|' kan inte tas bort" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "Den URI som ska avkodas är felaktig" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "Antal decimaler är utanför giltigt intervall" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "Precision är utanför giltigt intervall" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Array-objekt förväntades" diff --git a/po/te.po b/po/te.po index 33afdaa617e..17379fac6f2 100644 --- a/po/te.po +++ b/po/te.po @@ -3447,91 +3447,95 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "ఫాంట్... (&F)" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/th.po b/po/th.po index ce62005bcaf..51eb2a9c271 100644 --- a/po/th.po +++ b/po/th.po @@ -3489,94 +3489,98 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "ไม่พบแฟ้ม" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "ลบ\tDel" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "ย่อ" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/tr.po b/po/tr.po index 35fd4a5992b..d11cdfd6b08 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3446,92 +3446,96 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 +msgid "Number of fraction digits is out of range" +msgstr "" + +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "Aralığı yazdır" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/uk.po b/po/uk.po index 1a6557453d1..d5e813d04e1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3568,92 +3568,96 @@ msgid "Unterminated string constant" msgstr "Незавершена рядкова константа" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "'break' не може знаходитись за циклом" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "'continue' не може знаходитись за циклом" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "Мітка перевизначена" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "Мітку не знайдено" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "Умовна компіляція вимкнена" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "Очікується число" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "Очікується функція" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "'[object]' не об'єкт типу date" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "Очікується об'єкт" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "Невірне присвоєння" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "'|' не визначено" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "Неможливо видалити '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, некоректний" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Subscript out of range" msgid "Precision is out of range" msgstr "Індекс поза діапазоном" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "Очікується об'єкт Array" diff --git a/po/wa.po b/po/wa.po index ff31185e0ab..971433f11f1 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3494,93 +3494,97 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 #, fuzzy msgid "Label not found" msgstr "'%s' pout nén esse trové." -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 #, fuzzy msgid "Cannot delete '|'" msgstr "&Rafacer\tDel" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy msgid "Precision is out of range" msgstr "Cwé rexhe" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 6deefd26d43..1844afef1b4 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3409,90 +3409,94 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 -msgid "Label not found" +msgid "Label redefined" msgstr "" #: jscript.rc:43 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:46 -msgid "Number expected" +msgid "Label not found" msgstr "" #: jscript.rc:44 -msgid "Function expected" -msgstr "" - -#: jscript.rc:45 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:47 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:45 +msgid "Function expected" +msgstr "" + +#: jscript.rc:46 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:48 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:49 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:50 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:51 -msgid "Cannot delete '|'" +msgid "Boolean object expected" msgstr "" #: jscript.rc:52 -msgid "VBArray object expected" +msgid "Cannot delete '|'" msgstr "" #: jscript.rc:53 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:54 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:56 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:55 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:57 -msgid "Number of fraction digits is out of range" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:56 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:58 -msgid "Precision is out of range" +msgid "Number of fraction digits is out of range" msgstr "" #: jscript.rc:59 -msgid "Array length must be a finite positive integer" +msgid "Precision is out of range" msgstr "" #: jscript.rc:60 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 657dd2154e7..776c1ac47ec 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3466,92 +3466,96 @@ msgid "Unterminated string constant" msgstr "" #: jscript.rc:39 -msgid "Can't have 'break' outside of loop" +msgid "'return' statement outside of function" msgstr "" #: jscript.rc:40 -msgid "Can't have 'continue' outside of loop" +msgid "Can't have 'break' outside of loop" msgstr "" #: jscript.rc:41 -msgid "Label redefined" +msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:42 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:43 msgid "Label not found" msgstr "找不到标签" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "不能删除 '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "" -#: jscript.rc:58 +#: jscript.rc:59 #, fuzzy #| msgid "Print range" msgid "Precision is out of range" msgstr "打印范围" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 0fe6f12b114..760f353e1a9 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3491,90 +3491,94 @@ msgid "Unterminated string constant" msgstr "未終結的字串常數" #: jscript.rc:39 +msgid "'return' statement outside of function" +msgstr "" + +#: jscript.rc:40 msgid "Can't have 'break' outside of loop" msgstr "在迴圈之外不可有『break』" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Can't have 'continue' outside of loop" msgstr "在迴圈之外不可有『continue』" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Label redefined" msgstr "標籤重複定義" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Label not found" msgstr "找不到標籤" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Conditional compilation is turned off" msgstr "條件編譯已被關閉" -#: jscript.rc:46 +#: jscript.rc:47 msgid "Number expected" msgstr "預期為編號" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Function expected" msgstr "預期為函式" -#: jscript.rc:45 +#: jscript.rc:46 msgid "'[object]' is not a date object" msgstr "『[object]』並非日期物件" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Object expected" msgstr "預期為物件" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Illegal assignment" msgstr "不合法的指派" -#: jscript.rc:49 +#: jscript.rc:50 msgid "'|' is undefined" msgstr "『|』未定義" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Boolean object expected" msgstr "預期為布林物件" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Cannot delete '|'" msgstr "無法刪除 '|'" -#: jscript.rc:52 +#: jscript.rc:53 msgid "VBArray object expected" msgstr "預期為 VBArray 物件" -#: jscript.rc:53 +#: jscript.rc:54 msgid "JScript object expected" msgstr "預期為 JScript 物件" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Syntax error in regular expression" msgstr "正規表示式語法發生錯誤" -#: jscript.rc:56 +#: jscript.rc:57 msgid "URI to be encoded contains invalid characters" msgstr "要編碼的 URI 內含無效字元" -#: jscript.rc:55 +#: jscript.rc:56 msgid "URI to be decoded is incorrect" msgstr "要解碼的 URI 不正確" -#: jscript.rc:57 +#: jscript.rc:58 msgid "Number of fraction digits is out of range" msgstr "小數位數超出範圍" -#: jscript.rc:58 +#: jscript.rc:59 msgid "Precision is out of range" msgstr "精確度超出範圍" -#: jscript.rc:59 +#: jscript.rc:60 msgid "Array length must be a finite positive integer" msgstr "陣列長度必須是有限正整數" -#: jscript.rc:60 +#: jscript.rc:61 msgid "Array object expected" msgstr "預期為陣列物件"