jscript: Handle invalid break statements in compiler.
This commit is contained in:
parent
e39d648f7d
commit
7361cdc2f3
|
@ -1315,7 +1315,12 @@ static HRESULT compile_break_statement(compiler_ctx_t *ctx, branch_statement_t *
|
|||
break;
|
||||
}
|
||||
|
||||
if(!pop_ctx || stat->identifier) {
|
||||
if(!pop_ctx) {
|
||||
WARN("Break outside loop\n");
|
||||
return JS_E_INVALID_BREAK;
|
||||
}
|
||||
|
||||
if(stat->identifier) {
|
||||
stat->stat.eval = break_statement_eval;
|
||||
return compile_interp_fallback(ctx, &stat->stat);
|
||||
}
|
||||
|
|
|
@ -41,7 +41,6 @@ struct _return_type_t {
|
|||
enum{
|
||||
RT_NORMAL,
|
||||
RT_RETURN,
|
||||
RT_BREAK,
|
||||
RT_CONTINUE
|
||||
} type;
|
||||
jsexcept_t ei;
|
||||
|
@ -674,16 +673,9 @@ HRESULT break_statement_eval(script_ctx_t *ctx, statement_t *_stat, return_type_
|
|||
{
|
||||
branch_statement_t *stat = (branch_statement_t*)_stat;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(stat->identifier) {
|
||||
FIXME("indentifier not implemented\n");
|
||||
assert(stat->identifier != NULL);
|
||||
FIXME("identifier not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
rt->type = RT_BREAK;
|
||||
V_VT(ret) = VT_EMPTY;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/* ECMA-262 3rd Edition 12.9 */
|
||||
|
@ -2755,8 +2747,11 @@ HRESULT exec_source(exec_ctx_t *ctx, parser_ctx_t *parser, source_elements_t *so
|
|||
rt.type = RT_NORMAL;
|
||||
|
||||
if(source->statement) {
|
||||
if(source->instr_off == -1)
|
||||
if(source->instr_off == -1) {
|
||||
hres = compile_subscript_stat(ctx->parser, source->statement, &source->instr_off);
|
||||
if(FAILED(hres) && is_jscript_error(hres))
|
||||
hres = throw_syntax_error(script, &rt.ei, hres, NULL);
|
||||
}
|
||||
if(SUCCEEDED(hres))
|
||||
hres = enter_bytecode(script, source->instr_off, &rt, &val);
|
||||
}
|
||||
|
|
|
@ -463,6 +463,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags)
|
|||
#define JS_E_MISSING_LBRACKET MAKE_JSERROR(IDS_LBRACKET)
|
||||
#define JS_E_MISSING_RBRACKET MAKE_JSERROR(IDS_RBRACKET)
|
||||
#define JS_E_UNTERMINATED_STRING MAKE_JSERROR(IDS_UNTERMINATED_STR)
|
||||
#define JS_E_INVALID_BREAK MAKE_JSERROR(IDS_INVALID_BREAK)
|
||||
#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)
|
||||
|
|
|
@ -35,6 +35,7 @@ STRINGTABLE
|
|||
IDS_LBRACKET "Expected '('"
|
||||
IDS_RBRACKET "Expected ')'"
|
||||
IDS_UNTERMINATED_STR "Unterminated string constant"
|
||||
IDS_INVALID_BREAK "Can't have 'break' outside of loop"
|
||||
IDS_DISABLED_CC "Conditional compilation is turned off"
|
||||
IDS_NOT_FUNC "Function expected"
|
||||
IDS_NOT_DATE "'[object]' is not a date object"
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
#define IDS_LBRACKET 0x03ED
|
||||
#define IDS_RBRACKET 0x03EE
|
||||
#define IDS_UNTERMINATED_STR 0x03F7
|
||||
#define IDS_INVALID_BREAK 0x03FB
|
||||
#define IDS_DISABLED_CC 0x0406
|
||||
#define IDS_NOT_FUNC 0x138A
|
||||
#define IDS_NOT_DATE 0x138E
|
||||
|
|
|
@ -1978,6 +1978,7 @@ var exception_array = {
|
|||
E_SEMICOLON: { type: "SyntaxError", number: -2146827284 },
|
||||
E_UNTERMINATED_STR: { type: "SyntaxError", number: -2146827273 },
|
||||
E_DISABLED_CC: { type: "SyntaxError", number: -2146827258 },
|
||||
E_INVALID_BREAK: { type: "SyntaxError", number: -2146827269 },
|
||||
|
||||
E_ILLEGAL_ASSIGN: { type: "ReferenceError", number: -2146823280 },
|
||||
|
||||
|
@ -2084,6 +2085,7 @@ testSyntaxError("*", "E_SYNTAX_ERROR");
|
|||
testSyntaxError("@_jscript_version", "E_DISABLED_CC");
|
||||
testSyntaxError("@a", "E_DISABLED_CC");
|
||||
testSyntaxError("/* @cc_on @*/ @_jscript_version", "E_DISABLED_CC");
|
||||
testSyntaxError("ok(false, 'unexpected execution'); break;", "E_INVALID_BREAK");
|
||||
|
||||
// ReferenceError tests
|
||||
testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN");
|
||||
|
|
46
po/ar.po
46
po/ar.po
|
@ -3494,67 +3494,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "اح&ذف\tDel"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
52
po/bg.po
52
po/bg.po
|
@ -3512,66 +3512,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/ca.po
34
po/ca.po
|
@ -3539,66 +3539,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Cadena constant no finalitzat"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "La compilació condicional està desactivada"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "S'esperava un nombre"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "S'esperava una funció"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[objecte]' no és un objecte de data"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "S'esperava un objecte"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Assignació il·legal"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' no està definit"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "S'esperava un objecte booleà"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "No es pot suprimir '|'"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "S'esperava un objecte VBArray"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "S'esperava un objecte JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Error de sintaxi en l'expressió regular"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI per a codificar conté caràcters invàlids"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI per a descodificar és incorrecte"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Longitud del vector ha de ser un enter positiu finit"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "S'esperava un objecte Array"
|
||||
|
||||
|
|
52
po/cs.po
52
po/cs.po
|
@ -3559,66 +3559,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/da.po
34
po/da.po
|
@ -3590,69 +3590,73 @@ msgid "Unterminated string constant"
|
|||
msgstr "Uafsluttet streng konstant"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Nummer forventet"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Funktion forventet"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "[objekt]' er ikke en dato objekt"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "objekt forventet"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Ulovlig tildeling"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' er ikke defineret"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean objekt forventet"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Kan ikke fuldføre\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
#, fuzzy
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Array objekt forventet"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript objekt forventet"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntax fejl i regulært udtryk"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI, der skal kodes indeholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI, der skal kodes indeholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array længde skal være et endeligt positivt heltal"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array objekt forventet"
|
||||
|
||||
|
|
34
po/de.po
34
po/de.po
|
@ -3526,66 +3526,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "konstante Zeichenkette nicht terminiert"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Bedingte Kompilierung ist ausgeschaltet"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Nummer erwartet"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Funktion erwartet"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[Objekt]' ist kein Datums-Objekt"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objekt erwartet"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Unzulässige Zuweisung"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' nicht definiert"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolesches Objekt erwartet"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Kann '|' nicht löschen"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray Objekt erwartet"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript Objekt erwartet"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntax Fehler in regulärem Ausdruck"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Zu entschlüsselnde URI ist ungültig"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array Objekt erwartet"
|
||||
|
||||
|
|
52
po/el.po
52
po/el.po
|
@ -3453,66 +3453,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/en.po
34
po/en.po
|
@ -3403,66 +3403,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Unterminated string constant"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Conditional compilation is turned off"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Number expected"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Function expected"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' is not a date object"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Object expected"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Illegal assignment"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' is undefined"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean object expected"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Cannot delete '|'"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray object expected"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript object expected"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntax error in regular expression"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI to be encoded contains invalid characters"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI to be decoded is incorrect"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array length must be a finite positive integer"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object expected"
|
||||
|
||||
|
|
34
po/en_US.po
34
po/en_US.po
|
@ -3518,66 +3518,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Unterminated string constant"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr "Can't have 'break' outside of loop"
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Conditional compilation is turned off"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Number expected"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Function expected"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' is not a date object"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Object expected"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Illegal assignment"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' is undefined"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean object expected"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Cannot delete '|'"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray object expected"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript object expected"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntax error in regular expression"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI to be encoded contains invalid characters"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI to be decoded is incorrect"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array length must be a finite positive integer"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object expected"
|
||||
|
||||
|
|
52
po/eo.po
52
po/eo.po
|
@ -3539,66 +3539,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/es.po
34
po/es.po
|
@ -3578,69 +3578,73 @@ msgid "Unterminated string constant"
|
|||
msgstr "Constante de cadena no terminada"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Numero esperado"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Función esperada"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[objeto]' no es un objeto fecha"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objeto esperado"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Asignación ilegal"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' no está definido"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Objeto Booleano esperado"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Fecha de borrado"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
#, fuzzy
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Objeto Arreglo esperado"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Objeto JScript esperado"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Error de sintaxis en la expresion regular"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI a codificar contiene caracteres no válidos"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a codificar contiene caracteres no válidos"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La longitud del arreglo debe ser un entero positivo finito"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Objeto Arreglo esperado"
|
||||
|
||||
|
|
46
po/fa.po
46
po/fa.po
|
@ -3494,67 +3494,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "&حذف\tDel"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
46
po/fi.po
46
po/fi.po
|
@ -3561,67 +3561,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Poistoaika"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/fr.po
34
po/fr.po
|
@ -3542,66 +3542,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Constante chaîne de caractères non clôturée"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "La compilation conditionnelle est désactivée"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Nombre attendu"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Fonction attendue"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "« [objet] » n'est pas un objet de type date"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objet attendu"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Affectation illégale"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "« | » n'est pas défini"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Objet booléen attendu"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Impossible de supprimer « | »"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Objet VBArray attendu"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Objet JScript attendu"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Erreur de syntaxe dans l'expression rationnelle"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "L'URI à coder contient des caractères invalides"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "L'URI à décoder est incorrecte"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La longueur d'un tableau doit être un entier positif"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Objet tableau attendu"
|
||||
|
||||
|
|
46
po/he.po
46
po/he.po
|
@ -3498,67 +3498,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' אינו מוגדר"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "תאריך המחיקה"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
52
po/hi.po
52
po/hi.po
|
@ -3436,66 +3436,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/hu.po
34
po/hu.po
|
@ -3638,69 +3638,73 @@ msgid "Unterminated string constant"
|
|||
msgstr "Lezáratlan sztring konstans"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Számot vártam"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Függvényt vártam"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'Az [object]' nem egy date (dátum) objektum"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objektumot vártam"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Nem megengedett összerendelés"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "A '|' nem definiált"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean (igaz-hamis) objektumot vártam"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Törlési dátum"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
#, fuzzy
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Tömb objektumot vártam"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript objektumot vártam"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Szinttaktikai hiba a reguláris kifejezésben"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
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:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Tömb objektumot vártam"
|
||||
|
||||
|
|
34
po/it.po
34
po/it.po
|
@ -3536,66 +3536,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Costante stringa non terminata"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Compilazione condizionale disattivata"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Richiesto un numero"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Richiesta una funzione"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[oggetto]' non è un oggetto data"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Previsto un oggetto"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Assegnamento illegale"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' non è definito"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Previsto un oggetto Booleano"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Impossibile eliminare '|'"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Previsto un oggetto VBArray"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Previsto un oggetto JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Errore di sintassi nell'espressione regolare"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "L'URI da codificare contiene caratteri non validi"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "L'URI da decodificare non è corretto"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Previsto un oggetto array"
|
||||
|
||||
|
|
34
po/ja.po
34
po/ja.po
|
@ -3514,67 +3514,71 @@ msgid "Unterminated string constant"
|
|||
msgstr "文字列定数が終端していません"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "条件コンパイルはオフにされています"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "数値を期待していました"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "関数を期待していました"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' は日付オブジェクトではありません"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "オブジェクトを期待していました"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "不正な割り当て"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|'は定義されていません"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean オブジェクトを期待していました"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "完了できません。\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray オブジェクトを期待していました"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript オブジェクトを期待していました"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "正規表現に構文誤りがあります"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "エンコードされるURIに無効な文字が含まれています"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "デコードされるURIが正しくありません"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "配列の長さは有限の正整数でなければなりません"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "配列オブジェクトを期待していました"
|
||||
|
||||
|
|
34
po/ko.po
34
po/ko.po
|
@ -3510,66 +3510,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "띁나지 않은 문자열 상수"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "조건부 컴파일이 설정되어 있음"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "숫자가 필요합니다"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "함수가 필요합니다"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[객체]' 는 날짜 객체가 아님"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "객체가 필요합니다"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "잘못된 할당"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' 는 정의되지 않았음"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "볼린 객제가 필요함"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "'|'를 지울 수 없음"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray 갹체가 필요함"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript 객체가 필요함"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "정규 표현식에 문법오류가 있음"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "해독하는 URI가 올바르지 않음"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "배열 객체가 필요함"
|
||||
|
||||
|
|
34
po/lt.po
34
po/lt.po
|
@ -3526,66 +3526,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Nebaigta eilutės konstanta"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Sąlyginis kompiliavimas yra išjungtas"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Tikėtasi skaičiaus"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Tikėtasi funkcijos"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "„[objektas]“ nėra datos objektas"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Tikėtasi objekto"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Neleistinas priskyrimas"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "„|“ yra neapibrėžtas"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Tikėtasi loginio objekto"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Negalima pašalinti „|“"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Tikėtasi VBArray objekto"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Tikėtasi JScript objekto"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Sintaksės klaida reguliariajame reiškinyje"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "Koduotiname URI yra netinkamų simbolių"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Dekoduojamas URI yra neteisingas"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Tikėtasi masyvo objekto"
|
||||
|
||||
|
|
52
po/ml.po
52
po/ml.po
|
@ -3436,66 +3436,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/nb_NO.po
34
po/nb_NO.po
|
@ -3664,69 +3664,73 @@ msgid "Unterminated string constant"
|
|||
msgstr "Uavsluttet strengkonstant"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Forventet nummer"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Forventet funksjon"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' er ikke et dataobjekt"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Forventet objekt"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Ugyldig tilordning"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' er udefinert"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Forventet boolsk verdi"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Klarte ikke fullføre\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
#, fuzzy
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Forventet rekke-objekt"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Forventet JScript-objekt"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntaksfeil i regulært uttrykk"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI'en som skulle kodes inneholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI'en som skulle kodes inneholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Rekkens lengde må være et endelig, positivt tall"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Forventet rekke-objekt"
|
||||
|
||||
|
|
34
po/nl.po
34
po/nl.po
|
@ -3537,67 +3537,71 @@ msgid "Unterminated string constant"
|
|||
msgstr "Onafgesloten tekenreeksconstante"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Conditionele compilatie is uitgeschakeld"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Getal verwacht"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Functie verwacht"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' is geen datum object"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Object verwacht"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Ongeldige toekenning"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' is ongedefinieerd"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolean object verwacht"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Kan niet voltooien\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray object verwacht"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript object verwacht"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntax fout in reguliere expressie"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "De te coderen URI bevat ongeldige tekens"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "De te decoderen URI is niet correct"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array lengte moet een eindig, positief geheel getal zijn"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object verwacht"
|
||||
|
||||
|
|
52
po/or.po
52
po/or.po
|
@ -3436,66 +3436,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
52
po/pa.po
52
po/pa.po
|
@ -3436,66 +3436,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/pl.po
34
po/pl.po
|
@ -3546,67 +3546,71 @@ msgid "Unterminated string constant"
|
|||
msgstr "Niezakończona stała znakowa"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Warunkowa kompilacja jest wyłączona"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Oczekiwana liczba"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Oczekiwana funkcja"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[obiekt]' nie jest obiektem daty"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Oczekiwany obiekt"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Niepoprawne przypisanie"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' jest niezdefiniowany"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Oczekiwany obiekt boolean"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Nie można ukończyć\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Oczekiwany obiekt VBArray"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Oczekiwany obiekt JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Błąd składni w regularnym wyrażeniu"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "Kodowane URI zawiera niewłaściwe znaki"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI do dekodowania jest niepoprawny"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Oczekiwany obiekt tablicowy"
|
||||
|
||||
|
|
34
po/pt_BR.po
34
po/pt_BR.po
|
@ -3656,68 +3656,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Constante de string não terminada"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Número esperado"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Função esperada"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' não é um objeto de data"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objeto esperado"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Atribuição ilegal"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' é indefinido"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Objeto boleano esperado"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Não é possível completar\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Objeto VBArray esperado"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Objeto JScript esperado"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Erro de sintaxe na expressão regular"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Objeto Array esperado"
|
||||
|
||||
|
|
34
po/pt_PT.po
34
po/pt_PT.po
|
@ -3708,68 +3708,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Constante de string não terminada"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Número esperado"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Função esperada"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' não é um objecto de data"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objecto esperado"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Atribuição ilegal"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' é indefinido"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Objecto boleano esperado"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Não consegue completar\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Objecto VBArray esperado"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Objecto JScript esperado"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Erro de sintaxe na expressão regular"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Objecto Array esperado"
|
||||
|
||||
|
|
52
po/rm.po
52
po/rm.po
|
@ -3475,66 +3475,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/ro.po
34
po/ro.po
|
@ -3711,69 +3711,73 @@ msgid "Unterminated string constant"
|
|||
msgstr "Șir constant neterminat"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Se așteaptă un număr"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Se așteaptă o funcție"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "„[obiect]” nu este un obiect de tip dată"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Se așteaptă un obiect"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Atribuire ilegală"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "„|” nu este definit"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Se așteaptă un obiect boolean"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Data ștergerii"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
#, fuzzy
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Se așteaptă un obiect matrice"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Se așteaptă un obiect JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Eroare de sintaxă în expresia regulată"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI care trebuie codificat conține caractere nevalide"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI care trebuie codificat conține caractere nevalide"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Se așteaptă un obiect matrice"
|
||||
|
||||
|
|
34
po/ru.po
34
po/ru.po
|
@ -3529,66 +3529,70 @@ msgid "Unterminated string constant"
|
|||
msgstr "Незавершённая строковая константа"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Условная компиляция отключена"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Ожидается число"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Ожидается функция"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' не объект типа 'date'"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Ожидается объект"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Неверное присваивание"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' не определён"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Ожидается объект типа 'bool'"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Невозможно удалить '|'"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Ожидается объект типа 'VBArray'"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Ожидается объект типа 'JScript'"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Синтаксическая ошибка в регулярном выражении"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "В кодируемом URI обнаружен неверный символ"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Декодируемый URI неверен"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Длиной массива должно быть конечное положительное число"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Ожидается объект типа 'Array'"
|
||||
|
||||
|
|
52
po/sk.po
52
po/sk.po
|
@ -3473,66 +3473,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/sl.po
34
po/sl.po
|
@ -3574,68 +3574,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Nedoločena konstanta niza"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Pogojno kodo prevajanje je izklopljeno"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Pričakovano je bilo število"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Pričakovana je bila funkcija"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' ni predmet datuma"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Pričakovan je bil predmet"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Neveljavna dodelitev"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' ni določen"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Pričakovan je bil Boolov predmet"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Ni mogoče dokončati\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Pričakovan je bil predmet VBArray"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Pričakovan je bil predmet JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Napaka skladnje v logičnem izrazu"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI za kodiranje vsebuje neveljavne znake"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI za kodiranje vsebuje neveljavne znake"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Dolžina polja mora bit pozitivno celo število"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Pričakovan je bil predmet polja"
|
||||
|
||||
|
|
|
@ -3536,68 +3536,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Незавршена константа ниски"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Очекивани број"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Очекивана функција"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "„[object]“ није временски објекат"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Очекивани објекат"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Недозвољен задатак"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "„|“ није одређено"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Очекивани објекат истинитосне вредности"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Датум брисања"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray објекат се очекује"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Очекивани објекат JScript врсте"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Синтаксна грешка у регуларном изразу"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI садржи неисправне знакове"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI садржи неисправне знакове"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Низ дужине мора бити коначан позитиван цео број"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Очекивани низ објекта"
|
||||
|
||||
|
|
|
@ -3619,68 +3619,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Nezavršena konstanta niski"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Očekivani broj"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Očekivana funkcija"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "„[object]“ nije vremenski objekat"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Očekivani objekat"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Nedozvoljen zadatak"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "„|“ nije određeno"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Očekivani objekat istinitosne vrednosti"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Datum brisanja"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray objekat se očekuje"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Očekivani objekat JScript vrste"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Sintaksna greška u regularnom izrazu"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI sadrži neispravne znakove"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI sadrži neispravne znakove"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Očekivani niz objekta"
|
||||
|
||||
|
|
34
po/sv.po
34
po/sv.po
|
@ -3538,68 +3538,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Oterminerad strängkonstant"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Villkorlig kompilering är avslagen"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Nummer förväntades"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Funktion förväntades"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' är inte ett datumobjekt"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Objekt förväntades"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Ogiltig tilldelning"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' är odefinierat"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Boolskt objekt förväntades"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Kan inte slutföra\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "VBArray-objekt förväntades"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "JScript-objekt förväntades"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Syntaxfel i reguljärt uttryck"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array-längd måste vara ett positivt ändligt heltal"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Array-objekt förväntades"
|
||||
|
||||
|
|
52
po/te.po
52
po/te.po
|
@ -3436,66 +3436,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
46
po/th.po
46
po/th.po
|
@ -3472,67 +3472,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "ลบ\tDel"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
46
po/tr.po
46
po/tr.po
|
@ -3555,67 +3555,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Silinme tarihi"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
34
po/uk.po
34
po/uk.po
|
@ -3530,68 +3530,72 @@ msgid "Unterminated string constant"
|
|||
msgstr "Незавершена рядкова константа"
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr "Умовна компіляція вимкнена"
|
||||
|
||||
#: jscript.rc:41
|
||||
#: jscript.rc:42
|
||||
msgid "Number expected"
|
||||
msgstr "Очікується число"
|
||||
|
||||
#: jscript.rc:39
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr "Очікується функція"
|
||||
|
||||
#: jscript.rc:40
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr "'[object]' не об'єкт типу date"
|
||||
|
||||
#: jscript.rc:42
|
||||
#: jscript.rc:43
|
||||
msgid "Object expected"
|
||||
msgstr "Очікується об'єкт"
|
||||
|
||||
#: jscript.rc:43
|
||||
#: jscript.rc:44
|
||||
msgid "Illegal assignment"
|
||||
msgstr "Невірне присвоєння"
|
||||
|
||||
#: jscript.rc:44
|
||||
#: jscript.rc:45
|
||||
msgid "'|' is undefined"
|
||||
msgstr "'|' не визначено"
|
||||
|
||||
#: jscript.rc:45
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr "Очікується об'єкт Boolean"
|
||||
|
||||
#: jscript.rc:46
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "Неможливо завершити\n"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr "Очікується об'єкт VBArray"
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr "Очікується об'єкт JScript"
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr "Синтаксична помилка в регулярному виразі"
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr "URI, що буде закодований, містить неприпустимі символи"
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI, що буде закодований, містить неприпустимі символи"
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr "Очікується об'єкт Array"
|
||||
|
||||
|
|
46
po/wa.po
46
po/wa.po
|
@ -3485,67 +3485,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "&Rafacer\tDel"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
52
po/wine.pot
52
po/wine.pot
|
@ -3398,66 +3398,70 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Cannot delete '|'"
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
msgid "VBArray object expected"
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
msgid "JScript object expected"
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
46
po/zh_CN.po
46
po/zh_CN.po
|
@ -3538,67 +3538,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "删除日期"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
46
po/zh_TW.po
46
po/zh_TW.po
|
@ -3553,67 +3553,71 @@ msgid "Unterminated string constant"
|
|||
msgstr ""
|
||||
|
||||
#: jscript.rc:38
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "Number expected"
|
||||
msgid "Can't have 'break' outside of loop"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:39
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "'[object]' is not a date object"
|
||||
msgid "Conditional compilation is turned off"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:42
|
||||
msgid "Object expected"
|
||||
msgid "Number expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:40
|
||||
msgid "Function expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:41
|
||||
msgid "'[object]' is not a date object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:43
|
||||
msgid "Illegal assignment"
|
||||
msgid "Object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:44
|
||||
msgid "'|' is undefined"
|
||||
msgid "Illegal assignment"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:45
|
||||
msgid "Boolean object expected"
|
||||
msgid "'|' is undefined"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:46
|
||||
msgid "Boolean object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:47
|
||||
#, fuzzy
|
||||
msgid "Cannot delete '|'"
|
||||
msgstr "刪除"
|
||||
|
||||
#: jscript.rc:47
|
||||
#: jscript.rc:48
|
||||
msgid "VBArray object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:48
|
||||
#: jscript.rc:49
|
||||
msgid "JScript object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:49
|
||||
#: jscript.rc:50
|
||||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:51
|
||||
#: jscript.rc:52
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:50
|
||||
#: jscript.rc:51
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:52
|
||||
#: jscript.rc:53
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:53
|
||||
#: jscript.rc:54
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue