diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index 288c5d25681..0bc5a5b2cc8 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -160,6 +160,8 @@ static HRESULT stack_pop_object(exec_ctx_t *ctx, IDispatch **r) v = stack_pop(ctx); if(V_VT(v) == VT_DISPATCH) { + if(!V_DISPATCH(v)) + return throw_type_error(ctx->parser->script, &ctx->ei, JS_E_OBJECT_REQUIRED, NULL); *r = V_DISPATCH(v); return S_OK; } diff --git a/dlls/jscript/jscript.h b/dlls/jscript/jscript.h index 26b1dfb65ed..78977a61545 100644 --- a/dlls/jscript/jscript.h +++ b/dlls/jscript/jscript.h @@ -447,6 +447,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags) #define JS_E_TO_PRIMITIVE MAKE_JSERROR(IDS_TO_PRIMITIVE) #define JS_E_INVALIDARG MAKE_JSERROR(IDS_INVALID_CALL_ARG) #define JS_E_SUBSCRIPT_OUT_OF_RANGE MAKE_JSERROR(IDS_SUBSCRIPT_OUT_OF_RANGE) +#define JS_E_OBJECT_REQUIRED MAKE_JSERROR(IDS_OBJECT_REQUIRED) #define JS_E_CANNOT_CREATE_OBJ MAKE_JSERROR(IDS_CREATE_OBJ_ERROR) #define JS_E_INVALID_PROPERTY MAKE_JSERROR(IDS_NO_PROPERTY) #define JS_E_INVALID_ACTION MAKE_JSERROR(IDS_UNSUPPORTED_ACTION) diff --git a/dlls/jscript/jscript.rc b/dlls/jscript/jscript.rc index d1c510edece..84d0ba88b39 100644 --- a/dlls/jscript/jscript.rc +++ b/dlls/jscript/jscript.rc @@ -25,6 +25,7 @@ STRINGTABLE IDS_TO_PRIMITIVE "Error converting object to primitive type" IDS_INVALID_CALL_ARG "Invalid procedure call or argument" IDS_SUBSCRIPT_OUT_OF_RANGE "Subscript out of range" + IDS_OBJECT_REQUIRED "Object required" IDS_CREATE_OBJ_ERROR "Automation server can't create object" IDS_NO_PROPERTY "Object doesn't support this property or method" IDS_UNSUPPORTED_ACTION "Object doesn't support this action" diff --git a/dlls/jscript/resource.h b/dlls/jscript/resource.h index ef115fcd6f1..efea25a7e1c 100644 --- a/dlls/jscript/resource.h +++ b/dlls/jscript/resource.h @@ -25,6 +25,7 @@ #define IDS_TO_PRIMITIVE 0x0001 #define IDS_INVALID_CALL_ARG 0x0005 #define IDS_SUBSCRIPT_OUT_OF_RANGE 0x0009 +#define IDS_OBJECT_REQUIRED 0x01A8 #define IDS_CREATE_OBJ_ERROR 0x01AD #define IDS_NO_PROPERTY 0x01B6 #define IDS_UNSUPPORTED_ACTION 0x01BD diff --git a/dlls/jscript/tests/api.js b/dlls/jscript/tests/api.js index 72919791abe..f8b411d6ca6 100644 --- a/dlls/jscript/tests/api.js +++ b/dlls/jscript/tests/api.js @@ -1964,6 +1964,7 @@ var exception_array = { E_INVALID_CALL_ARG: { type: "TypeError", number: -2146828283 }, E_NOT_FUNC: { type: "TypeError", number: -2146823286 }, E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 }, + E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 }, E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 }, E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 }, E_UNDEFINED: { type: "TypeError", number: -2146823279 }, @@ -2031,6 +2032,8 @@ testException(function() {new nullDisp;}, "E_NO_PROPERTY"); testException(function() {new VBArray();}, "E_NOT_VBARRAY"); testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBARRAY"); testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY"); +testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED"); +testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED"); //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED"); //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED"); diff --git a/po/ar.po b/po/ar.po index 99e285b15c2..eebdba266f8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3446,98 +3446,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/bg.po b/po/bg.po index d46434b58d5..8324b82168e 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3462,98 +3462,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/ca.po b/po/ca.po index 744207d1980..318e4fc4329 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3493,98 +3493,103 @@ msgid "Subscript out of range" msgstr "El subíndex està fora del rang" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "S'esperava un objecte" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "El servidor d'automatització no pot crear l'objecte" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "L'objecte no accepta aquesta propietat o mètode" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "L'objecte no accepta aquesta acció" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument no opcional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Error de sintaxi" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "S'esperava ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "S'esperava '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "S'esperava ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Cadena constant no finalitzat" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "La compilació condicional està desactivada" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "S'esperava un nombre" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "S'esperava una funció" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[objecte]' no és un objecte de data" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "S'esperava un objecte" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Assignació il·legal" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' no està definit" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "S'esperava un objecte booleà" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "S'esperava un objecte VBArray" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "S'esperava un objecte JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Error de sintaxi en l'expressió regular" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI per a codificar conté caràcters invàlids" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "URI per a descodificar és incorrecte" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Longitud del vector ha de ser un enter positiu finit" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "S'esperava un objecte Array" diff --git a/po/cs.po b/po/cs.po index 1ccf23383c6..7916e64e946 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3509,98 +3509,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/da.po b/po/da.po index 5593d4ad890..6a29c9a68da 100644 --- a/po/da.po +++ b/po/da.po @@ -3538,101 +3538,106 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "objekt forventet" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automations-serveren kan ikke oprette objektet" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Objektet understøtter ikke denne egenskab eller metode" -#: jscript.rc:30 +#: jscript.rc:31 #, fuzzy msgid "Object doesn't support this action" msgstr "Objektet understøtter ikke denne egenskab eller metode" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument ikke valgfrit" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntaksfejl" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Forventet ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Forventet '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Forventet ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Uafsluttet streng konstant" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Nummer forventet" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Funktion forventet" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "[objekt]' er ikke en dato objekt" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "objekt forventet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Ulovlig tildeling" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' er ikke defineret" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean objekt forventet" -#: jscript.rc:45 +#: jscript.rc:46 #, fuzzy msgid "VBArray object expected" msgstr "Array objekt forventet" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript objekt forventet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntax fejl i regulært udtryk" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, der skal kodes indeholder ugyldige tegn" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array længde skal være et endeligt positivt heltal" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array objekt forventet" diff --git a/po/de.po b/po/de.po index 4939f4e5a59..0babd84d7f1 100644 --- a/po/de.po +++ b/po/de.po @@ -3473,98 +3473,103 @@ msgid "Subscript out of range" msgstr "Index außerhalb des Bereichs" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objekt erwartet" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automatisierungsserver konnte das Objekt nicht erstellen" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Das Objekt unterstützt diese Eigenschaft oder Methode nicht" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Das Objekt unterstützt diese Aktion nicht" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument nicht optional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntax Fehler" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' erwartet" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' erwartet" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' erwartet" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "konstante Zeichenkette nicht terminiert" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Bedingte Kompilierung ist ausgeschaltet" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Nummer erwartet" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Funktion erwartet" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[Objekt]' ist kein Datums-Objekt" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objekt erwartet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Unzulässige Zuweisung" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' nicht definiert" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolisches Objekt erwartet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray Objekt erwartet" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript Objekt erwartet" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntax Fehler in regulärem Ausdruck" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "Zu entschlüsselnde URI ist ungültig" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array Objekt erwartet" diff --git a/po/el.po b/po/el.po index 67aaa2d71ff..dff4d393789 100644 --- a/po/el.po +++ b/po/el.po @@ -3403,98 +3403,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/en.po b/po/en.po index 75748dad13f..2e6399b1f51 100644 --- a/po/en.po +++ b/po/en.po @@ -3355,98 +3355,102 @@ msgid "Subscript out of range" msgstr "Subscript out of range" #: jscript.rc:28 +msgid "Object required" +msgstr "Object required" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automation server can't create object" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Object doesn't support this property or method" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Object doesn't support this action" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument not optional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntax error" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Expected ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Expected '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Expected ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/en_US.po b/po/en_US.po index 2ab8464e797..c0db09b53c4 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -3470,98 +3470,102 @@ msgid "Subscript out of range" msgstr "Subscript out of range" #: jscript.rc:28 +msgid "Object required" +msgstr "Object required" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automation server can't create object" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Object doesn't support this property or method" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Object doesn't support this action" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument not optional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntax error" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Expected ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Expected '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Expected ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Unterminated string constant" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Conditional compilation is turned off" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Number expected" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Function expected" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' is not a date object" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Object expected" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Illegal assignment" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' is undefined" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean object expected" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray object expected" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript object expected" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntax error in regular expression" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array object expected" diff --git a/po/eo.po b/po/eo.po index 564a91fb696..e02bc57e29d 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3490,98 +3490,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/es.po b/po/es.po index af461dd0971..f9e158b70f3 100644 --- a/po/es.po +++ b/po/es.po @@ -3524,101 +3524,106 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objeto esperado" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Servidor de automatización no puede crear el objeto" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "El objeto no acepta esta propiedad o método" -#: jscript.rc:30 +#: jscript.rc:31 #, fuzzy msgid "Object doesn't support this action" msgstr "El objeto no acepta esta propiedad o método" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumento no opcional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Error de sintaxis" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Esperado ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Esperado '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Esperado ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Constante de cadena no terminada" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Numero esperado" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Función esperada" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[objeto]' no es un objeto fecha" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Asignación ilegal" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' no está definido" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Objeto Booleano esperado" -#: jscript.rc:45 +#: jscript.rc:46 #, fuzzy msgid "VBArray object expected" msgstr "Objeto Arreglo esperado" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Error de sintaxis en la expresion regular" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a codificar contiene caracteres no válidos" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "La longitud del arreglo debe ser un entero positivo finito" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Objeto Arreglo esperado" diff --git a/po/fa.po b/po/fa.po index f4595e0b1b8..632c480e7df 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3446,98 +3446,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/fi.po b/po/fi.po index cec4f7ed985..d3b03039a25 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3510,98 +3510,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/fr.po b/po/fr.po index cdf0625e0e6..b9f903eb56a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3494,98 +3494,103 @@ msgid "Subscript out of range" msgstr "Indice hors limites" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objet attendu" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Le serveur d'automatisation ne peut créer l'objet" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Cet objet ne supporte pas cette propriété ou méthode" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Cet objet ne supporte pas cette action" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument non optionnel" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Erreur de syntaxe" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "« ; » attendu" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "« ( » attendu" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "« ) » attendu" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Constante chaîne de caractères non clôturée" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "La compilation conditionnelle est désactivée" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Nombre attendu" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Fonction attendue" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "« [objet] » n'est pas un objet de type date" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objet attendu" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Affectation illégale" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "« | » n'est pas défini" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Objet booléen attendu" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Objet VBArray attendu" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Objet JScript attendu" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Erreur de syntaxe dans l'expression rationnelle" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "L'URI à coder contient des caractères invalides" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "L'URI à décoder est incorrecte" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "La longueur d'un tableau doit être un entier positif" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Objet tableau attendu" diff --git a/po/he.po b/po/he.po index dfd919de957..c8660f8fd1f 100644 --- a/po/he.po +++ b/po/he.po @@ -3444,98 +3444,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 +msgid "Argument not optional" +msgstr "" + +#: jscript.rc:33 msgid "Syntax error" msgstr "שגיאת תחביר" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' אינו מוגדר" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/hi.po b/po/hi.po index f085a6d1773..7e02806b8b4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3387,98 +3387,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/hu.po b/po/hu.po index 245a6d2afb3..b841c3b5287 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3585,101 +3585,106 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objektumot vártam" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Az automatizáló (automation) kiszolgáló nem tud objektumot létrehozni" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust" -#: jscript.rc:30 +#: jscript.rc:31 #, fuzzy msgid "Object doesn't support this action" msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Az argumentum nem opcionális" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Szinttaktikai hiba" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Hiányzó ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Hiányzó '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Hiányzó ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Lezáratlan sztring konstans" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Számot vártam" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Függvényt vártam" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'Az [object]' nem egy date (dátum) objektum" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objektumot vártam" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Nem megengedett összerendelés" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "A '|' nem definiált" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean (igaz-hamis) objektumot vártam" -#: jscript.rc:45 +#: jscript.rc:46 #, fuzzy msgid "VBArray object expected" msgstr "Tömb objektumot vártam" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript objektumot vártam" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Szinttaktikai hiba a reguláris kifejezésben" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" -#: jscript.rc:50 +#: jscript.rc:51 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:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Tömb objektumot vártam" diff --git a/po/it.po b/po/it.po index 5f4d6482b4d..14b8a68136b 100644 --- a/po/it.po +++ b/po/it.po @@ -3485,98 +3485,103 @@ msgid "Subscript out of range" msgstr "Sottoscript fuori portata" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Richiesto un oggetto" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Il server di automazione non può creare l'oggetto" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "L'oggetto non supporta questa proprietà o metodo" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "L'oggetto non supporta questa azione" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argomento non opzionale" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Errore di sintassi" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Richiesto ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Richiesto '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Richiesto ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Costante stringa non terminata" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Compilazione condizionale disattivata" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Richiesto un numero" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Richiesta una funzione" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[oggetto]' non è un oggetto data" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Richiesto un oggetto" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Assegnamento illegale" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' non è definito" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Richiesto un oggetto Booleano" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Richiesto un oggetto VBArray" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Richiesto un oggetto JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Errore di sintassi nell'espressione regolare" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "L'URI da codificare contiene caratteri non validi" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "L'URI da decodificare non è corretto" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "La lunghezza dell'array deve essere un intero finito e positivo" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Richiesto un oggetto array" diff --git a/po/ja.po b/po/ja.po index 8abafd0b431..2cec4e22919 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3458,98 +3458,103 @@ msgid "Subscript out of range" msgstr "添字が範囲外です" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "オブジェクトを期待していました" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "オートメーション サーバはオブジェクトを生成できません" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "オブジェクトはこのプロパティまたはメソッドをサポートしていません" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "オブジェクトはこの操作をサポートしていません" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "引数は省略できません" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "構文エラー" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';'を期待していました" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'('を期待していました" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')'を期待していました" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "文字列定数が終端していません" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "条件コンパイルはオフにされています" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "数値を期待していました" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "関数を期待していました" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' は日付オブジェクトではありません" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "オブジェクトを期待していました" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "不正な割り当て" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|'は定義されていません" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean オブジェクトを期待していました" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray オブジェクトを期待していました" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript オブジェクトを期待していました" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "正規表現に構文誤りがあります" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "エンコードされるURIに無効な文字が含まれています" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "デコードされるURIが正しくありません" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "配列の長さは有限の正整数でなければなりません" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "配列オブジェクトを期待していました" diff --git a/po/ko.po b/po/ko.po index 042c6009c66..5f395dd5c0b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3459,98 +3459,103 @@ msgid "Subscript out of range" msgstr "첨자가 범위를 벗어남" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "객체가 필요합니다" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "자동화 서버가 객체를 만들 수 없음" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "객체는 이 속성이나 메소드를 지원하지 않음" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "객체는 이 행동을 지원하지 않음" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "인수는 옵션이 아닙니다" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "문법 오류" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' 가 필요합니다" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' 가 필요합니다" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' 가 필요합니다" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "띁나지 않은 문자열 상수" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "조건부 컴파일이 설정되어 있음" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "숫자가 필요합니다" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "함수가 필요합니다" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[객체]' 는 날짜 객체가 아님" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "객체가 필요합니다" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "잘못된 할당" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' 는 정의되지 않았음" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "볼린 객제가 필요함" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray 갹체가 필요함" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript 객체가 필요함" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "정규 표현식에 문법오류가 있음" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "해독하는 URI가 올바르지 않음" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "배열 객체가 필요함" diff --git a/po/lt.po b/po/lt.po index 759f9947b5f..c80b804adcf 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3471,98 +3471,103 @@ msgid "Subscript out of range" msgstr "Indeksas nepatenka į rėžius" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Tikėtasi objekto" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automatizacijos serveriui nepavyko sukurti objekto" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Objektas nepalaiko šios savybės ar metodo" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Objektas nepalaiko šio veiksmo" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumentas nėra neprivalomas" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Sintaksės klaida" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Tikėtasi „;“" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Tikėtasi „(“" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Tikėtasi „)“" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Nebaigta eilutės konstanta" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Sąlyginis kompiliavimas yra išjungtas" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Tikėtasi skaičiaus" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Tikėtasi funkcijos" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "„[objektas]“ nėra datos objektas" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Tikėtasi objekto" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Neleistinas priskyrimas" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "„|“ yra neapibrėžtas" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Tikėtasi loginio objekto" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Tikėtasi VBArray objekto" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Tikėtasi JScript objekto" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Sintaksės klaida reguliariajame reiškinyje" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "Koduotiname URI yra netinkamų simbolių" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "Dekoduojamas URI yra neteisingas" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Tikėtasi masyvo objekto" diff --git a/po/ml.po b/po/ml.po index 40884535d9a..ded9ec032fc 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3387,98 +3387,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 61296178f0b..9991c2654b9 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3611,101 +3611,106 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Forventet objekt" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automatiseringstjeneren klarte ikke opprette objekt" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Objektet støtter ikke denne egenskapen eller metoden" -#: jscript.rc:30 +#: jscript.rc:31 #, fuzzy msgid "Object doesn't support this action" msgstr "Objektet støtter ikke denne egenskapen eller metoden" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumentet er ikke valgfritt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntaksfeil" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Forventet ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Forventet '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Forventet ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Uavsluttet strengkonstant" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Forventet nummer" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Forventet funksjon" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' er ikke et dataobjekt" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Forventet objekt" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Ugyldig tilordning" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' er udefinert" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Forventet boolsk verdi" -#: jscript.rc:45 +#: jscript.rc:46 #, fuzzy msgid "VBArray object expected" msgstr "Forventet rekke-objekt" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Forventet JScript-objekt" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntaksfeil i regulært uttrykk" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI'en som skulle kodes inneholder ugyldige tegn" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Rekkens lengde må være et endelig, positivt tall" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Forventet rekke-objekt" diff --git a/po/nl.po b/po/nl.po index b78e7ee5036..d17f5da6217 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3481,98 +3481,103 @@ msgid "Subscript out of range" msgstr "Index buiten bereik" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Object verwacht" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automatiseringsserver kan het object niet creëren" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Dit object ondersteunt deze eigenschap of methode niet" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Dit object ondersteunt deze actie niet" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument is niet optioneel" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntax fout" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' verwacht" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' verwacht" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' verwacht" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Onafgesloten tekenreeksconstante" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Conditionele compilatie is uitgeschakeld" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Getal verwacht" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Functie verwacht" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' is geen datum object" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Object verwacht" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Ongeldige toekenning" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' is ongedefinieerd" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolean object verwacht" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray object verwacht" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript object verwacht" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntax fout in reguliere expressie" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "De te coderen URI bevat ongeldige tekens" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "De te decoderen URI is niet correct" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array lengte moet een eindig, positief geheel getal zijn" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array object verwacht" diff --git a/po/or.po b/po/or.po index 08ae03e3caf..b29f60933ee 100644 --- a/po/or.po +++ b/po/or.po @@ -3387,98 +3387,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/pa.po b/po/pa.po index 08c50e25ca8..904981dbe91 100644 --- a/po/pa.po +++ b/po/pa.po @@ -3387,98 +3387,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/pl.po b/po/pl.po index 7df3b477826..48c77fee12b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3490,98 +3490,103 @@ msgid "Subscript out of range" msgstr "Indeks dolny poza zakresem" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Oczekiwany obiekt" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Serwer automatyzacji nie może stworzyć obiektu" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Obiekt nie wspiera tej właściwości lub metody" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Obiekt nie wspiera tej akcji" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument nieopcjonalny" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Błąd składni" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Oczekiwane ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Oczekiwane '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Oczekiwane ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Niezakończona stała znakowa" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Warunkowa kompilacja jest wyłączona" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Oczekiwana liczba" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Oczekiwana funkcja" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[obiekt]' nie jest obiektem daty" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Oczekiwany obiekt" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Niepoprawne przypisanie" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' jest niezdefiniowany" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Oczekiwany obiekt boolean" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Oczekiwany obiekt VBArray" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Oczekiwany obiekt JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Błąd składni w regularnym wyrażeniu" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "Kodowane URI zawiera niewłaściwe znaki" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "URI do dekodowania jest niepoprawny" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Oczekiwany obiekt tablicowy" diff --git a/po/pt_BR.po b/po/pt_BR.po index c95aa365502..2d99156c299 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3600,99 +3600,104 @@ msgid "Subscript out of range" msgstr "Subscript fora de alcance" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objeto esperado" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "O servidor de automação não conseguiu criar o objeto" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "O objeto não suporta esta propriedade ou método" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "O objeto não suporta esta ação" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumento não opcional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Erro de sintaxe" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' esperado" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' esperado" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' esperado" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Constante de string não terminada" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objeto de data" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objeto esperado" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Objeto boleano esperado" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Objeto VBArray esperado" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Objeto JScript esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Objeto Array esperado" diff --git a/po/pt_PT.po b/po/pt_PT.po index e2ab24dd181..a8fde4bd1cc 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -3655,99 +3655,104 @@ msgid "Subscript out of range" msgstr "Subscript fora de alcance" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objecto esperado" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "O servidor de automação não conseguiu criar o objecto" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "O objecto não suporta esta propriedade ou método" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "O objecto não suporta esta acção" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumento não opcional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Erro de sintaxe" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' esperado" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' esperado" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' esperado" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Constante de string não terminada" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Número esperado" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Função esperada" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' não é um objecto de data" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objecto esperado" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Atribuição ilegal" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' é indefinido" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Objecto boleano esperado" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Objecto VBArray esperado" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Objecto JScript esperado" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Erro de sintaxe na expressão regular" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI a ser codificado contém caracteres inválidos" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Tamanho do vector tem de ser um inteiro finito positivo" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Objecto Array esperado" diff --git a/po/rm.po b/po/rm.po index b39631512e0..3fefc03b455 100644 --- a/po/rm.po +++ b/po/rm.po @@ -3429,98 +3429,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/ro.po b/po/ro.po index 93fd90ac5d2..98ee8304961 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3658,101 +3658,106 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Se așteaptă un obiect" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Serverul de automatizare nu poate crea obiectul" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Obiectul nu suportă această proprietate sau metodă" -#: jscript.rc:30 +#: jscript.rc:31 #, fuzzy msgid "Object doesn't support this action" msgstr "Obiectul nu suportă această proprietate sau metodă" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumentul nu este opțional" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Eroare de sintaxă" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Se așteaptă „;”" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Se așteaptă „(”" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Se așteaptă „)”" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Șir constant neterminat" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Se așteaptă un număr" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Se așteaptă o funcție" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "„[obiect]” nu este un obiect de tip dată" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Se așteaptă un obiect" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Atribuire ilegală" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "„|” nu este definit" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Se așteaptă un obiect boolean" -#: jscript.rc:45 +#: jscript.rc:46 #, fuzzy msgid "VBArray object expected" msgstr "Se așteaptă un obiect matrice" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Se așteaptă un obiect JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Eroare de sintaxă în expresia regulată" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI care trebuie codificat conține caractere nevalide" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Se așteaptă un obiect matrice" diff --git a/po/ru.po b/po/ru.po index 9a11061d206..a73f4f441c3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3478,98 +3478,103 @@ msgid "Subscript out of range" msgstr "Индекс вне диапазона" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Ожидается объект" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Сервер автоматизации не может создать объект" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Объект не поддерживает это свойство или метод" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Объект не поддерживает это действие" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Отсутствует обязательный аргумент" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Синтаксическая ошибка" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Ожидается ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Ожидается '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Ожидается ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Незавершённая строковая константа" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Условная компиляция отключена" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Ожидается число" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Ожидается функция" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' не объект типа 'date'" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Ожидается объект" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Неверное присваивание" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' не определён" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Ожидается объект типа 'bool'" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Ожидается объект типа 'VBArray'" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Ожидается объект типа 'JScript'" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Синтаксическая ошибка в регулярном выражении" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "В кодируемом URI обнаружен неверный символ" -#: jscript.rc:48 +#: jscript.rc:49 msgid "URI to be decoded is incorrect" msgstr "Декодируемый URI неверен" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Длиной массива должно быть конечное положительное число" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Ожидается объект типа 'Array'" diff --git a/po/sk.po b/po/sk.po index 20ed30a0253..9541fc3115f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3416,98 +3416,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/sl.po b/po/sl.po index ede21713478..2f844361a85 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3522,99 +3522,104 @@ msgid "Subscript out of range" msgstr "Podskript je izven obsega" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Pričakovan je bil predmet" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Strežnik izvajanja ne more ustvariti predmeta" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Predmet ne podpira te lastnosti ali načina" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Predmet ne podpira tega dejanja" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument je obvezen" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Skladenjska napaka" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Pričakovan je bil ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Pričakovan je bil '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Pričakovan je bil ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Nedoločena konstanta niza" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Pogojno kodo prevajanje je izklopljeno" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Pričakovano je bilo število" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Pričakovana je bila funkcija" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' ni predmet datuma" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Pričakovan je bil predmet" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Neveljavna dodelitev" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' ni določen" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Pričakovan je bil Boolov predmet" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Pričakovan je bil predmet VBArray" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Pričakovan je bil predmet JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Napaka skladnje v logičnem izrazu" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI za kodiranje vsebuje neveljavne znake" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Dolžina polja mora bit pozitivno celo število" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Pričakovan je bil predmet polja" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 43f8611db87..ac807f18c50 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -3481,99 +3481,104 @@ msgid "Subscript out of range" msgstr "Потпис је ван домета" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Очекивани објекат" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Аутоматизовани сервер не може да створи објекат" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Објекат не подржава ово својство или методу" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Објекат не подржава ову радњу" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Аргумент је обавезан" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Грешка у синтакси" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Очекивано ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Очекивано '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Очекивано ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Незавршена константа ниски" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Очекивани број" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Очекивана функција" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "„[object]“ није временски објекат" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Очекивани објекат" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Недозвољен задатак" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "„|“ није одређено" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Очекивани објекат истинитосне вредности" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray објекат се очекује" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Очекивани објекат JScript врсте" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Синтаксна грешка у регуларном изразу" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI садржи неисправне знакове" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI садржи неисправне знакове" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Низ дужине мора бити коначан позитиван цео број" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Очекивани низ објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index d767fa20ecc..6fc2d29666c 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -3565,99 +3565,104 @@ msgid "Subscript out of range" msgstr "Potpis je van dometa" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Očekivani objekat" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automatizovani server ne može da stvori objekat" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Objekat ne podržava ovo svojstvo ili metodu" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Objekat ne podržava ovu radnju" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argument je obavezan" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Greška u sintaksi" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Očekivano ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Očekivano '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Očekivano ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Nezavršena konstanta niski" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Očekivani broj" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Očekivana funkcija" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "„[object]“ nije vremenski objekat" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Očekivani objekat" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Nedozvoljen zadatak" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "„|“ nije određeno" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Očekivani objekat istinitosne vrednosti" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray objekat se očekuje" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Očekivani objekat JScript vrste" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Sintaksna greška u regularnom izrazu" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI sadrži neispravne znakove" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Niz dužine mora biti konačan pozitivan ceo broj" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Očekivani niz objekta" diff --git a/po/sv.po b/po/sv.po index 7b556bff125..3c0e8edb45b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3482,99 +3482,104 @@ msgid "Subscript out of range" msgstr "Index utanför giltigt intervall" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Objekt förväntades" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Automationsservern kunde inte skapa objekt" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Objektet stöder inte denna egenskap eller metod" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Objektet stöder inte denna handling" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Argumentet är inte valfritt" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Syntaxfel" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "';' förväntades" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "'(' förväntades" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "')' förväntades" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Oterminerad strängkonstant" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Villkorlig kompilering är avslagen" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Nummer förväntades" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Funktion förväntades" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' är inte ett datumobjekt" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Objekt förväntades" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Ogiltig tilldelning" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' är odefinierat" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Boolskt objekt förväntades" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "VBArray-objekt förväntades" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "JScript-objekt förväntades" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Syntaxfel i reguljärt uttryck" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "Den URI som ska kodas innehåller ogiltiga tecken" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Array-längd måste vara ett positivt ändligt heltal" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Array-objekt förväntades" diff --git a/po/te.po b/po/te.po index d09e2d68cb3..1678a51a78f 100644 --- a/po/te.po +++ b/po/te.po @@ -3387,98 +3387,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/th.po b/po/th.po index 0433002788f..57a94590c09 100644 --- a/po/th.po +++ b/po/th.po @@ -3423,98 +3423,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/tr.po b/po/tr.po index db97c182174..6aa9dd50a12 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3504,98 +3504,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/uk.po b/po/uk.po index 1f48c595c1e..8ce07fb1f29 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3474,99 +3474,104 @@ msgid "Subscript out of range" msgstr "Індекс поза діапазоном" #: jscript.rc:28 +#, fuzzy +msgid "Object required" +msgstr "Очікується об'єкт" + +#: jscript.rc:29 msgid "Automation server can't create object" msgstr "Сервер автоматизації не може створити об'єкт" -#: jscript.rc:29 +#: jscript.rc:30 msgid "Object doesn't support this property or method" msgstr "Об'єкт не підтримує цю властивість чи метод" -#: jscript.rc:30 +#: jscript.rc:31 msgid "Object doesn't support this action" msgstr "Об'єкт не підтримує цю дію" -#: jscript.rc:31 +#: jscript.rc:32 msgid "Argument not optional" msgstr "Відсутній обов'язковий аргумент" -#: jscript.rc:32 +#: jscript.rc:33 msgid "Syntax error" msgstr "Синтаксична помилка" -#: jscript.rc:33 +#: jscript.rc:34 msgid "Expected ';'" msgstr "Очікується ';'" -#: jscript.rc:34 +#: jscript.rc:35 msgid "Expected '('" msgstr "Очікується '('" -#: jscript.rc:35 +#: jscript.rc:36 msgid "Expected ')'" msgstr "Очікується ')'" -#: jscript.rc:36 +#: jscript.rc:37 msgid "Unterminated string constant" msgstr "Незавершена рядкова константа" -#: jscript.rc:37 +#: jscript.rc:38 msgid "Conditional compilation is turned off" msgstr "Умовна компіляція вимкнена" -#: jscript.rc:40 +#: jscript.rc:41 msgid "Number expected" msgstr "Очікується число" -#: jscript.rc:38 +#: jscript.rc:39 msgid "Function expected" msgstr "Очікується функція" -#: jscript.rc:39 +#: jscript.rc:40 msgid "'[object]' is not a date object" msgstr "'[object]' не об'єкт типу date" -#: jscript.rc:41 +#: jscript.rc:42 msgid "Object expected" msgstr "Очікується об'єкт" -#: jscript.rc:42 +#: jscript.rc:43 msgid "Illegal assignment" msgstr "Невірне присвоєння" -#: jscript.rc:43 +#: jscript.rc:44 msgid "'|' is undefined" msgstr "'|' не визначено" -#: jscript.rc:44 +#: jscript.rc:45 msgid "Boolean object expected" msgstr "Очікується об'єкт Boolean" -#: jscript.rc:45 +#: jscript.rc:46 msgid "VBArray object expected" msgstr "Очікується об'єкт VBArray" -#: jscript.rc:46 +#: jscript.rc:47 msgid "JScript object expected" msgstr "Очікується об'єкт JScript" -#: jscript.rc:47 +#: jscript.rc:48 msgid "Syntax error in regular expression" msgstr "Синтаксична помилка в регулярному виразі" -#: jscript.rc:49 +#: jscript.rc:50 msgid "URI to be encoded contains invalid characters" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:48 +#: jscript.rc:49 #, fuzzy msgid "URI to be decoded is incorrect" msgstr "URI, що буде закодований, містить неприпустимі символи" -#: jscript.rc:50 +#: jscript.rc:51 msgid "Array length must be a finite positive integer" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" -#: jscript.rc:51 +#: jscript.rc:52 msgid "Array object expected" msgstr "Очікується об'єкт Array" diff --git a/po/wa.po b/po/wa.po index 43ca57752fc..3c95a3c0d8a 100644 --- a/po/wa.po +++ b/po/wa.po @@ -3436,98 +3436,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index bff42f60640..ebe4264331f 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -3350,98 +3350,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 07dbfb66fd1..3e70bdb847a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3488,98 +3488,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 164fd2f026f..4f9edd41ee8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3504,98 +3504,102 @@ msgid "Subscript out of range" msgstr "" #: jscript.rc:28 -msgid "Automation server can't create object" +msgid "Object required" msgstr "" #: jscript.rc:29 -msgid "Object doesn't support this property or method" +msgid "Automation server can't create object" msgstr "" #: jscript.rc:30 -msgid "Object doesn't support this action" +msgid "Object doesn't support this property or method" msgstr "" #: jscript.rc:31 -msgid "Argument not optional" +msgid "Object doesn't support this action" msgstr "" #: jscript.rc:32 -msgid "Syntax error" +msgid "Argument not optional" msgstr "" #: jscript.rc:33 -msgid "Expected ';'" +msgid "Syntax error" msgstr "" #: jscript.rc:34 -msgid "Expected '('" +msgid "Expected ';'" msgstr "" #: jscript.rc:35 -msgid "Expected ')'" +msgid "Expected '('" msgstr "" #: jscript.rc:36 -msgid "Unterminated string constant" +msgid "Expected ')'" msgstr "" #: jscript.rc:37 -msgid "Conditional compilation is turned off" -msgstr "" - -#: jscript.rc:40 -msgid "Number expected" +msgid "Unterminated string constant" msgstr "" #: jscript.rc:38 -msgid "Function expected" -msgstr "" - -#: jscript.rc:39 -msgid "'[object]' is not a date object" +msgid "Conditional compilation is turned off" msgstr "" #: jscript.rc:41 -msgid "Object expected" +msgid "Number expected" +msgstr "" + +#: jscript.rc:39 +msgid "Function expected" +msgstr "" + +#: jscript.rc:40 +msgid "'[object]' is not a date object" msgstr "" #: jscript.rc:42 -msgid "Illegal assignment" +msgid "Object expected" msgstr "" #: jscript.rc:43 -msgid "'|' is undefined" +msgid "Illegal assignment" msgstr "" #: jscript.rc:44 -msgid "Boolean object expected" +msgid "'|' is undefined" msgstr "" #: jscript.rc:45 -msgid "VBArray object expected" +msgid "Boolean object expected" msgstr "" #: jscript.rc:46 -msgid "JScript object expected" +msgid "VBArray object expected" msgstr "" #: jscript.rc:47 -msgid "Syntax error in regular expression" -msgstr "" - -#: jscript.rc:49 -msgid "URI to be encoded contains invalid characters" +msgid "JScript object expected" msgstr "" #: jscript.rc:48 -msgid "URI to be decoded is incorrect" +msgid "Syntax error in regular expression" msgstr "" #: jscript.rc:50 -msgid "Array length must be a finite positive integer" +msgid "URI to be encoded contains invalid characters" +msgstr "" + +#: jscript.rc:49 +msgid "URI to be decoded is incorrect" msgstr "" #: jscript.rc:51 +msgid "Array length must be a finite positive integer" +msgstr "" + +#: jscript.rc:52 msgid "Array object expected" msgstr ""