From 383e2b1a0e858d45aa9f392d2c94802b460fa0f3 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Tue, 17 Jan 2012 12:37:06 +0100 Subject: [PATCH] jscript: Added labelled statement implementation. --- dlls/jscript/compile.c | 19 ++++++++++++++++++- dlls/jscript/jscript.h | 1 + dlls/jscript/jscript.rc | 1 + dlls/jscript/resource.h | 1 + po/ar.po | 34 +++++++++++++++++++--------------- po/bg.po | 34 +++++++++++++++++++--------------- po/ca.po | 34 +++++++++++++++++++--------------- po/cs.po | 34 +++++++++++++++++++--------------- po/da.po | 34 +++++++++++++++++++--------------- po/de.po | 34 +++++++++++++++++++--------------- po/el.po | 34 +++++++++++++++++++--------------- po/en.po | 34 +++++++++++++++++++--------------- po/en_US.po | 34 +++++++++++++++++++--------------- po/eo.po | 34 +++++++++++++++++++--------------- po/es.po | 34 +++++++++++++++++++--------------- po/fa.po | 34 +++++++++++++++++++--------------- po/fi.po | 34 +++++++++++++++++++--------------- po/fr.po | 34 +++++++++++++++++++--------------- po/he.po | 34 +++++++++++++++++++--------------- po/hi.po | 34 +++++++++++++++++++--------------- po/hu.po | 34 +++++++++++++++++++--------------- po/it.po | 34 +++++++++++++++++++--------------- po/ja.po | 34 +++++++++++++++++++--------------- po/ko.po | 34 +++++++++++++++++++--------------- po/lt.po | 34 +++++++++++++++++++--------------- po/ml.po | 34 +++++++++++++++++++--------------- po/nb_NO.po | 34 +++++++++++++++++++--------------- po/nl.po | 34 +++++++++++++++++++--------------- po/or.po | 34 +++++++++++++++++++--------------- po/pa.po | 34 +++++++++++++++++++--------------- po/pl.po | 34 +++++++++++++++++++--------------- po/pt_BR.po | 34 +++++++++++++++++++--------------- po/pt_PT.po | 34 +++++++++++++++++++--------------- po/rm.po | 34 +++++++++++++++++++--------------- po/ro.po | 34 +++++++++++++++++++--------------- po/ru.po | 34 +++++++++++++++++++--------------- po/sk.po | 34 +++++++++++++++++++--------------- po/sl.po | 34 +++++++++++++++++++--------------- po/sr_RS@cyrillic.po | 34 +++++++++++++++++++--------------- po/sr_RS@latin.po | 34 +++++++++++++++++++--------------- po/sv.po | 34 +++++++++++++++++++--------------- po/te.po | 34 +++++++++++++++++++--------------- po/th.po | 34 +++++++++++++++++++--------------- po/tr.po | 34 +++++++++++++++++++--------------- po/uk.po | 34 +++++++++++++++++++--------------- po/wa.po | 34 +++++++++++++++++++--------------- po/wine.pot | 34 +++++++++++++++++++--------------- po/zh_CN.po | 34 +++++++++++++++++++--------------- po/zh_TW.po | 34 +++++++++++++++++++--------------- 49 files changed, 876 insertions(+), 676 deletions(-) diff --git a/dlls/jscript/compile.c b/dlls/jscript/compile.c index 19fd0c2e0a..516a3a6298 100644 --- a/dlls/jscript/compile.c +++ b/dlls/jscript/compile.c @@ -35,6 +35,8 @@ typedef struct _statement_ctx_t { unsigned break_label; unsigned continue_label; + const labelled_statement_t *labelled_stat; + struct _statement_ctx_t *next; } statement_ctx_t; @@ -1356,6 +1358,21 @@ static HRESULT compile_with_statement(compiler_ctx_t *ctx, with_statement_t *sta return S_OK; } +/* ECMA-262 3rd Edition 12.10 */ +static HRESULT compile_labelled_statement(compiler_ctx_t *ctx, labelled_statement_t *stat) +{ + statement_ctx_t stat_ctx = {0, FALSE, FALSE, 0, 0, stat}, *iter; + + for(iter = ctx->stat_ctx; iter; iter = iter->next) { + if(iter->labelled_stat && !strcmpW(iter->labelled_stat->identifier, stat->identifier)) { + WARN("Label %s redefined\n", debugstr_w(stat->identifier)); + return JS_E_LABEL_REDEFINED; + } + } + + return compile_statement(ctx, &stat_ctx, stat->statement); +} + /* ECMA-262 3rd Edition 12.13 */ static HRESULT compile_switch_statement(compiler_ctx_t *ctx, switch_statement_t *stat) { @@ -1569,7 +1586,7 @@ static HRESULT compile_statement(compiler_ctx_t *ctx, statement_ctx_t *stat_ctx, hres = compile_if_statement(ctx, (if_statement_t*)stat); break; case STAT_LABEL: - hres = push_instr(ctx, OP_label) ? S_OK : E_OUTOFMEMORY; /* FIXME */ + hres = compile_labelled_statement(ctx, (labelled_statement_t*)stat); break; case STAT_RETURN: hres = compile_return_statement(ctx, (expression_statement_t*)stat); diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 5a8d7f40e8..a4fef5d274 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -465,6 +465,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_UNTERMINATED_STRING MAKE_JSERROR(IDS_UNTERMINATED_STR) #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) #define JS_E_DISABLED_CC MAKE_JSERROR(IDS_DISABLED_CC) #define JS_E_FUNCTION_EXPECTED MAKE_JSERROR(IDS_NOT_FUNC) #define JS_E_DATE_EXPECTED MAKE_JSERROR(IDS_NOT_DATE) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index 7c577c9e4f..dddb3ec472 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -37,6 +37,7 @@ STRINGTABLE IDS_UNTERMINATED_STR "Unterminated string constant" 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" IDS_DISABLED_CC "Conditional compilation is turned off" IDS_NOT_FUNC "Function expected" IDS_NOT_DATE "'[object]' is not a date object" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index 1b6ad1b9c6..02e940d3e8 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -37,6 +37,7 @@ #define IDS_UNTERMINATED_STR 0x03F7 #define IDS_INVALID_BREAK 0x03FB #define IDS_INVALID_CONTINUE 0x03FC +#define IDS_LABEL_REDEFINED 0x0401 #define IDS_DISABLED_CC 0x0406 #define IDS_NOT_FUNC 0x138A #define IDS_NOT_DATE 0x138E diff --git a/po/ar.po b/po/ar.po index 8b69266fa4..45a0e2a8b1 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3463,67 +3463,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "اح&ذف\tDel" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/bg.po b/po/bg.po index 1cd1dd4645..4b485ffbc4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3478,66 +3478,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/ca.po b/po/ca.po index 09c7cb97dc..863b95e462 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3511,66 +3511,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "La compilació condicional està desactivada" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "S'esperava un nombre" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "S'esperava una funció" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[objecte]' no és un objecte de data" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "S'esperava un objecte" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Assignació il·legal" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' no està definit" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "No es pot suprimir '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI per a codificar conté caràcters invàlids" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "URI per a descodificar és incorrecte" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Longitud del vector ha de ser un enter positiu finit" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "S'esperava un objecte Array" diff --git a/po/cs.po b/po/cs.po index e4795c0252..4848934b4b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3525,66 +3525,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/da.po b/po/da.po index b96eb16f54..c24666322c 100644 --- a/po/da.po +++ b/po/da.po @@ -3551,69 +3551,73 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Nummer forventet" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Funktion forventet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "[objekt]' er ikke en dato objekt" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "objekt forventet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Ulovlig tildeling" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' er ikke defineret" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean objekt forventet" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan ikke fuldføre\n" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "VBArray object expected" msgstr "Array objekt forventet" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntax fejl i regulært udtryk" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array objekt forventet" diff --git a/po/de.po b/po/de.po index 404033090b..a8687e21d1 100644 --- a/po/de.po +++ b/po/de.po @@ -3493,66 +3493,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Unerwartetes 'continue' außerhalb der Schleife" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Bedingte Kompilierung ist ausgeschaltet" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Nummer erwartet" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Funktion erwartet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[Objekt]' ist kein Datums-Objekt" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objekt erwartet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Unzulässige Zuweisung" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' nicht definiert" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolesches Objekt erwartet" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Kann '|' nicht löschen" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray Objekt erwartet" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript Objekt erwartet" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntax Fehler in regulärem Ausdruck" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array Objekt erwartet" diff --git a/po/el.po b/po/el.po index 786660384e..d48428bbf3 100644 --- a/po/el.po +++ b/po/el.po @@ -3424,66 +3424,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/en.po b/po/en.po index 40e261b390..c92bb9c57b 100644 --- a/po/en.po +++ b/po/en.po @@ -3372,66 +3372,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/en_US.po b/po/en_US.po index e6a93c6a30..c70c35979d 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3487,66 +3487,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Can't have 'continue' outside of loop" #: jscript.rc:40 +msgid "Label redefined" +msgstr "Label redefined" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Cannot delete '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/eo.po b/po/eo.po index c58cd9e101..4816143877 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3500,66 +3500,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/es.po b/po/es.po index e59cb97355..3689dea162 100644 --- a/po/es.po +++ b/po/es.po @@ -3544,69 +3544,73 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Numero esperado" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Función esperada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[objeto]' no es un objeto fecha" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Asignación ilegal" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' no está definido" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Fecha de borrado" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "VBArray object expected" msgstr "Objeto Arreglo esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresion regular" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "La longitud del arreglo debe ser un entero positivo finito" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Objeto Arreglo esperado" diff --git a/po/fa.po b/po/fa.po index f77ff94e49..5f3a83fabf 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3463,67 +3463,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "&حذف\tDel" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/fi.po b/po/fi.po index 6be63ee63f..00127f7d07 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3536,67 +3536,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Poistoaika" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/fr.po b/po/fr.po index adc99c82d6..43657f94fe 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3512,66 +3512,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "La compilation conditionnelle est désactivée" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Nombre attendu" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Fonction attendue" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "« [objet] » n'est pas un objet de type date" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objet attendu" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Affectation illégale" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "« | » n'est pas défini" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Objet booléen attendu" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Impossible de supprimer « | »" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Objet tableau attendu" diff --git a/po/he.po b/po/he.po index 76c7ec2f20..1149afc6b4 100644 --- a/po/he.po +++ b/po/he.po @@ -3470,67 +3470,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' אינו מוגדר" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "תאריך המחיקה" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/hi.po b/po/hi.po index f0dbc0f1d4..0394c19868 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3405,66 +3405,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/hu.po b/po/hu.po index 8e74713fdc..2414b63891 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3599,69 +3599,73 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Számot vártam" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Függvényt vártam" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objektumot vártam" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Nem megengedett összerendelés" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "A '|' nem definiált" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Törlési dátum" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:54 +#: jscript.rc:55 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:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Tömb objektumot vártam" diff --git a/po/it.po b/po/it.po index 0eb0d685c1..bf8ffd79ac 100644 --- a/po/it.po +++ b/po/it.po @@ -3503,66 +3503,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Impossibile avere 'continue' fuori dal ciclo" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Compilazione condizionale disattivata" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Richiesto un numero" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Richiesta una funzione" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[oggetto]' non è un oggetto data" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Previsto un oggetto" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Assegnamento illegale" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' non è definito" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Previsto un oggetto Booleano" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Impossibile eliminare '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Previsto un oggetto VBArray" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Previsto un oggetto JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Previsto un oggetto array" diff --git a/po/ja.po b/po/ja.po index 6528bdcef4..1775c0469b 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3480,66 +3480,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "ループ外で continue は使えません" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "条件コンパイルはオフにされています" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "数値を期待していました" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "関数を期待していました" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' は日付オブジェクトではありません" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "オブジェクトを期待していました" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "不正な代入です" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|'は未定義です" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "'|'を削除できません" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされるURIに無効な文字が含まれています" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "デコードされるURIが正しくありません" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" diff --git a/po/ko.po b/po/ko.po index 329feddbe9..577448186a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3477,66 +3477,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "루프 바깥에는 'continue'를 사용할 수 없음" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "조건부 컴파일이 해제되어 있음" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "숫자가 필요합니다" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "함수가 필요합니다" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[객체]' 는 날짜 객체가 아님" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "객체가 필요합니다" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "잘못된 할당" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' 는 정의되지 않았음" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "'|'를 지울 수 없음" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "해독하는 URI가 올바르지 않음" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "배열 객체가 필요함" diff --git a/po/lt.po b/po/lt.po index c2266e0696..f6e4d29f75 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3496,66 +3496,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Negalima turėti „continue“ ne cikle" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Sąlyginis kompiliavimas yra išjungtas" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Tikėtasi skaičiaus" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Tikėtasi funkcijos" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "„[objektas]“ nėra datos objektas" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Tikėtasi objekto" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Neleistinas priskyrimas" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "„|“ yra neapibrėžtas" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Negalima pašalinti „|“" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI yra neteisingas" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" diff --git a/po/ml.po b/po/ml.po index e2a3e292bb..67311f676d 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3405,66 +3405,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index b2e7c6fbda..ab0a4c9f58 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3630,69 +3630,73 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Forventet nummer" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Forventet funksjon" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' er ikke et dataobjekt" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Forventet objekt" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Ugyldig tilordning" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' er udefinert" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Klarte ikke fullføre\n" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "VBArray object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Forventet rekke-objekt" diff --git a/po/nl.po b/po/nl.po index db931d4446..4ec63b0722 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3509,67 +3509,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Conditionele compilatie is uitgeschakeld" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Getal verwacht" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Functie verwacht" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' is geen datum object" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Object verwacht" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Ongeldige toekenning" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' is ongedefinieerd" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolean object verwacht" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan niet voltooien\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array object verwacht" diff --git a/po/or.po b/po/or.po index 345b8b7c9a..70de44b3ac 100644 --- a/po/or.po +++ b/po/or.po @@ -3405,66 +3405,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/pa.po b/po/pa.po index 5556216a8e..b6af182760 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3405,66 +3405,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/pl.po b/po/pl.po index 063e2fbc60..26729090d6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3510,67 +3510,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Warunkowa kompilacja jest wyłączona" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Oczekiwana liczba" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Oczekiwana funkcja" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[obiekt]' nie jest obiektem daty" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Oczekiwany obiekt" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Niepoprawne przypisanie" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' jest niezdefiniowany" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Nie można ukończyć\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" diff --git a/po/pt_BR.po b/po/pt_BR.po index ec4bca330f..b635fdd5c4 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3501,66 +3501,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Não pode haver 'continue' fora de um loop" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Compilação condicional está desligada" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objeto de data" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Objeto booleano esperado" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Não é possível excluir '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado está incorreto" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Objeto Vetor esperado" diff --git a/po/pt_PT.po b/po/pt_PT.po index 6b4a206dd1..27da68c571 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3670,68 +3670,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objecto de data" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objecto esperado" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Não consegue completar\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Objecto Array esperado" diff --git a/po/rm.po b/po/rm.po index a356d1a2c3..1493aa73a5 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3433,66 +3433,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/ro.po b/po/ro.po index 5c84218dbb..5ddc5992b0 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3668,69 +3668,73 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Se așteaptă un număr" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Se așteaptă o funcție" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Se așteaptă un obiect" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Atribuire ilegală" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "„|” nu este definit" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Data ștergerii" -#: jscript.rc:49 +#: jscript.rc:50 #, fuzzy msgid "VBArray object expected" msgstr "Se așteaptă un obiect matrice" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" diff --git a/po/ru.po b/po/ru.po index 24972d105b..5d5fabe4e3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3498,66 +3498,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "Выражение 'continue' не может находится вне цикла" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Условная компиляция отключена" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Ожидается число" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Ожидается функция" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' не объект типа 'date'" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Ожидается объект" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Неверное присваивание" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' не определён" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Ожидается объект типа 'bool'" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "Невозможно удалить '|'" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Ожидается объект типа 'VBArray'" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Ожидается объект типа 'JScript'" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Ожидается объект типа 'Array'" diff --git a/po/sk.po b/po/sk.po index 40e8d42b59..1cd0e09597 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3444,66 +3444,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/sl.po b/po/sl.po index 983df76aac..9176d07757 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3545,68 +3545,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Pogojno kodo prevajanje je izklopljeno" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Pričakovano je bilo število" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Pričakovana je bila funkcija" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' ni predmet datuma" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Pričakovan je bil predmet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Neveljavna dodelitev" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' ni določen" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Ni mogoče dokončati\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:55 +#: jscript.rc:56 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 b6497e4c76..71fee10e41 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3507,68 +3507,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Очекивани број" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Очекивана функција" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "„[object]“ није временски објекат" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Очекивани објекат" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Недозвољен задатак" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "„|“ није одређено" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Датум брисања" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Очекивани низ објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 1916feb9a3..8a074d885d 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3585,68 +3585,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Očekivani broj" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "„[object]“ nije vremenski objekat" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Očekivani objekat" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Nedozvoljen zadatak" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "„|“ nije određeno" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Datum brisanja" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Očekivani niz objekta" diff --git a/po/sv.po b/po/sv.po index b91e3efc24..d7bc9cbb07 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3509,68 +3509,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Villkorlig kompilering är avslagen" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Nummer förväntades" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Funktion förväntades" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' är inte ett datumobjekt" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Objekt förväntades" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Ogiltig tilldelning" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' är odefinierat" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Boolskt objekt förväntades" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Kan inte slutföra\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Array-objekt förväntades" diff --git a/po/te.po b/po/te.po index f373648051..559a182a7c 100644 --- a/po/te.po +++ b/po/te.po @@ -3405,66 +3405,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/th.po b/po/th.po index 44323b4ae8..163ced6261 100644 --- a/po/th.po +++ b/po/th.po @@ -3443,67 +3443,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "ลบ\tDel" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/tr.po b/po/tr.po index 34fcfd3e49..5e154f8970 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3517,67 +3517,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Silinme tarihi" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/uk.po b/po/uk.po index de245b5725..0888026485 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3499,68 +3499,72 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "Умовна компіляція вимкнена" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "Очікується число" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "Очікується функція" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "'[object]' не об'єкт типу date" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "Очікується об'єкт" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "Невірне присвоєння" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "'|' не визначено" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "Неможливо завершити\n" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:52 +#: jscript.rc:53 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "Очікується об'єкт Array" diff --git a/po/wa.po b/po/wa.po index 964c8d81f5..ce069341d2 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3454,67 +3454,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "&Rafacer\tDel" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 8fe68591b5..c6bb3bbecd 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3367,66 +3367,70 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "Cannot delete '|'" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 92363f37ef..6191f7e4f8 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3504,67 +3504,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "删除日期" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index b19131f4f2..9ecab7d304 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3524,67 +3524,71 @@ msgid "Can't have 'continue' outside of loop" msgstr "" #: jscript.rc:40 +msgid "Label redefined" +msgstr "" + +#: jscript.rc:41 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "Number expected" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Function expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "Illegal assignment" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "'|' is undefined" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Boolean object expected" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "Cannot delete '|'" msgstr "刪除" -#: jscript.rc:49 +#: jscript.rc:50 msgid "VBArray object expected" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "JScript object expected" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:53 +#: jscript.rc:54 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:52 +#: jscript.rc:53 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:54 +#: jscript.rc:55 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:55 +#: jscript.rc:56 msgid "Array object expected" msgstr "" -- 2.32.0.93.g670b81a890