jscript: Properly handle NULL IDispatch in stack_pop_object.

oldstable
Jacek Caban 2011-12-12 14:44:09 +01:00 committed by Alexandre Julliard
parent 6f35c8fd5d
commit 2c8e8948df
50 changed files with 1425 additions and 1215 deletions

View File

@ -160,6 +160,8 @@ static HRESULT stack_pop_object(exec_ctx_t *ctx, IDispatch **r)
v = stack_pop(ctx); v = stack_pop(ctx);
if(V_VT(v) == VT_DISPATCH) { 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); *r = V_DISPATCH(v);
return S_OK; return S_OK;
} }

View File

@ -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_TO_PRIMITIVE MAKE_JSERROR(IDS_TO_PRIMITIVE)
#define JS_E_INVALIDARG MAKE_JSERROR(IDS_INVALID_CALL_ARG) #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_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_CANNOT_CREATE_OBJ MAKE_JSERROR(IDS_CREATE_OBJ_ERROR)
#define JS_E_INVALID_PROPERTY MAKE_JSERROR(IDS_NO_PROPERTY) #define JS_E_INVALID_PROPERTY MAKE_JSERROR(IDS_NO_PROPERTY)
#define JS_E_INVALID_ACTION MAKE_JSERROR(IDS_UNSUPPORTED_ACTION) #define JS_E_INVALID_ACTION MAKE_JSERROR(IDS_UNSUPPORTED_ACTION)

View File

@ -25,6 +25,7 @@ STRINGTABLE
IDS_TO_PRIMITIVE "Error converting object to primitive type" IDS_TO_PRIMITIVE "Error converting object to primitive type"
IDS_INVALID_CALL_ARG "Invalid procedure call or argument" IDS_INVALID_CALL_ARG "Invalid procedure call or argument"
IDS_SUBSCRIPT_OUT_OF_RANGE "Subscript out of range" 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_CREATE_OBJ_ERROR "Automation server can't create object"
IDS_NO_PROPERTY "Object doesn't support this property or method" IDS_NO_PROPERTY "Object doesn't support this property or method"
IDS_UNSUPPORTED_ACTION "Object doesn't support this action" IDS_UNSUPPORTED_ACTION "Object doesn't support this action"

View File

@ -25,6 +25,7 @@
#define IDS_TO_PRIMITIVE 0x0001 #define IDS_TO_PRIMITIVE 0x0001
#define IDS_INVALID_CALL_ARG 0x0005 #define IDS_INVALID_CALL_ARG 0x0005
#define IDS_SUBSCRIPT_OUT_OF_RANGE 0x0009 #define IDS_SUBSCRIPT_OUT_OF_RANGE 0x0009
#define IDS_OBJECT_REQUIRED 0x01A8
#define IDS_CREATE_OBJ_ERROR 0x01AD #define IDS_CREATE_OBJ_ERROR 0x01AD
#define IDS_NO_PROPERTY 0x01B6 #define IDS_NO_PROPERTY 0x01B6
#define IDS_UNSUPPORTED_ACTION 0x01BD #define IDS_UNSUPPORTED_ACTION 0x01BD

View File

@ -1964,6 +1964,7 @@ var exception_array = {
E_INVALID_CALL_ARG: { type: "TypeError", number: -2146828283 }, E_INVALID_CALL_ARG: { type: "TypeError", number: -2146828283 },
E_NOT_FUNC: { type: "TypeError", number: -2146823286 }, E_NOT_FUNC: { type: "TypeError", number: -2146823286 },
E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 }, E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 },
E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 },
E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 }, E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 },
E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 }, E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 },
E_UNDEFINED: { type: "TypeError", number: -2146823279 }, 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();}, "E_NOT_VBARRAY");
testException(function() {new VBArray(new VBArray(createArray()));}, "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() {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() {nonexistent++;}, "E_OBJECT_EXPECTED");
//FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED"); //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED");

View File

@ -3446,98 +3446,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3462,98 +3462,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3493,98 +3493,103 @@ msgid "Subscript out of range"
msgstr "El subíndex està fora del rang" msgstr "El subíndex està fora del rang"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "S'esperava un objecte"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "El servidor d'automatització no pot crear l'objecte" 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" msgid "Object doesn't support this property or method"
msgstr "L'objecte no accepta aquesta propietat o mètode" msgstr "L'objecte no accepta aquesta propietat o mètode"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "L'objecte no accepta aquesta acció" msgstr "L'objecte no accepta aquesta acció"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument no opcional" msgstr "Argument no opcional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Error de sintaxi" msgstr "Error de sintaxi"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "S'esperava ';'" msgstr "S'esperava ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "S'esperava '('" msgstr "S'esperava '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "S'esperava ')'" msgstr "S'esperava ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Cadena constant no finalitzat" msgstr "Cadena constant no finalitzat"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "La compilació condicional està desactivada" msgstr "La compilació condicional està desactivada"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "S'esperava un nombre" msgstr "S'esperava un nombre"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "S'esperava una funció" msgstr "S'esperava una funció"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[objecte]' no és un objecte de data" msgstr "'[objecte]' no és un objecte de data"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "S'esperava un objecte" msgstr "S'esperava un objecte"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Assignació il·legal" msgstr "Assignació il·legal"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' no està definit" msgstr "'|' no està definit"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "S'esperava un objecte booleà" msgstr "S'esperava un objecte booleà"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "S'esperava un objecte VBArray" msgstr "S'esperava un objecte VBArray"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "S'esperava un objecte JScript" msgstr "S'esperava un objecte JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Error de sintaxi en l'expressió regular" msgstr "Error de sintaxi en l'expressió regular"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI per a codificar conté caràcters invàlids" msgstr "URI per a codificar conté caràcters invàlids"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI per a descodificar és incorrecte" msgstr "URI per a descodificar és incorrecte"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Longitud del vector ha de ser un enter positiu finit" msgstr "Longitud del vector ha de ser un enter positiu finit"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "S'esperava un objecte Array" msgstr "S'esperava un objecte Array"

View File

@ -3509,98 +3509,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3538,101 +3538,106 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "objekt forventet"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automations-serveren kan ikke oprette objektet" msgstr "Automations-serveren kan ikke oprette objektet"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Objektet understøtter ikke denne egenskab eller metode" msgstr "Objektet understøtter ikke denne egenskab eller metode"
#: jscript.rc:30 #: jscript.rc:31
#, fuzzy #, fuzzy
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Objektet understøtter ikke denne egenskab eller metode" msgstr "Objektet understøtter ikke denne egenskab eller metode"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument ikke valgfrit" msgstr "Argument ikke valgfrit"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntaksfejl" msgstr "Syntaksfejl"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Forventet ';'" msgstr "Forventet ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Forventet '('" msgstr "Forventet '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Forventet ')'" msgstr "Forventet ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Uafsluttet streng konstant" msgstr "Uafsluttet streng konstant"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Nummer forventet" msgstr "Nummer forventet"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Funktion forventet" msgstr "Funktion forventet"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "[objekt]' er ikke en dato objekt" msgstr "[objekt]' er ikke en dato objekt"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "objekt forventet" msgstr "objekt forventet"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Ulovlig tildeling" msgstr "Ulovlig tildeling"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' er ikke defineret" msgstr "'|' er ikke defineret"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean objekt forventet" msgstr "Boolean objekt forventet"
#: jscript.rc:45 #: jscript.rc:46
#, fuzzy #, fuzzy
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Array objekt forventet" msgstr "Array objekt forventet"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript objekt forventet" msgstr "JScript objekt forventet"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax fejl i regulært udtryk" msgstr "Syntax fejl i regulært udtryk"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, der skal kodes indeholder ugyldige tegn" msgstr "URI, der skal kodes indeholder ugyldige tegn"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI, der skal kodes indeholder ugyldige tegn" msgstr "URI, der skal kodes indeholder ugyldige tegn"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array længde skal være et endeligt positivt heltal" msgstr "Array længde skal være et endeligt positivt heltal"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Array objekt forventet" msgstr "Array objekt forventet"

View File

@ -3473,98 +3473,103 @@ msgid "Subscript out of range"
msgstr "Index außerhalb des Bereichs" msgstr "Index außerhalb des Bereichs"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objekt erwartet"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automatisierungsserver konnte das Objekt nicht erstellen" msgstr "Automatisierungsserver konnte das Objekt nicht erstellen"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Das Objekt unterstützt diese Eigenschaft oder Methode nicht" msgstr "Das Objekt unterstützt diese Eigenschaft oder Methode nicht"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Das Objekt unterstützt diese Aktion nicht" msgstr "Das Objekt unterstützt diese Aktion nicht"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument nicht optional" msgstr "Argument nicht optional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntax Fehler" msgstr "Syntax Fehler"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' erwartet" msgstr "';' erwartet"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' erwartet" msgstr "'(' erwartet"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' erwartet" msgstr "')' erwartet"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "konstante Zeichenkette nicht terminiert" msgstr "konstante Zeichenkette nicht terminiert"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Bedingte Kompilierung ist ausgeschaltet" msgstr "Bedingte Kompilierung ist ausgeschaltet"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Nummer erwartet" msgstr "Nummer erwartet"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Funktion erwartet" msgstr "Funktion erwartet"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[Objekt]' ist kein Datums-Objekt" msgstr "'[Objekt]' ist kein Datums-Objekt"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objekt erwartet" msgstr "Objekt erwartet"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Unzulässige Zuweisung" msgstr "Unzulässige Zuweisung"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' nicht definiert" msgstr "'|' nicht definiert"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolisches Objekt erwartet" msgstr "Boolisches Objekt erwartet"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray Objekt erwartet" msgstr "VBArray Objekt erwartet"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript Objekt erwartet" msgstr "JScript Objekt erwartet"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax Fehler in regulärem Ausdruck" msgstr "Syntax Fehler in regulärem Ausdruck"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Zu entschlüsselnde URI ist ungültig" msgstr "Zu entschlüsselnde URI ist ungültig"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein" msgstr "Array-Größe muss eine endliche, positive Ganzzahl sein"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Array Objekt erwartet" msgstr "Array Objekt erwartet"

View File

@ -3403,98 +3403,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3355,98 +3355,102 @@ msgid "Subscript out of range"
msgstr "Subscript out of range" msgstr "Subscript out of range"
#: jscript.rc:28 #: jscript.rc:28
msgid "Object required"
msgstr "Object required"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "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" msgid "Object doesn't support this property or method"
msgstr "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" msgid "Object doesn't support this action"
msgstr "Object doesn't support this action" msgstr "Object doesn't support this action"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument not optional" msgstr "Argument not optional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntax error" msgstr "Syntax error"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Expected ';'" msgstr "Expected ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Expected '('" msgstr "Expected '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Expected ')'" msgstr "Expected ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Unterminated string constant" msgstr "Unterminated string constant"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Conditional compilation is turned off" msgstr "Conditional compilation is turned off"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Number expected" msgstr "Number expected"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Function expected" msgstr "Function expected"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' is not a date object" msgstr "'[object]' is not a date object"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Object expected" msgstr "Object expected"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Illegal assignment" msgstr "Illegal assignment"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' is undefined" msgstr "'|' is undefined"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean object expected" msgstr "Boolean object expected"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray object expected" msgstr "VBArray object expected"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript object expected" msgstr "JScript object expected"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "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" msgid "URI to be encoded contains invalid characters"
msgstr "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" msgid "URI to be decoded is incorrect"
msgstr "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" msgid "Array length must be a finite positive integer"
msgstr "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" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"

View File

@ -3470,98 +3470,102 @@ msgid "Subscript out of range"
msgstr "Subscript out of range" msgstr "Subscript out of range"
#: jscript.rc:28 #: jscript.rc:28
msgid "Object required"
msgstr "Object required"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "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" msgid "Object doesn't support this property or method"
msgstr "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" msgid "Object doesn't support this action"
msgstr "Object doesn't support this action" msgstr "Object doesn't support this action"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument not optional" msgstr "Argument not optional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntax error" msgstr "Syntax error"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Expected ';'" msgstr "Expected ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Expected '('" msgstr "Expected '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Expected ')'" msgstr "Expected ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Unterminated string constant" msgstr "Unterminated string constant"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Conditional compilation is turned off" msgstr "Conditional compilation is turned off"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Number expected" msgstr "Number expected"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Function expected" msgstr "Function expected"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' is not a date object" msgstr "'[object]' is not a date object"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Object expected" msgstr "Object expected"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Illegal assignment" msgstr "Illegal assignment"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' is undefined" msgstr "'|' is undefined"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean object expected" msgstr "Boolean object expected"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray object expected" msgstr "VBArray object expected"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript object expected" msgstr "JScript object expected"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "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" msgid "URI to be encoded contains invalid characters"
msgstr "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" msgid "URI to be decoded is incorrect"
msgstr "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" msgid "Array length must be a finite positive integer"
msgstr "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" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"

View File

@ -3490,98 +3490,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3524,101 +3524,106 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objeto esperado"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Servidor de automatización no puede crear el objeto" 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" msgid "Object doesn't support this property or method"
msgstr "El objeto no acepta esta propiedad o método" msgstr "El objeto no acepta esta propiedad o método"
#: jscript.rc:30 #: jscript.rc:31
#, fuzzy #, fuzzy
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "El objeto no acepta esta propiedad o método" msgstr "El objeto no acepta esta propiedad o método"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumento no opcional" msgstr "Argumento no opcional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Error de sintaxis" msgstr "Error de sintaxis"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Esperado ';'" msgstr "Esperado ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Esperado '('" msgstr "Esperado '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Esperado ')'" msgstr "Esperado ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Constante de cadena no terminada" msgstr "Constante de cadena no terminada"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Numero esperado" msgstr "Numero esperado"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Función esperada" msgstr "Función esperada"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[objeto]' no es un objeto fecha" msgstr "'[objeto]' no es un objeto fecha"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objeto esperado" msgstr "Objeto esperado"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Asignación ilegal" msgstr "Asignación ilegal"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' no está definido" msgstr "'|' no está definido"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Objeto Booleano esperado" msgstr "Objeto Booleano esperado"
#: jscript.rc:45 #: jscript.rc:46
#, fuzzy #, fuzzy
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Objeto Arreglo esperado" msgstr "Objeto Arreglo esperado"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Objeto JScript esperado" msgstr "Objeto JScript esperado"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Error de sintaxis en la expresion regular" msgstr "Error de sintaxis en la expresion regular"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a codificar contiene caracteres no válidos" msgstr "URI a codificar contiene caracteres no válidos"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a codificar contiene caracteres no válidos" msgstr "URI a codificar contiene caracteres no válidos"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longitud del arreglo debe ser un entero positivo finito" msgstr "La longitud del arreglo debe ser un entero positivo finito"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto Arreglo esperado" msgstr "Objeto Arreglo esperado"

View File

@ -3446,98 +3446,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3510,98 +3510,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3494,98 +3494,103 @@ msgid "Subscript out of range"
msgstr "Indice hors limites" msgstr "Indice hors limites"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objet attendu"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Le serveur d'automatisation ne peut créer l'objet" 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" msgid "Object doesn't support this property or method"
msgstr "Cet objet ne supporte pas cette propriété ou méthode" 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" msgid "Object doesn't support this action"
msgstr "Cet objet ne supporte pas cette action" msgstr "Cet objet ne supporte pas cette action"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument non optionnel" msgstr "Argument non optionnel"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Erreur de syntaxe" msgstr "Erreur de syntaxe"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "« ; » attendu" msgstr "« ; » attendu"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "« ( » attendu" msgstr "« ( » attendu"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "« ) » attendu" msgstr "« ) » attendu"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Constante chaîne de caractères non clôturée" msgstr "Constante chaîne de caractères non clôturée"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "La compilation conditionnelle est désactivée" msgstr "La compilation conditionnelle est désactivée"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Nombre attendu" msgstr "Nombre attendu"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Fonction attendue" msgstr "Fonction attendue"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "« [objet] » n'est pas un objet de type date" msgstr "« [objet] » n'est pas un objet de type date"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objet attendu" msgstr "Objet attendu"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Affectation illégale" msgstr "Affectation illégale"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "« | » n'est pas défini" msgstr "« | » n'est pas défini"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Objet booléen attendu" msgstr "Objet booléen attendu"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Objet VBArray attendu" msgstr "Objet VBArray attendu"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Objet JScript attendu" msgstr "Objet JScript attendu"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erreur de syntaxe dans l'expression rationnelle" msgstr "Erreur de syntaxe dans l'expression rationnelle"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI à coder contient des caractères invalides" msgstr "L'URI à coder contient des caractères invalides"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI à décoder est incorrecte" msgstr "L'URI à décoder est incorrecte"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longueur d'un tableau doit être un entier positif" msgstr "La longueur d'un tableau doit être un entier positif"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Objet tableau attendu" msgstr "Objet tableau attendu"

View File

@ -3444,98 +3444,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Argument not optional"
msgstr ""
#: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "שגיאת תחביר" msgstr "שגיאת תחביר"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "" msgstr ""
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' אינו מוגדר" msgstr "'|' אינו מוגדר"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3387,98 +3387,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3585,101 +3585,106 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objektumot vártam"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Az automatizáló (automation) kiszolgáló nem tud objektumot létrehozni" 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" msgid "Object doesn't support this property or method"
msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust" msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust"
#: jscript.rc:30 #: jscript.rc:31
#, fuzzy #, fuzzy
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust" msgstr "Az objektum nem támogatja ezt a tulajdonságot vagy metódust"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Az argumentum nem opcionális" msgstr "Az argumentum nem opcionális"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Szinttaktikai hiba" msgstr "Szinttaktikai hiba"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Hiányzó ';'" msgstr "Hiányzó ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Hiányzó '('" msgstr "Hiányzó '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Hiányzó ')'" msgstr "Hiányzó ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Lezáratlan sztring konstans" msgstr "Lezáratlan sztring konstans"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Számot vártam" msgstr "Számot vártam"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Függvényt vártam" msgstr "Függvényt vártam"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'Az [object]' nem egy date (dátum) objektum" msgstr "'Az [object]' nem egy date (dátum) objektum"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objektumot vártam" msgstr "Objektumot vártam"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Nem megengedett összerendelés" msgstr "Nem megengedett összerendelés"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "A '|' nem definiált" msgstr "A '|' nem definiált"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean (igaz-hamis) objektumot vártam" msgstr "Boolean (igaz-hamis) objektumot vártam"
#: jscript.rc:45 #: jscript.rc:46
#, fuzzy #, fuzzy
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Tömb objektumot vártam" msgstr "Tömb objektumot vártam"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript objektumot vártam" msgstr "JScript objektumot vártam"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Szinttaktikai hiba a reguláris kifejezésben" msgstr "Szinttaktikai hiba a reguláris kifejezésben"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" 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" 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" msgid "Array object expected"
msgstr "Tömb objektumot vártam" msgstr "Tömb objektumot vártam"

View File

@ -3485,98 +3485,103 @@ msgid "Subscript out of range"
msgstr "Sottoscript fuori portata" msgstr "Sottoscript fuori portata"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Richiesto un oggetto"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Il server di automazione non può creare l'oggetto" 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" msgid "Object doesn't support this property or method"
msgstr "L'oggetto non supporta questa proprietà o metodo" msgstr "L'oggetto non supporta questa proprietà o metodo"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "L'oggetto non supporta questa azione" msgstr "L'oggetto non supporta questa azione"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argomento non opzionale" msgstr "Argomento non opzionale"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Errore di sintassi" msgstr "Errore di sintassi"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Richiesto ';'" msgstr "Richiesto ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Richiesto '('" msgstr "Richiesto '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Richiesto ')'" msgstr "Richiesto ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Costante stringa non terminata" msgstr "Costante stringa non terminata"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Compilazione condizionale disattivata" msgstr "Compilazione condizionale disattivata"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Richiesto un numero" msgstr "Richiesto un numero"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Richiesta una funzione" msgstr "Richiesta una funzione"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[oggetto]' non è un oggetto data" msgstr "'[oggetto]' non è un oggetto data"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Richiesto un oggetto" msgstr "Richiesto un oggetto"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Assegnamento illegale" msgstr "Assegnamento illegale"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' non è definito" msgstr "'|' non è definito"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Richiesto un oggetto Booleano" msgstr "Richiesto un oggetto Booleano"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Richiesto un oggetto VBArray" msgstr "Richiesto un oggetto VBArray"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Richiesto un oggetto JScript" msgstr "Richiesto un oggetto JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Errore di sintassi nell'espressione regolare" msgstr "Errore di sintassi nell'espressione regolare"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI da codificare contiene caratteri non validi" msgstr "L'URI da codificare contiene caratteri non validi"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI da decodificare non è corretto" msgstr "L'URI da decodificare non è corretto"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La lunghezza dell'array deve essere un intero finito e positivo" msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Richiesto un oggetto array" msgstr "Richiesto un oggetto array"

View File

@ -3458,98 +3458,103 @@ msgid "Subscript out of range"
msgstr "添字が範囲外です" msgstr "添字が範囲外です"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "オブジェクトを期待していました"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "オートメーション サーバはオブジェクトを生成できません" msgstr "オートメーション サーバはオブジェクトを生成できません"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "オブジェクトはこのプロパティまたはメソッドをサポートしていません" msgstr "オブジェクトはこのプロパティまたはメソッドをサポートしていません"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "オブジェクトはこの操作をサポートしていません" msgstr "オブジェクトはこの操作をサポートしていません"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "引数は省略できません" msgstr "引数は省略できません"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "構文エラー" msgstr "構文エラー"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';'を期待していました" msgstr "';'を期待していました"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'('を期待していました" msgstr "'('を期待していました"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')'を期待していました" msgstr "')'を期待していました"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "文字列定数が終端していません" msgstr "文字列定数が終端していません"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "条件コンパイルはオフにされています" msgstr "条件コンパイルはオフにされています"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "数値を期待していました" msgstr "数値を期待していました"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "関数を期待していました" msgstr "関数を期待していました"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' は日付オブジェクトではありません" msgstr "'[object]' は日付オブジェクトではありません"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "オブジェクトを期待していました" msgstr "オブジェクトを期待していました"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "不正な割り当て" msgstr "不正な割り当て"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|'は定義されていません" msgstr "'|'は定義されていません"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean オブジェクトを期待していました" msgstr "Boolean オブジェクトを期待していました"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray オブジェクトを期待していました" msgstr "VBArray オブジェクトを期待していました"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript オブジェクトを期待していました" msgstr "JScript オブジェクトを期待していました"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "正規表現に構文誤りがあります" msgstr "正規表現に構文誤りがあります"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "エンコードされるURIに無効な文字が含まれています" msgstr "エンコードされるURIに無効な文字が含まれています"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "デコードされるURIが正しくありません" msgstr "デコードされるURIが正しくありません"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "配列の長さは有限の正整数でなければなりません" msgstr "配列の長さは有限の正整数でなければなりません"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "配列オブジェクトを期待していました" msgstr "配列オブジェクトを期待していました"

