jscript: Throw proper exception in RegExp.prototype.toString when called on non-RegExp object.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2020-06-03 16:04:15 +02:00 committed by Alexandre Julliard
parent f207ded345
commit 6de0a658f1
55 changed files with 1286 additions and 765 deletions

View File

@ -487,6 +487,7 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx)
case JS_E_INVALID_DELETE:
case JS_E_JSCRIPT_EXPECTED:
case JS_E_ENUMERATOR_EXPECTED:
case JS_E_REGEXP_EXPECTED:
case JS_E_ARRAY_EXPECTED:
case JS_E_NONCONFIGURABLE_REDEFINED:
case JS_E_NONWRITABLE_MODIFIED:

View File

@ -554,7 +554,8 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags)
#define JS_E_VBARRAY_EXPECTED MAKE_JSERROR(IDS_NOT_VBARRAY)
#define JS_E_INVALID_DELETE MAKE_JSERROR(IDS_INVALID_DELETE)
#define JS_E_JSCRIPT_EXPECTED MAKE_JSERROR(IDS_JSCRIPT_EXPECTED)
#define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_NOT_ENUMERATOR)
#define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_ENUMERATOR_EXPECTED)
#define JS_E_REGEXP_EXPECTED MAKE_JSERROR(IDS_REGEXP_EXPECTED)
#define JS_E_REGEXP_SYNTAX MAKE_JSERROR(IDS_REGEXP_SYNTAX_ERROR)
#define JS_E_EXCEPTION_THROWN MAKE_JSERROR(IDS_EXCEPTION_THROWN)
#define JS_E_INVALID_URI_CODING MAKE_JSERROR(IDS_URI_INVALID_CODING)

View File

@ -58,6 +58,8 @@ STRINGTABLE
IDS_INVALID_DELETE "Cannot delete '|'"
IDS_NOT_VBARRAY "VBArray object expected"
IDS_JSCRIPT_EXPECTED "JScript object expected"
IDS_ENUMERATOR_EXPECTED "Enumerator object expected"
IDS_REGEXP_EXPECTED "Regular Expression object expected"
IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression"
IDS_EXCEPTION_THROWN "Exception thrown and not caught"
IDS_URI_INVALID_CODING "URI to be decoded is incorrect"

View File

@ -329,8 +329,8 @@ static HRESULT RegExp_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, u
TRACE("\n");
if(!is_vclass(jsthis, JSCLASS_REGEXP)) {
FIXME("Not a RegExp\n");
return E_NOTIMPL;
WARN("Not a RegExp\n");
return JS_E_REGEXP_EXPECTED;
}
regexp = regexp_from_vdisp(jsthis);

View File

@ -56,7 +56,8 @@
#define IDS_INVALID_DELETE 0x1394
#define IDS_NOT_VBARRAY 0x1395
#define IDS_JSCRIPT_EXPECTED 0x1396
#define IDS_NOT_ENUMERATOR 0x1397
#define IDS_ENUMERATOR_EXPECTED 0x1397
#define IDS_REGEXP_EXPECTED 0x1398
#define IDS_REGEXP_SYNTAX_ERROR 0x1399
#define IDS_EXCEPTION_THROWN 0x139E
#define IDS_URI_INVALID_CHAR 0x13A0

View File

