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