View File

@ -3459,98 +3459,103 @@ msgid "Subscript out of range"
msgstr "첨자가 범위를 벗어남" msgstr "첨자가 범위를 벗어남"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "객체가 필요합니다"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "자동화 서버가 객체를 만들 수 없음" msgstr "자동화 서버가 객체를 만들 수 없음"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "객체는 이 속성이나 메소드를 지원하지 않음" msgstr "객체는 이 속성이나 메소드를 지원하지 않음"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "객체는 이 행동을 지원하지 않음" msgstr "객체는 이 행동을 지원하지 않음"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "인수는 옵션이 아닙니다" msgstr "인수는 옵션이 아닙니다"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "문법 오류" msgstr "문법 오류"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' 가 필요합니다" msgstr "';' 가 필요합니다"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' 가 필요합니다" msgstr "'(' 가 필요합니다"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' 가 필요합니다" msgstr "')' 가 필요합니다"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "띁나지 않은 문자열 상수" msgstr "띁나지 않은 문자열 상수"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "조건부 컴파일이 설정되어 있음" msgstr "조건부 컴파일이 설정되어 있음"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "숫자가 필요합니다" msgstr "숫자가 필요합니다"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "함수가 필요합니다" msgstr "함수가 필요합니다"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[객체]' 는 날짜 객체가 아님" msgstr "'[객체]' 는 날짜 객체가 아님"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "객체가 필요합니다" msgstr "객체가 필요합니다"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "잘못된 할당" msgstr "잘못된 할당"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' 는 정의되지 않았음" msgstr "'|' 는 정의되지 않았음"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "볼린 객제가 필요함" msgstr "볼린 객제가 필요함"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray 갹체가 필요함" msgstr "VBArray 갹체가 필요함"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript 객체가 필요함" msgstr "JScript 객체가 필요함"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "정규 표현식에 문법오류가 있음" msgstr "정규 표현식에 문법오류가 있음"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음" msgstr "URI 는 올바르지 않은 문자를 포함해서 인코딩되었음"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "해독하는 URI가 올바르지 않음" msgstr "해독하는 URI가 올바르지 않음"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함" msgstr "배열 길이는 반드시 한정된 양의 정수이어야 함"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "배열 객체가 필요함" msgstr "배열 객체가 필요함"

View File

@ -3471,98 +3471,103 @@ msgid "Subscript out of range"
msgstr "Indeksas nepatenka į rėžius" msgstr "Indeksas nepatenka į rėžius"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Tikėtasi objekto"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automatizacijos serveriui nepavyko sukurti objekto" msgstr "Automatizacijos serveriui nepavyko sukurti objekto"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Objektas nepalaiko šios savybės ar metodo" msgstr "Objektas nepalaiko šios savybės ar metodo"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Objektas nepalaiko šio veiksmo" msgstr "Objektas nepalaiko šio veiksmo"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumentas nėra neprivalomas" msgstr "Argumentas nėra neprivalomas"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Sintaksės klaida" msgstr "Sintaksės klaida"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Tikėtasi „;“" msgstr "Tikėtasi „;“"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Tikėtasi „(“" msgstr "Tikėtasi „(“"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Tikėtasi „)“" msgstr "Tikėtasi „)“"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Nebaigta eilutės konstanta" msgstr "Nebaigta eilutės konstanta"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Sąlyginis kompiliavimas yra išjungtas" msgstr "Sąlyginis kompiliavimas yra išjungtas"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Tikėtasi skaičiaus" msgstr "Tikėtasi skaičiaus"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Tikėtasi funkcijos" msgstr "Tikėtasi funkcijos"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "„[objektas]“ nėra datos objektas" msgstr "„[objektas]“ nėra datos objektas"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Tikėtasi objekto" msgstr "Tikėtasi objekto"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Neleistinas priskyrimas" msgstr "Neleistinas priskyrimas"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "„|“ yra neapibrėžtas" msgstr "„|“ yra neapibrėžtas"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Tikėtasi loginio objekto" msgstr "Tikėtasi loginio objekto"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Tikėtasi VBArray objekto" msgstr "Tikėtasi VBArray objekto"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Tikėtasi JScript objekto" msgstr "Tikėtasi JScript objekto"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Sintaksės klaida reguliariajame reiškinyje" msgstr "Sintaksės klaida reguliariajame reiškinyje"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Koduotiname URI yra netinkamų simbolių" msgstr "Koduotiname URI yra netinkamų simbolių"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Dekoduojamas URI yra neteisingas" msgstr "Dekoduojamas URI yra neteisingas"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Tikėtasi masyvo objekto" msgstr "Tikėtasi masyvo objekto"

View File