@ -2478,6 +2478,7 @@ var exception_array = {
E_OBJECT_EXPECTED: { type: "TypeError", number: -2146823281 },
E_OBJECT_REQUIRED: { type: "TypeError", number: -2146827864 },
E_UNSUPPORTED_ACTION: { type: "TypeError", number: -2146827843 },
E_REGEXP_EXPECTED: { type: "TypeError", number: -2146823272 },
E_NOT_ENUMERATOR: { type: "TypeError", number: -2146823273 },
E_NOT_VBARRAY: { type: "TypeError", number: -2146823275 },
E_INVALID_DELETE: { type: "TypeError", number: -2146823276 },
@ -2562,6 +2563,7 @@ testException(function() {delete (new Object());}, "E_INVALID_DELETE");
testException(function() {delete false;}, "E_INVALID_DELETE");
testException(function() {undefined.toString();}, "E_OBJECT_EXPECTED");
testException(function() {null.toString();}, "E_OBJECT_EXPECTED");
testException(function() {RegExp.prototype.toString.call(new Object());}, "E_REGEXP_EXPECTED");
obj = new Object();
obj.prop = 1;

View File

@ -3737,15 +3737,15 @@ msgstr "البناء الشرطي معطل"
msgid "Expected '@'"
msgstr "متوقع ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3792,52 +3792,64 @@ msgid "JScript object expected"
msgstr "عنصر جافا سكربت متوقع"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "عنصر مصفوفة متوقع"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "عنصر منطقي متوقع"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "خطأ بنيوي في تفسير نظامي"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "الرابط المراد تشفيره غير صحيح"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "عدد الأرقام المجزأة خارج المدى"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "الدقة خارج المدى"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "عنصر مصفوفة متوقع"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3622,15 +3622,15 @@ msgstr ""
msgid "Expected '@'"
msgstr "Esperábase «@»"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3675,52 +3675,60 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "Precision is out of range"
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Array length must be a finite positive integer"
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
msgid "Array object expected"
msgid "Precision is out of range"
msgstr ""
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3747,15 +3747,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
msgid "Unknown runtime error"
msgstr "Пре&гледай изходния код"
@ -3801,54 +3801,62 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "Разпечатай"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3729,15 +3729,15 @@ msgstr "La compilació condicional està desactivada"
msgid "Expected '@'"
msgstr "S'esperava '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3784,38 +3784,50 @@ msgid "JScript object expected"
msgstr "S'esperava un objecte JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "S'esperava un objecte Array"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "S'esperava un objecte booleà"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Error de sintaxi en l'expressió regular"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "L'URI a codificar conté caràcters no vàlids"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "L'URI a descodificar és incorrecte"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "El nombre de xifres de fracció és fora d'interval"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "La precisió és fora d'interval"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "La longitud del vector ha de ser un nombre enter positiu finit"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "S'esperava un objecte Array"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3823,15 +3835,15 @@ msgstr ""
"no es pot establir l'atribut 'writable' en el descriptor de propietat com a "
"'true' en aquest objecte"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "No es pot redefinir la propietat no configurable '|'"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "No es pot modificar la propietat no escrivible '|'"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "La propietat no pot tenir ambdós mètodes d'accés i un valor"

View File

@ -3678,15 +3678,15 @@ msgstr "Podmíněná kompilace je vypnutá"
msgid "Expected '@'"
msgstr "Očekáváno „@“"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3733,52 +3733,64 @@ msgid "JScript object expected"
msgstr "Očekáván objekt JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Očekáván objekt typu pole"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Očekáván boolean objekt"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Počet desetinných čísel je mimo rozsah"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Přesnost je mimo rozsah"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Rozměr pole musí být konečné kladné celé číslo"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Očekáván objekt typu pole"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3774,15 +3774,15 @@ msgstr "Betinget kompilering er slået fra"
msgid "Expected '@'"
msgstr "Forventet ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3829,56 +3829,68 @@ msgid "JScript object expected"
msgstr "JScript objekt forventet"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Array objekt forventet"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Boolsk objekt forventet"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntaksfejl i regulært udtryk"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI, der skal kodes indeholder ugyldige tegn"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI der skal afkodes er forkert"
#: jscript.rc:66
#: jscript.rc:68
#, fuzzy
#| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range"
msgstr "Opregnings værdi uden for intervallet.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Indekset er uden for grænserne"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array længde skal være et endeligt positivt heltal"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array objekt forventet"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3720,15 +3720,15 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet"
msgid "Expected '@'"
msgstr "'@' erwartet"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript Übersetzungsfehler"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript Laufzeitfehler"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "Unbekannter Laufzeitfehler"
@ -3773,38 +3773,50 @@ msgid "JScript object expected"
msgstr "JScript-Objekt erwartet"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Array-Objekt erwartet"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Boolesches Objekt erwartet"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntaxfehler in regulärem Ausdruck"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "Exception ausgelöst und nicht abgefangen"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Zu entschlüsselnde URI ist ungültig"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Genauigkeit außerhalb des zulässigen Bereichs"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array-Größe muss eine natürliche Zahl sein"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array-Objekt erwartet"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3812,16 +3824,16 @@ msgstr ""
"'writable'-Attribut des Eigenschaftendeskriptors kann bei diesem Objekt "
"nicht auf 'true' gesetzt werden"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
"Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben"

View File

@ -3662,15 +3662,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
msgid "Unknown runtime error"
msgstr "&Περιεχόμενα"
@ -3716,52 +3716,60 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "Precision is out of range"
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Array length must be a finite positive integer"
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
msgid "Array object expected"
msgid "Precision is out of range"
msgstr ""
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3712,15 +3712,15 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'"
msgstr "Expected '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "Unknown runtime error"
@ -3765,38 +3765,46 @@ msgid "JScript object expected"
msgstr "JScript object expected"
#: jscript.rc:62
msgid "Enumerator object expected"
msgstr "Enumerator object expected"
#: jscript.rc:63
msgid "Regular Expression object expected"
msgstr "Regular Expression object expected"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Number of fraction digits is out of range"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precision is out of range"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array object expected"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3804,15 +3812,15 @@ msgstr ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Property cannot have both accessors and a value"

View File

@ -3712,15 +3712,15 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'"
msgstr "Expected '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "Unknown runtime error"
@ -3765,38 +3765,46 @@ msgid "JScript object expected"
msgstr "JScript object expected"
#: jscript.rc:62
msgid "Enumerator object expected"
msgstr "Enumerator object expected"
#: jscript.rc:63
msgid "Regular Expression object expected"
msgstr "Regular Expression object expected"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Number of fraction digits is out of range"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precision is out of range"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array object expected"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3804,15 +3812,15 @@ msgstr ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Property cannot have both accessors and a value"

View File

@ -3654,15 +3654,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown printer driver."
msgid "Unknown runtime error"
@ -3709,54 +3709,62 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "Etendiĝon"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3783,15 +3783,15 @@ msgstr "La compilación condicional está desactivada"
msgid "Expected '@'"
msgstr "Esperado ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3838,56 +3838,68 @@ msgid "JScript object expected"
msgstr "Objeto JScript esperado"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Objeto array esperado"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Objeto Booleano esperado"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Error de sintaxis en la expresión regular"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI a codificar contiene caracteres no válidos"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI a decodificar es incorrecta"
#: jscript.rc:66
#: jscript.rc:68
#, fuzzy
#| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range"
msgstr "Valor de la enumeración fuera de rango.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Subíndice fuera de rango"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "La longitud del array debe ser un entero positivo finito"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Objeto array esperado"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3691,15 +3691,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3745,53 +3745,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "&حذف\tDel"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3706,15 +3706,15 @@ msgstr "Ehdollinen kääntäminen on pois käytöstä"
msgid "Expected '@'"
msgstr "Odotettiin merkkiä '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript -käännösvirhe"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript -suoritusvirhe"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "Tuntematon ajonaikainen virhe"
@ -3759,53 +3759,65 @@ msgid "JScript object expected"
msgstr "Odotettiin JScript-objektia"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Odotettiin taulukkoa"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Odotettiin totuusarvoa"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntaksivirhe säännöllisessä lausekkeessa"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "Poikkeusta ei otettu kiinni"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Enkoodattava URI sisältää virheellisiä merkkejä"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Dekoodattava URI on virheellinen"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Desimaalien määrä ei kelpaa"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Tarkkuus ei kelpaa"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Taulukon pituuden täytyy olla positiivinen kokonaisluku"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Odotettiin taulukkoa"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
"Attribuutti 'writable' ei voi olla 'true' tämän objektin ominaisuuksissa"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Ei-konfiguroitavaa ominaisuutta '|' ei voi määritellä uudestaan"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa"

View File

@ -3762,15 +3762,15 @@ msgstr "La compilation conditionnelle est désactivée"
msgid "Expected '@'"
msgstr "« @ » attendu"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3817,52 +3817,64 @@ msgid "JScript object expected"
msgstr "Objet JScript attendu"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Objet tableau attendu"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Objet booléen attendu"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Erreur de syntaxe dans l'expression rationnelle"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "L'URI à coder contient des caractères invalides"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "L'URI à décoder est incorrecte"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Nombre de décimales hors plage"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Précision hors limites"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "La longueur d'un tableau doit être un entier positif"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Objet tableau attendu"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3739,15 +3739,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3795,54 +3795,62 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "טווח ההדפסה"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3624,15 +3624,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3677,53 +3677,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "फ़ॉन्ट (&F)..."
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3742,15 +3742,15 @@ msgstr "Kondicionalna kompilacija je isključena"
msgid "Expected '@'"
msgstr "Očekivano ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3797,52 +3797,64 @@ msgid "JScript object expected"
msgstr "Očekivan JScript objekt"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Očekivan niz objekata"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Očekivani objekt istinitosne vrijednosti"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje sadrži neispravne znakove"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI za dekodiranje je neispravan"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Broj decimalnih znamenki je izvan dosega"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Preciznost je izvan dosega"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Duljina niza treba biti konačan prirodan broj"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Očekivan niz objekata"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3792,15 +3792,15 @@ msgstr "Feltételes fordítás kikapcsolva"
msgid "Expected '@'"
msgstr "Hiányzó ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3847,56 +3847,68 @@ msgid "JScript object expected"
msgstr "JScript objektumot vártam"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Tömb objektumot vártam"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Boolean (igaz-hamis) objektumot vártam"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Szinttaktikai hiba a reguláris kifejezésben"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:66
#: jscript.rc:68
#, fuzzy
#| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range"
msgstr "Felsorolási érték határon kívül esik.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Érvénytelen alszkript"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Tömb objektumot vártam"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3800,15 +3800,15 @@ msgstr "Compilazione condizionale disattivata"
msgid "Expected '@'"
msgstr "Richiesto ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3855,56 +3855,68 @@ msgid "JScript object expected"
msgstr "Previsto un oggetto JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Previsto un oggetto array"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Previsto un oggetto Booleano"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Errore di sintassi nell'espressione regolare"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "L'URI da codificare contiene caratteri non validi"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "L'URI da decodificare non è corretto"
#: jscript.rc:66
#: jscript.rc:68
#, fuzzy
#| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range"
msgstr "Valore dell'enumerazione fuori portata.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Sottoscript fuori portata"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Previsto un oggetto array"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3704,15 +3704,15 @@ msgstr "条件コンパイルはオフにされています"
msgid "Expected '@'"
msgstr "'@'を期待していました"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript コンパイル エラー"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript 実行時エラー"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "未知の実行時エラー"
@ -3757,38 +3757,50 @@ msgid "JScript object expected"
msgstr "JScript オブジェクトを期待していました"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "配列オブジェクトを期待していました"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Boolean オブジェクトを期待していました"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "正規表現に構文誤りがあります"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "例外が送出されましたが捕捉されませんでした"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "エンコードされる URI に無効な文字が含まれています"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "デコードされる URI が正しくありません"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "小数点以下の桁数が範囲外です"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "精度指定が範囲外です"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "配列の長さは有限の正整数でなければなりません"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "配列オブジェクトを期待していました"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3796,15 +3808,15 @@ msgstr ""
"このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で"
"きません"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "変更不可のプロパティ '|' は再定義できません"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "書換不可のプロパティ '|' は変更できません"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "プロパティはアクセサと値の両方になることはできません"

View File

@ -3696,15 +3696,15 @@ msgstr "조건부 컴파일이 해제되어 있음"
msgid "Expected '@'"
msgstr "'@'가 필요합니다"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3751,53 +3751,65 @@ msgid "JScript object expected"
msgstr "JScript 객체가 필요함"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "배열 객체가 필요합니다"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "볼린 객제가 필요함"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "정규 표현식에 문법오류가 있음"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "인코딩할 URI에 올바르지 않은 문자가 들어 있습니다"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "디코딩할 URI가 올바르지 않습니다"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "분수 자리수 값이 범위를 벗어났습니다"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "정밀도가 범위를 벗어났습니다"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "배열 길이는 유한한 양의 정수이어야 합니다"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "배열 객체가 필요합니다"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
"속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "구성되지 않은 요소 '|'를 재처리할 수 없습니다"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "쓰기 가능하지 않은 요소 '|'를 편집할 수 없습니다"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "속성은 접근자와 값을 모두 가질 수 없습니다"

View File

@ -3715,15 +3715,15 @@ msgstr "Sąlyginis kompiliavimas išjungtas"
msgid "Expected '@'"
msgstr "Tikėtasi „@“"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript kompiliavimo klaida"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript vykdymo klaida"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "Nežinoma vykdymo klaida"
@ -3768,38 +3768,50 @@ msgid "JScript object expected"
msgstr "Tikėtasi JScript objekto"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Tikėtasi masyvo objekto"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Tikėtasi loginio objekto"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Sintaksės klaida reguliariajame reiškinyje"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "Išimtinė situacija sugeneruota ir neapdorota"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Koduotiname URI yra netinkamų simbolių"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Dekoduojamas URI neteisingas"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Tikslumas nepatenka į rėžius"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Tikėtasi masyvo objekto"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3807,15 +3819,15 @@ msgstr ""
"savybės aprašo atributas „writable“ negali būti nustatytas į „tiesa“ šiam "
"objektui"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Negalima modifikuoti nerašomos savybės „|“"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės"

View File

@ -3626,15 +3626,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3679,53 +3679,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "_അക്ഷരസഞ്ചയ..."
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3718,15 +3718,15 @@ msgstr "Avhengig kompilering er skrudd av"
msgid "Expected '@'"
msgstr "Forventet '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3773,52 +3773,64 @@ msgid "JScript object expected"
msgstr "Forventet JScript-objekt"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Forventet rekke-objekt"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Forventet boolsk verdi"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntaksfeil i regulært uttrykk"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI'en som skal kodes inneholder ugyldige tegn"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI'en som skal dekodes er feil"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Antall brøktegn er utenfor rekken av gyldige verdier"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Presisjonen er utenfor rekken av gyldige verdier"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Rekkens lengde må være et endelig, positivt tall"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Forventet rekke-objekt"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3777,15 +3777,15 @@ msgstr "Conditionele compilatie is uitgeschakeld"
msgid "Expected '@'"
msgstr "';' verwacht"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3832,52 +3832,64 @@ msgid "JScript object expected"
msgstr "JScript object verwacht"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Array object verwacht"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Boolean object verwacht"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntax fout in reguliere expressie"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "De te coderen URI bevat ongeldige tekens"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "De te decoderen URI is niet correct"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Aantal getallen achter de komma buiten bereik"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precisie is buiten bereik"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array lengte moet een eindig, positief geheel getal zijn"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array object verwacht"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3624,15 +3624,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3677,53 +3677,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "ଅକ୍ଷରରୂପ (&F)..."
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3624,15 +3624,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3677,53 +3677,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "ਫੌਂਟ(&F)..."
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3756,15 +3756,15 @@ msgstr "Warunkowa kompilacja jest wyłączona"
msgid "Expected '@'"
msgstr "Oczekiwano '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3811,52 +3811,64 @@ msgid "JScript object expected"
msgstr "Oczekiwany obiekt JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Oczekiwany obiekt tablicowy"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Oczekiwany obiekt boolean"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Błąd składni w regularnym wyrażeniu"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Kodowane URI zawiera niewłaściwe znaki"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI do dekodowania jest niepoprawny"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Ilość cyfr znaczących jest poza zakresem"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precyzja jest poza poza zakresem"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Oczekiwany obiekt tablicowy"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3727,15 +3727,15 @@ msgstr "Compilação condicional está desligada"
msgid "Expected '@'"
msgstr "'@' esperado"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3782,38 +3782,50 @@ msgid "JScript object expected"
msgstr "Objeto JScript esperado"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Objeto tipo vetor esperado"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Objeto booleano esperado"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI a ser decodificado está incorreto"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Número de dígitos fracionários fora do limite"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precisão fora do limite"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Objeto tipo vetor esperado"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3821,15 +3833,15 @@ msgstr ""
"atributo 'gravável' no descritor de propriedades não pode ser setado para "
"'verdade' neste objeto"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Não pode redefinir propriedade não configurável '|'"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Não pode modificar propriedade não gravável '|'"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Propriedade não pode ter ambos acessores e valor"

View File

@ -3760,15 +3760,15 @@ msgstr "A compilação condicional está desactivada"
msgid "Expected '@'"
msgstr "Esperado '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3815,52 +3815,64 @@ msgid "JScript object expected"
msgstr "Objecto JScript esperado"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Objecto Array esperado"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Objecto boleano esperado"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI a ser descodificado é incorreto"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Número de dígitos fraccionários está fora de alcance"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precisão fora de alcance"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Objecto Array esperado"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3653,15 +3653,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3706,53 +3706,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "&Stampar tema"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3715,15 +3715,15 @@ msgstr "Compilarea condițională este dezactivată"
msgid "Expected '@'"
msgstr "Se așteaptă „@”"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3770,54 +3770,66 @@ msgid "JScript object expected"
msgstr "Se așteaptă un obiect JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Se așteaptă un obiect matrice"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Se așteaptă un obiect boolean"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Eroare de sintaxă în expresia regulată"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI care trebuie codificat conține caractere nevalide"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI care trebuie decodat este incorect"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "Interval tipărire"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Se așteaptă un obiect matrice"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3722,15 +3722,15 @@ msgstr "Условная компиляция отключена"
msgid "Expected '@'"
msgstr "Ожидается «@»"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3777,52 +3777,64 @@ msgid "JScript object expected"
msgstr "Ожидается объект типа «JScript»"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Ожидается объект типа «Array»"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Ожидается объект типа «bool»"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Синтаксическая ошибка в регулярном выражении"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "В кодируемом URI обнаружен неверный символ"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Декодируемый URI неверен"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Количество знаков после запятой вне диапазона"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Точность представления вне диапазона"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Длиной массива должно быть конечное положительное число"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Ожидается объект типа «Array»"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr "Невозможно установить атрибут «writable» в «true» для этого объекта"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Невозможно переопределить ненастраиваемое свойство «|»"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Невозможно изменить свойство «|»"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Свойство не может одновременно иметь методы для доступа и значение"

View File

@ -3647,15 +3647,15 @@ msgstr ""
msgid "Expected '@'"
msgstr "අපේක්ෂා කරේ '='"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3702,52 +3702,64 @@ msgid "JScript object expected"
msgstr "JScript වස්තුවක් අපේක්ෂා කරේ"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "බූලීය වස්තුවක් අපේක්ෂා කරේ"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr ""
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3691,15 +3691,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3746,54 +3746,64 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgstr ""
#, fuzzy
#| msgid "Object expected"
msgid "Enumerator object expected"
msgstr "Očakávaný objekt"
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "Rozsah tlače"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3794,15 +3794,15 @@ msgstr "Pogojno kodno prevajanje je izklopljeno"
msgid "Expected '@'"
msgstr "Pričakovan je bil ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3849,56 +3849,68 @@ msgid "JScript object expected"
msgstr "Pričakovan je bil predmet JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Pričakovan je bil predmet polja"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Pričakovan je bil Boolov predmet"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Napaka skladnje v logičnem izrazu"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje vsebuje neveljavne znake"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI za odkodiranje je nepravilen"
#: jscript.rc:66
#: jscript.rc:68
#, fuzzy
#| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range"
msgstr "Vrednost oštevilčenja je izven obsega.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Podskript je izven obsega"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Dolžina polja mora bit pozitivno celo število"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Pričakovan je bil predmet polja"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3773,15 +3773,15 @@ msgstr ""
msgid "Expected '@'"
msgstr "Очекивано ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
msgid "Unknown runtime error"
msgstr "Непознат извор"
@ -3828,56 +3828,68 @@ msgid "JScript object expected"
msgstr "Очекивани објекат JScript врсте"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Очекивани низ објекта"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Очекивани објекат истинитосне вредности"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Синтаксна грешка у регуларном изразу"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI садржи неисправне знакове"
#: jscript.rc:64
#, fuzzy
msgid "URI to be decoded is incorrect"
msgstr "URI садржи неисправне знакове"
#: jscript.rc:66
#, fuzzy
msgid "URI to be decoded is incorrect"
msgstr "URI садржи неисправне знакове"
#: jscript.rc:68
#, fuzzy
msgid "Number of fraction digits is out of range"
msgstr "Потпис је ван домета.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Потпис је ван домета"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Низ дужине мора бити коначан позитиван цео број"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Очекивани низ објекта"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3853,15 +3853,15 @@ msgstr ""
msgid "Expected '@'"
msgstr "Očekivano ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
msgid "Unknown runtime error"
msgstr "Nepoznat izvor"
@ -3908,56 +3908,68 @@ msgid "JScript object expected"
msgstr "Očekivani objekat JScript vrste"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Očekivani niz objekta"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Očekivani objekat istinitosne vrednosti"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI sadrži neispravne znakove"
#: jscript.rc:64
#, fuzzy
msgid "URI to be decoded is incorrect"
msgstr "URI sadrži neispravne znakove"
#: jscript.rc:66
#, fuzzy
msgid "URI to be decoded is incorrect"
msgstr "URI sadrži neispravne znakove"
#: jscript.rc:68
#, fuzzy
msgid "Number of fraction digits is out of range"
msgstr "Potpis je van dometa.\n"
#: jscript.rc:67
#: jscript.rc:69
#, fuzzy
#| msgid "Subscript out of range"
msgid "Precision is out of range"
msgstr "Potpis je van dometa"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Očekivani niz objekta"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3739,15 +3739,15 @@ msgstr "Villkorlig kompilering är avslagen"
msgid "Expected '@'"
msgstr "'@' förväntades"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3794,52 +3794,64 @@ msgid "JScript object expected"
msgstr "JScript-objekt förväntades"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Array-objekt förväntades"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Booleskt objekt förväntades"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Syntaxfel i reguljärt uttryck"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Den URI som ska avkodas är felaktig"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Antal decimaler är utanför giltigt intervall"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Precision är utanför giltigt intervall"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Array-längd måste vara ett positivt ändligt heltal"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Array-objekt förväntades"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3588,15 +3588,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3641,52 +3641,60 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "Precision is out of range"
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Array length must be a finite positive integer"
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
msgid "Array object expected"
msgid "Precision is out of range"
msgstr ""
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3624,15 +3624,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3677,53 +3677,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "ఫాంట్... (&F)"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3679,15 +3679,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown printer driver."
msgid "Unknown runtime error"
@ -3735,54 +3735,62 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
#| msgid "Print range"
msgid "Precision is out of range"
msgstr "ย่อ"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3713,15 +3713,15 @@ msgstr "Şartlı derleme kapatıldı"
msgid "Expected '@'"
msgstr "Beklenen '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3768,38 +3768,50 @@ msgid "JScript object expected"
msgstr "Beklenen JScript nesnesi"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Beklenen dizi nesnesi"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Beklenen mantıksal nesne"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Düzenli ifadede sözdizimi hatası"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "Kodlanacak URI geçersiz karakterler içeriyor"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "Kodu çözülecek URI geçersiz"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Kesirli rakam sayısı aralık dışı"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Aralık erişim dışında"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Dizi adı pozitif sonlu bir sayı olmalıdır"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Beklenen dizi nesnesi"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
@ -3807,15 +3819,15 @@ msgstr ""
"Nesne açıklayıcısındaki 'yazılabilir' özelliği bu nesnede 'doğru' olarak "
"ayarlananmıyor"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "'|' yazılamayan nesnesi değiştirilemiyor"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Nesnenin erişimcisi ve değeri birden olamaz"

View File

@ -3724,15 +3724,15 @@ msgstr "Умовна компіляція вимкнена"
msgid "Expected '@'"
msgstr "Очікується ';'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3779,53 +3779,65 @@ msgid "JScript object expected"
msgstr "Очікується об'єкт JScript"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "Очікується об'єкт Array"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "Очікується об'єкт Boolean"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "Синтаксична помилка в регулярному виразі"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "URI, що буде закодований, містить неприпустимі символи"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "URI, що буде закодований, некоректний"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "Кількість знаків після коми поза діапазоном"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "Точність поза діапазоном"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "Очікується об'єкт Array"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
"Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "Неможливо змінити властивість, яка не підлягає запису '|'"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "Властивість не може одночасно мати доступ і значення"

View File

@ -3686,15 +3686,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3740,53 +3740,61 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
#, fuzzy
msgid "Precision is out of range"
msgstr "Cwé rexhe"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3581,15 +3581,15 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr ""
@ -3634,52 +3634,60 @@ msgid "JScript object expected"
msgstr ""
#: jscript.rc:62
msgid "Syntax error in regular expression"
msgid "Enumerator object expected"
msgstr ""
#: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgid "Regular Expression object expected"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgid "Syntax error in regular expression"
msgstr ""
#: jscript.rc:66
msgid "Number of fraction digits is out of range"
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:67
msgid "Precision is out of range"
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:68
msgid "Array length must be a finite positive integer"
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:69
msgid "Array object expected"
msgid "Precision is out of range"
msgstr ""
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:71
msgid "Array object expected"
msgstr ""
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""

View File

@ -3659,15 +3659,15 @@ msgstr "条件编译已关闭"
msgid "Expected '@'"
msgstr "期望 '@'"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript 编译错误"
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript 运行时错误"
#: jscript.rc:77
#: jscript.rc:79
msgid "Unknown runtime error"
msgstr "未知运行时错误"
@ -3712,52 +3712,64 @@ msgid "JScript object expected"
msgstr "期望得到 JScript 对象"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "期望得到 Array 对象"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "期望得到布尔型对象"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "正则表达式中出现语法错误"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr "发生异常且未被捕捉"
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "待编码的 URI 包含无效字符"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "待解码的 URI 不正确"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "分数位数的数字超出范围"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "精度超出范围"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "数组的长度必须为一个有限正整数"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "期望得到 Array 对象"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr "无法在此对象上更改属性描述符中的“writable”属性为“true”"
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr "无法重定义不可配置的属性“|”"
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr "无法更改不可写的属性“|”"
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr "属性不能同时包含存取器和值"

View File

@ -3707,15 +3707,15 @@ msgstr "條件編譯已被關閉"
msgid "Expected '@'"
msgstr "預期為 ;"
#: jscript.rc:75
#: jscript.rc:77
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
#: jscript.rc:78
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#: jscript.rc:79
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
@ -3762,52 +3762,64 @@ msgid "JScript object expected"
msgstr "預期為 JScript 物件"
#: jscript.rc:62
#, fuzzy
#| msgid "Array object expected"
msgid "Enumerator object expected"
msgstr "預期為陣列物件"
#: jscript.rc:63
#, fuzzy
#| msgid "Boolean object expected"
msgid "Regular Expression object expected"
msgstr "預期為布林物件"
#: jscript.rc:64
msgid "Syntax error in regular expression"
msgstr "正規表示式語法發生錯誤"
#: jscript.rc:63
#: jscript.rc:65
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
#: jscript.rc:67
msgid "URI to be encoded contains invalid characters"
msgstr "要編碼的 URI 內含無效字元"
#: jscript.rc:64
#: jscript.rc:66
msgid "URI to be decoded is incorrect"
msgstr "要解碼的 URI 不正確"
#: jscript.rc:66
#: jscript.rc:68
msgid "Number of fraction digits is out of range"
msgstr "小數位數超出範圍"
#: jscript.rc:67
#: jscript.rc:69
msgid "Precision is out of range"
msgstr "精確度超出範圍"
#: jscript.rc:68
#: jscript.rc:70
msgid "Array length must be a finite positive integer"
msgstr "陣列長度必須是有限正整數"
#: jscript.rc:69
#: jscript.rc:71
msgid "Array object expected"
msgstr "預期為陣列物件"
#: jscript.rc:70
#: jscript.rc:72
msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object"
msgstr ""
#: jscript.rc:71
#: jscript.rc:73
msgid "Cannot redefine non-configurable property '|'"
msgstr ""
#: jscript.rc:72
#: jscript.rc:74
msgid "Cannot modify non-writable property '|'"
msgstr ""
#: jscript.rc:73
#: jscript.rc:75
msgid "Property cannot have both accessors and a value"
msgstr ""