@ -3387,98 +3387,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3611,101 +3611,106 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Forventet objekt"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automatiseringstjeneren klarte ikke opprette objekt" msgstr "Automatiseringstjeneren klarte ikke opprette objekt"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Objektet støtter ikke denne egenskapen eller metoden" msgstr "Objektet støtter ikke denne egenskapen eller metoden"
#: jscript.rc:30 #: jscript.rc:31
#, fuzzy #, fuzzy
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Objektet støtter ikke denne egenskapen eller metoden" msgstr "Objektet støtter ikke denne egenskapen eller metoden"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumentet er ikke valgfritt" msgstr "Argumentet er ikke valgfritt"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntaksfeil" msgstr "Syntaksfeil"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Forventet ';'" msgstr "Forventet ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Forventet '('" msgstr "Forventet '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Forventet ')'" msgstr "Forventet ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Uavsluttet strengkonstant" msgstr "Uavsluttet strengkonstant"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Forventet nummer" msgstr "Forventet nummer"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Forventet funksjon" msgstr "Forventet funksjon"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' er ikke et dataobjekt" msgstr "'[object]' er ikke et dataobjekt"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Forventet objekt" msgstr "Forventet objekt"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Ugyldig tilordning" msgstr "Ugyldig tilordning"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' er udefinert" msgstr "'|' er udefinert"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Forventet boolsk verdi" msgstr "Forventet boolsk verdi"
#: jscript.rc:45 #: jscript.rc:46
#, fuzzy #, fuzzy
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Forventet rekke-objekt" msgstr "Forventet rekke-objekt"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Forventet JScript-objekt" msgstr "Forventet JScript-objekt"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaksfeil i regulært uttrykk" msgstr "Syntaksfeil i regulært uttrykk"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI'en som skulle kodes inneholder ugyldige tegn" msgstr "URI'en som skulle kodes inneholder ugyldige tegn"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI'en som skulle kodes inneholder ugyldige tegn" msgstr "URI'en som skulle kodes inneholder ugyldige tegn"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Rekkens lengde må være et endelig, positivt tall" msgstr "Rekkens lengde må være et endelig, positivt tall"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Forventet rekke-objekt" msgstr "Forventet rekke-objekt"

View File

@ -3481,98 +3481,103 @@ msgid "Subscript out of range"
msgstr "Index buiten bereik" msgstr "Index buiten bereik"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Object verwacht"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automatiseringsserver kan het object niet creëren" msgstr "Automatiseringsserver kan het object niet creëren"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Dit object ondersteunt deze eigenschap of methode niet" msgstr "Dit object ondersteunt deze eigenschap of methode niet"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Dit object ondersteunt deze actie niet" msgstr "Dit object ondersteunt deze actie niet"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument is niet optioneel" msgstr "Argument is niet optioneel"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntax fout" msgstr "Syntax fout"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' verwacht" msgstr "';' verwacht"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' verwacht" msgstr "'(' verwacht"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' verwacht" msgstr "')' verwacht"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Onafgesloten tekenreeksconstante" msgstr "Onafgesloten tekenreeksconstante"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Conditionele compilatie is uitgeschakeld" msgstr "Conditionele compilatie is uitgeschakeld"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Getal verwacht" msgstr "Getal verwacht"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Functie verwacht" msgstr "Functie verwacht"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' is geen datum object" msgstr "'[object]' is geen datum object"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Object verwacht" msgstr "Object verwacht"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Ongeldige toekenning" msgstr "Ongeldige toekenning"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' is ongedefinieerd" msgstr "'|' is ongedefinieerd"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolean object verwacht" msgstr "Boolean object verwacht"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray object verwacht" msgstr "VBArray object verwacht"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript object verwacht" msgstr "JScript object verwacht"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax fout in reguliere expressie" msgstr "Syntax fout in reguliere expressie"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "De te coderen URI bevat ongeldige tekens" msgstr "De te coderen URI bevat ongeldige tekens"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "De te decoderen URI is niet correct" msgstr "De te decoderen URI is niet correct"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array lengte moet een eindig, positief geheel getal zijn" msgstr "Array lengte moet een eindig, positief geheel getal zijn"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object verwacht" msgstr "Array object verwacht"

View File

@ -3387,98 +3387,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3387,98 +3387,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3490,98 +3490,103 @@ msgid "Subscript out of range"
msgstr "Indeks dolny poza zakresem" msgstr "Indeks dolny poza zakresem"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Oczekiwany obiekt"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Serwer automatyzacji nie może stworzyć obiektu" msgstr "Serwer automatyzacji nie może stworzyć obiektu"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Obiekt nie wspiera tej właściwości lub metody" msgstr "Obiekt nie wspiera tej właściwości lub metody"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Obiekt nie wspiera tej akcji" msgstr "Obiekt nie wspiera tej akcji"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument nieopcjonalny" msgstr "Argument nieopcjonalny"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Błąd składni" msgstr "Błąd składni"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Oczekiwane ';'" msgstr "Oczekiwane ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Oczekiwane '('" msgstr "Oczekiwane '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Oczekiwane ')'" msgstr "Oczekiwane ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Niezakończona stała znakowa" msgstr "Niezakończona stała znakowa"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Warunkowa kompilacja jest wyłączona" msgstr "Warunkowa kompilacja jest wyłączona"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Oczekiwana liczba" msgstr "Oczekiwana liczba"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Oczekiwana funkcja" msgstr "Oczekiwana funkcja"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[obiekt]' nie jest obiektem daty" msgstr "'[obiekt]' nie jest obiektem daty"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Oczekiwany obiekt" msgstr "Oczekiwany obiekt"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Niepoprawne przypisanie" msgstr "Niepoprawne przypisanie"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' jest niezdefiniowany" msgstr "'|' jest niezdefiniowany"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Oczekiwany obiekt boolean" msgstr "Oczekiwany obiekt boolean"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Oczekiwany obiekt VBArray" msgstr "Oczekiwany obiekt VBArray"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Oczekiwany obiekt JScript" msgstr "Oczekiwany obiekt JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Błąd składni w regularnym wyrażeniu" msgstr "Błąd składni w regularnym wyrażeniu"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Kodowane URI zawiera niewłaściwe znaki" msgstr "Kodowane URI zawiera niewłaściwe znaki"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI do dekodowania jest niepoprawny" msgstr "URI do dekodowania jest niepoprawny"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Oczekiwany obiekt tablicowy" msgstr "Oczekiwany obiekt tablicowy"

View File

@ -3600,99 +3600,104 @@ msgid "Subscript out of range"
msgstr "Subscript fora de alcance" msgstr "Subscript fora de alcance"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objeto esperado"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "O servidor de automação não conseguiu criar o objeto" 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" msgid "Object doesn't support this property or method"
msgstr "O objeto não suporta esta propriedade ou método" msgstr "O objeto não suporta esta propriedade ou método"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "O objeto não suporta esta ação" msgstr "O objeto não suporta esta ação"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumento não opcional" msgstr "Argumento não opcional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Erro de sintaxe" msgstr "Erro de sintaxe"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' esperado" msgstr "';' esperado"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' esperado" msgstr "'(' esperado"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' esperado" msgstr "')' esperado"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Constante de string não terminada" msgstr "Constante de string não terminada"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Número esperado" msgstr "Número esperado"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Função esperada" msgstr "Função esperada"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' não é um objeto de data" msgstr "'[object]' não é um objeto de data"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objeto esperado" msgstr "Objeto esperado"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Atribuição ilegal" msgstr "Atribuição ilegal"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' é indefinido" msgstr "'|' é indefinido"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Objeto boleano esperado" msgstr "Objeto boleano esperado"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Objeto VBArray esperado" msgstr "Objeto VBArray esperado"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Objeto JScript esperado" msgstr "Objeto JScript esperado"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a ser codificado contém caracteres inválidos" 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" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto Array esperado" msgstr "Objeto Array esperado"

View File

@ -3655,99 +3655,104 @@ msgid "Subscript out of range"
msgstr "Subscript fora de alcance" msgstr "Subscript fora de alcance"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objecto esperado"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "O servidor de automação não conseguiu criar o objecto" 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" msgid "Object doesn't support this property or method"
msgstr "O objecto não suporta esta propriedade ou método" msgstr "O objecto não suporta esta propriedade ou método"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "O objecto não suporta esta acção" msgstr "O objecto não suporta esta acção"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumento não opcional" msgstr "Argumento não opcional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Erro de sintaxe" msgstr "Erro de sintaxe"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' esperado" msgstr "';' esperado"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' esperado" msgstr "'(' esperado"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' esperado" msgstr "')' esperado"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Constante de string não terminada" msgstr "Constante de string não terminada"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Número esperado" msgstr "Número esperado"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Função esperada" msgstr "Função esperada"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' não é um objecto de data" msgstr "'[object]' não é um objecto de data"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objecto esperado" msgstr "Objecto esperado"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Atribuição ilegal" msgstr "Atribuição ilegal"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' é indefinido" msgstr "'|' é indefinido"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Objecto boleano esperado" msgstr "Objecto boleano esperado"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Objecto VBArray esperado" msgstr "Objecto VBArray esperado"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Objecto JScript esperado" msgstr "Objecto JScript esperado"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a ser codificado contém caracteres inválidos" 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" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vector tem de ser um inteiro finito positivo" msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Objecto Array esperado" msgstr "Objecto Array esperado"

View File

@ -3429,98 +3429,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3658,101 +3658,106 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Se așteaptă un obiect"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Serverul de automatizare nu poate crea obiectul" msgstr "Serverul de automatizare nu poate crea obiectul"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Obiectul nu suportă această proprietate sau metodă" msgstr "Obiectul nu suportă această proprietate sau metodă"
#: jscript.rc:30 #: jscript.rc:31
#, fuzzy #, fuzzy
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Obiectul nu suportă această proprietate sau metodă" msgstr "Obiectul nu suportă această proprietate sau metodă"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumentul nu este opțional" msgstr "Argumentul nu este opțional"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Eroare de sintaxă" msgstr "Eroare de sintaxă"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Se așteaptă „;”" msgstr "Se așteaptă „;”"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Se așteaptă „(”" msgstr "Se așteaptă „(”"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Se așteaptă „)”" msgstr "Se așteaptă „)”"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Șir constant neterminat" msgstr "Șir constant neterminat"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Se așteaptă un număr" msgstr "Se așteaptă un număr"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Se așteaptă o funcție" msgstr "Se așteaptă o funcție"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "„[obiect]” nu este un obiect de tip dată" msgstr "„[obiect]” nu este un obiect de tip dată"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Se așteaptă un obiect" msgstr "Se așteaptă un obiect"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Atribuire ilegală" msgstr "Atribuire ilegală"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "„|” nu este definit" msgstr "„|” nu este definit"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Se așteaptă un obiect boolean" msgstr "Se așteaptă un obiect boolean"
#: jscript.rc:45 #: jscript.rc:46
#, fuzzy #, fuzzy
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Se așteaptă un obiect matrice" msgstr "Se așteaptă un obiect matrice"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Se așteaptă un obiect JScript" msgstr "Se așteaptă un obiect JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Eroare de sintaxă în expresia regulată" msgstr "Eroare de sintaxă în expresia regulată"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI care trebuie codificat conține caractere nevalide" msgstr "URI care trebuie codificat conține caractere nevalide"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI care trebuie codificat conține caractere nevalide" msgstr "URI care trebuie codificat conține caractere nevalide"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Se așteaptă un obiect matrice" msgstr "Se așteaptă un obiect matrice"

View File

@ -3478,98 +3478,103 @@ msgid "Subscript out of range"
msgstr "Индекс вне диапазона" msgstr "Индекс вне диапазона"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Ожидается объект"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Сервер автоматизации не может создать объект" msgstr "Сервер автоматизации не может создать объект"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Объект не поддерживает это свойство или метод" msgstr "Объект не поддерживает это свойство или метод"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Объект не поддерживает это действие" msgstr "Объект не поддерживает это действие"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Отсутствует обязательный аргумент" msgstr "Отсутствует обязательный аргумент"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Синтаксическая ошибка" msgstr "Синтаксическая ошибка"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Ожидается ';'" msgstr "Ожидается ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Ожидается '('" msgstr "Ожидается '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Ожидается ')'" msgstr "Ожидается ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Незавершённая строковая константа" msgstr "Незавершённая строковая константа"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Условная компиляция отключена" msgstr "Условная компиляция отключена"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Ожидается число" msgstr "Ожидается число"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Ожидается функция" msgstr "Ожидается функция"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' не объект типа 'date'" msgstr "'[object]' не объект типа 'date'"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Ожидается объект" msgstr "Ожидается объект"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Неверное присваивание" msgstr "Неверное присваивание"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' не определён" msgstr "'|' не определён"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Ожидается объект типа 'bool'" msgstr "Ожидается объект типа 'bool'"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Ожидается объект типа 'VBArray'" msgstr "Ожидается объект типа 'VBArray'"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Ожидается объект типа 'JScript'" msgstr "Ожидается объект типа 'JScript'"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксическая ошибка в регулярном выражении" msgstr "Синтаксическая ошибка в регулярном выражении"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "В кодируемом URI обнаружен неверный символ" msgstr "В кодируемом URI обнаружен неверный символ"
#: jscript.rc:48 #: jscript.rc:49
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Декодируемый URI неверен" msgstr "Декодируемый URI неверен"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Длиной массива должно быть конечное положительное число" msgstr "Длиной массива должно быть конечное положительное число"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Ожидается объект типа 'Array'" msgstr "Ожидается объект типа 'Array'"

View File

@ -3416,98 +3416,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3522,99 +3522,104 @@ msgid "Subscript out of range"
msgstr "Podskript je izven obsega" msgstr "Podskript je izven obsega"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Pričakovan je bil predmet"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Strežnik izvajanja ne more ustvariti predmeta" msgstr "Strežnik izvajanja ne more ustvariti predmeta"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Predmet ne podpira te lastnosti ali načina" msgstr "Predmet ne podpira te lastnosti ali načina"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Predmet ne podpira tega dejanja" msgstr "Predmet ne podpira tega dejanja"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument je obvezen" msgstr "Argument je obvezen"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Skladenjska napaka" msgstr "Skladenjska napaka"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Pričakovan je bil ';'" msgstr "Pričakovan je bil ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Pričakovan je bil '('" msgstr "Pričakovan je bil '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Pričakovan je bil ')'" msgstr "Pričakovan je bil ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Nedoločena konstanta niza" msgstr "Nedoločena konstanta niza"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Pogojno kodo prevajanje je izklopljeno" msgstr "Pogojno kodo prevajanje je izklopljeno"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Pričakovano je bilo število" msgstr "Pričakovano je bilo število"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Pričakovana je bila funkcija" msgstr "Pričakovana je bila funkcija"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' ni predmet datuma" msgstr "'[object]' ni predmet datuma"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Pričakovan je bil predmet" msgstr "Pričakovan je bil predmet"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Neveljavna dodelitev" msgstr "Neveljavna dodelitev"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' ni določen" msgstr "'|' ni določen"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Pričakovan je bil Boolov predmet" msgstr "Pričakovan je bil Boolov predmet"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Pričakovan je bil predmet VBArray" msgstr "Pričakovan je bil predmet VBArray"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Pričakovan je bil predmet JScript" msgstr "Pričakovan je bil predmet JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Napaka skladnje v logičnem izrazu" msgstr "Napaka skladnje v logičnem izrazu"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje vsebuje neveljavne znake" msgstr "URI za kodiranje vsebuje neveljavne znake"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI za kodiranje vsebuje neveljavne znake" msgstr "URI za kodiranje vsebuje neveljavne znake"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Dolžina polja mora bit pozitivno celo število" msgstr "Dolžina polja mora bit pozitivno celo število"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Pričakovan je bil predmet polja" msgstr "Pričakovan je bil predmet polja"

View File

@ -3481,99 +3481,104 @@ msgid "Subscript out of range"
msgstr "Потпис је ван домета" msgstr "Потпис је ван домета"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Очекивани објекат"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Аутоматизовани сервер не може да створи објекат" msgstr "Аутоматизовани сервер не може да створи објекат"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Објекат не подржава ово својство или методу" msgstr "Објекат не подржава ово својство или методу"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Објекат не подржава ову радњу" msgstr "Објекат не подржава ову радњу"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Аргумент је обавезан" msgstr "Аргумент је обавезан"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Грешка у синтакси" msgstr "Грешка у синтакси"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Очекивано ';'" msgstr "Очекивано ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Очекивано '('" msgstr "Очекивано '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Очекивано ')'" msgstr "Очекивано ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Незавршена константа ниски" msgstr "Незавршена константа ниски"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Очекивани број" msgstr "Очекивани број"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Очекивана функција" msgstr "Очекивана функција"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "„[object]“ није временски објекат" msgstr "„[object]“ није временски објекат"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Очекивани објекат" msgstr "Очекивани објекат"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Недозвољен задатак" msgstr "Недозвољен задатак"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "„|“ није одређено" msgstr "„|“ није одређено"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Очекивани објекат истинитосне вредности" msgstr "Очекивани објекат истинитосне вредности"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray објекат се очекује" msgstr "VBArray објекат се очекује"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Очекивани објекат JScript врсте" msgstr "Очекивани објекат JScript врсте"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксна грешка у регуларном изразу" msgstr "Синтаксна грешка у регуларном изразу"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Низ дужине мора бити коначан позитиван цео број" msgstr "Низ дужине мора бити коначан позитиван цео број"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Очекивани низ објекта" msgstr "Очекивани низ објекта"

View File

@ -3565,99 +3565,104 @@ msgid "Subscript out of range"
msgstr "Potpis je van dometa" msgstr "Potpis je van dometa"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Očekivani objekat"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automatizovani server ne može da stvori objekat" msgstr "Automatizovani server ne može da stvori objekat"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Objekat ne podržava ovo svojstvo ili metodu" msgstr "Objekat ne podržava ovo svojstvo ili metodu"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Objekat ne podržava ovu radnju" msgstr "Objekat ne podržava ovu radnju"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argument je obavezan" msgstr "Argument je obavezan"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Greška u sintaksi" msgstr "Greška u sintaksi"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Očekivano ';'" msgstr "Očekivano ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Očekivano '('" msgstr "Očekivano '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Očekivano ')'" msgstr "Očekivano ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Nezavršena konstanta niski" msgstr "Nezavršena konstanta niski"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "" msgstr ""
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Očekivani broj" msgstr "Očekivani broj"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Očekivana funkcija" msgstr "Očekivana funkcija"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "„[object]“ nije vremenski objekat" msgstr "„[object]“ nije vremenski objekat"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Očekivani objekat" msgstr "Očekivani objekat"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Nedozvoljen zadatak" msgstr "Nedozvoljen zadatak"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "„|“ nije određeno" msgstr "„|“ nije određeno"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Očekivani objekat istinitosne vrednosti" msgstr "Očekivani objekat istinitosne vrednosti"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray objekat se očekuje" msgstr "VBArray objekat se očekuje"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Očekivani objekat JScript vrste" msgstr "Očekivani objekat JScript vrste"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu" msgstr "Sintaksna greška u regularnom izrazu"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Niz dužine mora biti konačan pozitivan ceo broj" msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekivani niz objekta" msgstr "Očekivani niz objekta"

View File

@ -3482,99 +3482,104 @@ msgid "Subscript out of range"
msgstr "Index utanför giltigt intervall" msgstr "Index utanför giltigt intervall"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Objekt förväntades"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Automationsservern kunde inte skapa objekt" msgstr "Automationsservern kunde inte skapa objekt"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Objektet stöder inte denna egenskap eller metod" msgstr "Objektet stöder inte denna egenskap eller metod"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Objektet stöder inte denna handling" msgstr "Objektet stöder inte denna handling"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Argumentet är inte valfritt" msgstr "Argumentet är inte valfritt"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Syntaxfel" msgstr "Syntaxfel"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "';' förväntades" msgstr "';' förväntades"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "'(' förväntades" msgstr "'(' förväntades"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "')' förväntades" msgstr "')' förväntades"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Oterminerad strängkonstant" msgstr "Oterminerad strängkonstant"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Villkorlig kompilering är avslagen" msgstr "Villkorlig kompilering är avslagen"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Nummer förväntades" msgstr "Nummer förväntades"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Funktion förväntades" msgstr "Funktion förväntades"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' är inte ett datumobjekt" msgstr "'[object]' är inte ett datumobjekt"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Objekt förväntades" msgstr "Objekt förväntades"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Ogiltig tilldelning" msgstr "Ogiltig tilldelning"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' är odefinierat" msgstr "'|' är odefinierat"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Boolskt objekt förväntades" msgstr "Boolskt objekt förväntades"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "VBArray-objekt förväntades" msgstr "VBArray-objekt förväntades"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "JScript-objekt förväntades" msgstr "JScript-objekt förväntades"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaxfel i reguljärt uttryck" msgstr "Syntaxfel i reguljärt uttryck"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Den URI som ska kodas innehåller ogiltiga tecken" msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Den URI som ska kodas innehåller ogiltiga tecken" 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" msgid "Array length must be a finite positive integer"
msgstr "Array-längd måste vara ett positivt ändligt heltal" msgstr "Array-längd måste vara ett positivt ändligt heltal"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Array-objekt förväntades" msgstr "Array-objekt förväntades"

View File

@ -3387,98 +3387,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3423,98 +3423,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3504,98 +3504,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3474,99 +3474,104 @@ msgid "Subscript out of range"
msgstr "Індекс поза діапазоном" msgstr "Індекс поза діапазоном"
#: jscript.rc:28 #: jscript.rc:28
#, fuzzy
msgid "Object required"
msgstr "Очікується об'єкт"
#: jscript.rc:29
msgid "Automation server can't create object" msgid "Automation server can't create object"
msgstr "Сервер автоматизації не може створити об'єкт" msgstr "Сервер автоматизації не може створити об'єкт"
#: jscript.rc:29 #: jscript.rc:30
msgid "Object doesn't support this property or method" msgid "Object doesn't support this property or method"
msgstr "Об'єкт не підтримує цю властивість чи метод" msgstr "Об'єкт не підтримує цю властивість чи метод"
#: jscript.rc:30 #: jscript.rc:31
msgid "Object doesn't support this action" msgid "Object doesn't support this action"
msgstr "Об'єкт не підтримує цю дію" msgstr "Об'єкт не підтримує цю дію"
#: jscript.rc:31 #: jscript.rc:32
msgid "Argument not optional" msgid "Argument not optional"
msgstr "Відсутній обов'язковий аргумент" msgstr "Відсутній обов'язковий аргумент"
#: jscript.rc:32 #: jscript.rc:33
msgid "Syntax error" msgid "Syntax error"
msgstr "Синтаксична помилка" msgstr "Синтаксична помилка"
#: jscript.rc:33 #: jscript.rc:34
msgid "Expected ';'" msgid "Expected ';'"
msgstr "Очікується ';'" msgstr "Очікується ';'"
#: jscript.rc:34 #: jscript.rc:35
msgid "Expected '('" msgid "Expected '('"
msgstr "Очікується '('" msgstr "Очікується '('"
#: jscript.rc:35 #: jscript.rc:36
msgid "Expected ')'" msgid "Expected ')'"
msgstr "Очікується ')'" msgstr "Очікується ')'"
#: jscript.rc:36 #: jscript.rc:37
msgid "Unterminated string constant" msgid "Unterminated string constant"
msgstr "Незавершена рядкова константа" msgstr "Незавершена рядкова константа"
#: jscript.rc:37 #: jscript.rc:38
msgid "Conditional compilation is turned off" msgid "Conditional compilation is turned off"
msgstr "Умовна компіляція вимкнена" msgstr "Умовна компіляція вимкнена"
#: jscript.rc:40 #: jscript.rc:41
msgid "Number expected" msgid "Number expected"
msgstr "Очікується число" msgstr "Очікується число"
#: jscript.rc:38 #: jscript.rc:39
msgid "Function expected" msgid "Function expected"
msgstr "Очікується функція" msgstr "Очікується функція"
#: jscript.rc:39 #: jscript.rc:40
msgid "'[object]' is not a date object" msgid "'[object]' is not a date object"
msgstr "'[object]' не об'єкт типу date" msgstr "'[object]' не об'єкт типу date"
#: jscript.rc:41 #: jscript.rc:42
msgid "Object expected" msgid "Object expected"
msgstr "Очікується об'єкт" msgstr "Очікується об'єкт"
#: jscript.rc:42 #: jscript.rc:43
msgid "Illegal assignment" msgid "Illegal assignment"
msgstr "Невірне присвоєння" msgstr "Невірне присвоєння"
#: jscript.rc:43 #: jscript.rc:44
msgid "'|' is undefined" msgid "'|' is undefined"
msgstr "'|' не визначено" msgstr "'|' не визначено"
#: jscript.rc:44 #: jscript.rc:45
msgid "Boolean object expected" msgid "Boolean object expected"
msgstr "Очікується об'єкт Boolean" msgstr "Очікується об'єкт Boolean"
#: jscript.rc:45 #: jscript.rc:46
msgid "VBArray object expected" msgid "VBArray object expected"
msgstr "Очікується об'єкт VBArray" msgstr "Очікується об'єкт VBArray"
#: jscript.rc:46 #: jscript.rc:47
msgid "JScript object expected" msgid "JScript object expected"
msgstr "Очікується об'єкт JScript" msgstr "Очікується об'єкт JScript"
#: jscript.rc:47 #: jscript.rc:48
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксична помилка в регулярному виразі" msgstr "Синтаксична помилка в регулярному виразі"
#: jscript.rc:49 #: jscript.rc:50
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, що буде закодований, містить неприпустимі символи" msgstr "URI, що буде закодований, містить неприпустимі символи"
#: jscript.rc:48 #: jscript.rc:49
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI, що буде закодований, містить неприпустимі символи" msgstr "URI, що буде закодований, містить неприпустимі символи"
#: jscript.rc:50 #: jscript.rc:51
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
#: jscript.rc:51 #: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "Очікується об'єкт Array" msgstr "Очікується об'єкт Array"

View File

@ -3436,98 +3436,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3350,98 +3350,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3488,98 +3488,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""

View File

@ -3504,98 +3504,102 @@ msgid "Subscript out of range"
msgstr "" msgstr ""
#: jscript.rc:28 #: jscript.rc:28
msgid "Automation server can't create object" msgid "Object required"
msgstr "" msgstr ""
#: jscript.rc:29 #: jscript.rc:29
msgid "Object doesn't support this property or method" msgid "Automation server can't create object"
msgstr "" msgstr ""
#: jscript.rc:30 #: jscript.rc:30
msgid "Object doesn't support this action" msgid "Object doesn't support this property or method"
msgstr "" msgstr ""
#: jscript.rc:31 #: jscript.rc:31
msgid "Argument not optional" msgid "Object doesn't support this action"
msgstr "" msgstr ""
#: jscript.rc:32 #: jscript.rc:32
msgid "Syntax error" msgid "Argument not optional"
msgstr "" msgstr ""
#: jscript.rc:33 #: jscript.rc:33
msgid "Expected ';'" msgid "Syntax error"
msgstr "" msgstr ""
#: jscript.rc:34 #: jscript.rc:34
msgid "Expected '('" msgid "Expected ';'"
msgstr "" msgstr ""
#: jscript.rc:35 #: jscript.rc:35
msgid "Expected ')'" msgid "Expected '('"
msgstr "" msgstr ""
#: jscript.rc:36 #: jscript.rc:36
msgid "Unterminated string constant" msgid "Expected ')'"
msgstr "" msgstr ""
#: jscript.rc:37 #: jscript.rc:37
msgid "Conditional compilation is turned off" msgid "Unterminated string constant"
msgstr ""
#: jscript.rc:40
msgid "Number expected"
msgstr "" msgstr ""
#: jscript.rc:38 #: jscript.rc:38
msgid "Function expected" msgid "Conditional compilation is turned off"
msgstr ""
#: jscript.rc:39
msgid "'[object]' is not a date object"
msgstr "" msgstr ""
#: jscript.rc:41 #: 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 "" msgstr ""
#: jscript.rc:42 #: jscript.rc:42
msgid "Illegal assignment" msgid "Object expected"
msgstr "" msgstr ""
#: jscript.rc:43 #: jscript.rc:43
msgid "'|' is undefined" msgid "Illegal assignment"
msgstr "" msgstr ""
#: jscript.rc:44 #: jscript.rc:44
msgid "Boolean object expected" msgid "'|' is undefined"
msgstr "" msgstr ""
#: jscript.rc:45 #: jscript.rc:45
msgid "VBArray object expected" msgid "Boolean object expected"
msgstr "" msgstr ""
#: jscript.rc:46 #: jscript.rc:46
msgid "JScript object expected" msgid "VBArray object expected"
msgstr "" msgstr ""
#: jscript.rc:47 #: jscript.rc:47
msgid "Syntax error in regular expression" msgid "JScript object expected"
msgstr ""
#: jscript.rc:49
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: jscript.rc:48 #: jscript.rc:48
msgid "URI to be decoded is incorrect" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:50 #: 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 "" msgstr ""
#: jscript.rc:51 #: jscript.rc:51
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:52
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""