1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

jscript: Throw proper error for unexpected quantifiers in RegExp.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
Gabriel Ivăncescu 2023-05-29 21:58:37 +03:00 committed by Alexandre Julliard
parent 627e5b3bf1
commit e7b06b0ddd
57 changed files with 1165 additions and 886 deletions

View file

@ -456,6 +456,7 @@ jsdisp_t *create_builtin_error(script_ctx_t *ctx)
case JS_E_EXPECTED_CCEND: case JS_E_EXPECTED_CCEND:
case JS_E_DISABLED_CC: case JS_E_DISABLED_CC:
case JS_E_EXPECTED_AT: case JS_E_EXPECTED_AT:
case JS_E_UNEXPECTED_QUANTIFIER:
constr = ctx->syntax_error_constr; constr = ctx->syntax_error_constr;
break; break;

View file

@ -531,6 +531,7 @@ static inline HRESULT disp_call_value(script_ctx_t *ctx, IDispatch *disp, jsval_
#define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_ENUMERATOR_EXPECTED) #define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_ENUMERATOR_EXPECTED)
#define JS_E_REGEXP_EXPECTED MAKE_JSERROR(IDS_REGEXP_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_REGEXP_SYNTAX MAKE_JSERROR(IDS_REGEXP_SYNTAX_ERROR)
#define JS_E_UNEXPECTED_QUANTIFIER MAKE_JSERROR(IDS_UNEXPECTED_QUANTIFIER)
#define JS_E_EXCEPTION_THROWN MAKE_JSERROR(IDS_EXCEPTION_THROWN) #define JS_E_EXCEPTION_THROWN MAKE_JSERROR(IDS_EXCEPTION_THROWN)
#define JS_E_INVALID_URI_CODING MAKE_JSERROR(IDS_URI_INVALID_CODING) #define JS_E_INVALID_URI_CODING MAKE_JSERROR(IDS_URI_INVALID_CODING)
#define JS_E_INVALID_URI_CHAR MAKE_JSERROR(IDS_URI_INVALID_CHAR) #define JS_E_INVALID_URI_CHAR MAKE_JSERROR(IDS_URI_INVALID_CHAR)

View file

@ -62,6 +62,7 @@ STRINGTABLE
IDS_ENUMERATOR_EXPECTED "Enumerator object expected" IDS_ENUMERATOR_EXPECTED "Enumerator object expected"
IDS_REGEXP_EXPECTED "Regular Expression object expected" IDS_REGEXP_EXPECTED "Regular Expression object expected"
IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression" IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression"
IDS_UNEXPECTED_QUANTIFIER "Unexpected quantifier"
IDS_EXCEPTION_THROWN "Exception thrown and not caught" IDS_EXCEPTION_THROWN "Exception thrown and not caught"
IDS_URI_INVALID_CODING "URI to be decoded is incorrect" IDS_URI_INVALID_CODING "URI to be decoded is incorrect"
IDS_URI_INVALID_CHAR "URI to be encoded contains invalid characters" IDS_URI_INVALID_CHAR "URI to be encoded contains invalid characters"

View file

@ -649,7 +649,7 @@ HRESULT create_regexp(script_ctx_t *ctx, jsstr_t *src, DWORD flags, jsdisp_t **r
if(!regexp->jsregexp) { if(!regexp->jsregexp) {
WARN("regexp_new failed\n"); WARN("regexp_new failed\n");
jsdisp_release(&regexp->dispex); jsdisp_release(&regexp->dispex);
return E_FAIL; return DISP_E_EXCEPTION;
} }
*ret = &regexp->dispex; *ret = &regexp->dispex;

View file

@ -41,13 +41,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(jscript); WINE_DEFAULT_DEBUG_CHANNEL(jscript);
/* FIXME: Better error handling */ /* FIXME: Better error handling */
#define ReportRegExpError(a,b,c) #define ReportRegExpError(a,b,c) throw_error((a)->context, E_FAIL, L"")
#define ReportRegExpErrorHelper(a,b,c,d) #define ReportRegExpErrorHelper(a,b,c,d) throw_error((a)->context, E_FAIL, L"")
#define JS_ReportErrorNumber(a,b,c,d) #define JS_ReportErrorNumber(a,b,c,d) throw_error((a), E_FAIL, L"")
#define JS_ReportErrorFlagsAndNumber(a,b,c,d,e,f) #define JS_ReportErrorFlagsAndNumber(a,b,c,d,e,f) throw_error((a), E_FAIL, L"")
#define js_ReportOutOfScriptQuota(a) #define js_ReportOutOfScriptQuota(a) throw_error((a), E_FAIL, L"")
#define JS_ReportOutOfMemory(a) #define JS_ReportOutOfMemory(a) throw_error((a), E_FAIL, L"")
#define JS_COUNT_OPERATION(a,b) #define JS_COUNT_OPERATION(a,b) throw_error((a), E_FAIL, L"")
typedef BYTE JSPackedBool; typedef BYTE JSPackedBool;
@ -292,7 +292,7 @@ struct RENode {
#define CLASS_CACHE_SIZE 4 #define CLASS_CACHE_SIZE 4
typedef struct CompilerState { typedef struct CompilerState {
void *context; script_ctx_t *context;
const WCHAR *cpbegin; const WCHAR *cpbegin;
const WCHAR *cpend; const WCHAR *cpend;
const WCHAR *cp; const WCHAR *cp;
@ -1622,8 +1622,7 @@ doSimple:
case '*': case '*':
case '+': case '+':
case '?': case '?':
ReportRegExpErrorHelper(state, JSREPORT_ERROR, throw_error(state->context, state->context->version < SCRIPTLANGUAGEVERSION_ES5 ? JS_E_REGEXP_SYNTAX : JS_E_UNEXPECTED_QUANTIFIER, L"");
JSMSG_BAD_QUANTIFIER, state->cp - 1);
return FALSE; return FALSE;
default: default:
asFlat: asFlat:

View file

@ -60,6 +60,7 @@
#define IDS_ENUMERATOR_EXPECTED 0x1397 #define IDS_ENUMERATOR_EXPECTED 0x1397
#define IDS_REGEXP_EXPECTED 0x1398 #define IDS_REGEXP_EXPECTED 0x1398
#define IDS_REGEXP_SYNTAX_ERROR 0x1399 #define IDS_REGEXP_SYNTAX_ERROR 0x1399
#define IDS_UNEXPECTED_QUANTIFIER 0x139A
#define IDS_EXCEPTION_THROWN 0x139E #define IDS_EXCEPTION_THROWN 0x139E
#define IDS_URI_INVALID_CHAR 0x13A0 #define IDS_URI_INVALID_CHAR 0x13A0
#define IDS_URI_INVALID_CODING 0x13A1 #define IDS_URI_INVALID_CODING 0x13A1

View file

@ -637,6 +637,13 @@ tmp = /()??()/.exec("");
ok(tmp[1] === "", "/()??()/ [1] captured: " + tmp); ok(tmp[1] === "", "/()??()/ [1] captured: " + tmp);
ok(tmp[2] === "", "/()??()/ [2] captured: " + tmp); ok(tmp[2] === "", "/()??()/ [2] captured: " + tmp);
try {
tmp = new RegExp("(?<a>b)", "g");
ok(false, "expected exception with /(?<a>b)/ regex");
}catch(e) {
ok(e.number === 0xa1399 - 0x80000000, "/(?<a>b)/ regex threw " + e.number);
}
/(b)/.exec("abc"); /(b)/.exec("abc");
ok(RegExp.$1 === "b", "RegExp.$1 = " + RegExp.$1); ok(RegExp.$1 === "b", "RegExp.$1 = " + RegExp.$1);
ok("$2" in RegExp, "RegExp.$2 doesn't exist"); ok("$2" in RegExp, "RegExp.$2 doesn't exist");

View file

@ -26,6 +26,7 @@ var JS_E_BOOLEAN_EXPECTED = 0x800a1392;
var JS_E_VBARRAY_EXPECTED = 0x800a1395; var JS_E_VBARRAY_EXPECTED = 0x800a1395;
var JS_E_ENUMERATOR_EXPECTED = 0x800a1397; var JS_E_ENUMERATOR_EXPECTED = 0x800a1397;
var JS_E_REGEXP_EXPECTED = 0x800a1398; var JS_E_REGEXP_EXPECTED = 0x800a1398;
var JS_E_UNEXPECTED_QUANTIFIER = 0x800a139a;
var JS_E_INVALID_WRITABLE_PROP_DESC = 0x800a13ac; var JS_E_INVALID_WRITABLE_PROP_DESC = 0x800a13ac;
var JS_E_NONCONFIGURABLE_REDEFINED = 0x800a13d6; var JS_E_NONCONFIGURABLE_REDEFINED = 0x800a13d6;
var JS_E_NONWRITABLE_MODIFIED = 0x800a13d7; var JS_E_NONWRITABLE_MODIFIED = 0x800a13d7;
@ -1624,6 +1625,14 @@ sync_test("RegExp", function() {
r = /()??()/.exec(""); r = /()??()/.exec("");
ok(r[1] === undefined, "/()??()/ [1] captured: " + r); ok(r[1] === undefined, "/()??()/ [1] captured: " + r);
ok(r[2] === "", "/()??()/ [2] captured: " + r); ok(r[2] === "", "/()??()/ [2] captured: " + r);
try {
r = new RegExp("(?<a>b)", "g");
ok(false, "expected exception with /(?<a>b)/ regex");
}catch(ex) {
var n = ex.number >>> 0;
ok(n === JS_E_UNEXPECTED_QUANTIFIER, "/(?<a>b)/ regex threw " + n);
}
}); });
sync_test("builtin_context", function() { sync_test("builtin_context", function() {

View file

@ -3999,15 +3999,15 @@ msgstr "البناء الشرطي معطل"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "متوقع ';'" msgstr "متوقع ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4070,66 +4070,72 @@ msgid "Syntax error in regular expression"
msgstr "خطأ بنيوي في تفسير نظامي" msgstr "خطأ بنيوي في تفسير نظامي"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "معرف مفتاح الموضوع"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة" msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "الرابط المراد تشفيره غير صحيح" msgstr "الرابط المراد تشفيره غير صحيح"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "عدد الأرقام المجزأة خارج المدى" msgstr "عدد الأرقام المجزأة خارج المدى"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "الدقة خارج المدى" msgstr "الدقة خارج المدى"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود" msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "عنصر مصفوفة متوقع" msgstr "عنصر مصفوفة متوقع"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' ليس عنصر تاريخ" msgstr "'[object]' ليس عنصر تاريخ"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3874,15 +3874,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Esperábase «@»" msgstr "Esperábase «@»"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3939,64 +3939,70 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Internal error.\n"
msgid "Unexpected quantifier"
msgstr "Fallu internu.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

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

View file

@ -3977,15 +3977,15 @@ msgstr "La compilació condicional està desactivada"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "S'esperava '@'" msgstr "S'esperava '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Error de compilació de Microsoft JScript" msgstr "Error de compilació de Microsoft JScript"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Error d'entorn d'execució de Microsoft JScript" msgstr "Error d'entorn d'execució de Microsoft JScript"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Error d'entorn d'execució desconegut" msgstr "Error d'entorn d'execució desconegut"
@ -4042,34 +4042,40 @@ msgid "Syntax error in regular expression"
msgstr "Error de sintaxi en l'expressió regular" msgstr "Error de sintaxi en l'expressió regular"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "S'esperava un identificador"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "S'ha llançat una excepció que no s'ha atrapat" msgstr "S'ha llançat una excepció que no s'ha atrapat"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI a codificar conté caràcters no vàlids" msgstr "L'URI a codificar conté caràcters no vàlids"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI a descodificar és incorrecte" msgstr "L'URI a descodificar és incorrecte"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "El nombre de xifres de fracció és fora d'interval" msgstr "El nombre de xifres de fracció és fora d'interval"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "La precisió és fora d'interval" msgstr "La precisió és fora d'interval"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longitud del vector ha de ser un nombre enter positiu finit" msgstr "La longitud del vector ha de ser un nombre enter positiu finit"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "S'esperava un objecte Array" msgstr "S'esperava un objecte Array"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4077,31 +4083,31 @@ msgstr ""
"no es pot establir l'atribut 'writable' en el descriptor de propietat com a " "no es pot establir l'atribut 'writable' en el descriptor de propietat com a "
"'true' en aquest objecte" "'true' en aquest objecte"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Valor __proto__ cíclic" msgstr "Valor __proto__ cíclic"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "No es pot definir una propietat en un objecte no extensible" msgstr "No es pot definir una propietat en un objecte no extensible"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "No es pot definir la propietat '|': l'objecte no és extensible" msgstr "No es pot definir la propietat '|': l'objecte no és extensible"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "No es pot redefinir la propietat no configurable '|'" msgstr "No es pot redefinir la propietat no configurable '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "No es pot modificar la propietat no escrivible '|'" msgstr "No es pot modificar la propietat no escrivible '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' no és un objecte de |" msgstr "'this' no és un objecte de |"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" 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" msgstr "La propietat no pot tenir ambdós mètodes d'accés i un valor"

View file

@ -3940,15 +3940,15 @@ msgstr "Podmíněná kompilace je vypnutá"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Očekáváno „@“" msgstr "Očekáváno „@“"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4011,66 +4011,72 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Očekáván identifikátor"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Počet desetinných čísel je mimo rozsah" msgstr "Počet desetinných čísel je mimo rozsah"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Přesnost je mimo rozsah" msgstr "Přesnost je mimo rozsah"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Rozměr pole musí být konečné kladné celé číslo" msgstr "Rozměr pole musí být konečné kladné celé číslo"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekáván objekt typu pole" msgstr "Očekáván objekt typu pole"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'%s' is not a valid port name" #| msgid "'%s' is not a valid port name"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "„%s“ není platný název portu" msgstr "„%s“ není platný název portu"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4032,15 +4032,15 @@ msgstr "Betinget kompilering er slået fra"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Forventet ';'" msgstr "Forventet ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4103,70 +4103,76 @@ msgid "Syntax error in regular expression"
msgstr "Syntaksfejl i regulært udtryk" msgstr "Syntaksfejl i regulært udtryk"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "Emne nøgle identificering"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, der skal kodes indeholder ugyldige tegn" msgstr "URI, der skal kodes indeholder ugyldige tegn"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI der skal afkodes er forkert" msgstr "URI der skal afkodes er forkert"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
#| msgid "Enumeration value out of range.\n" #| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Opregnings værdi uden for intervallet.\n" msgstr "Opregnings værdi uden for intervallet.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Indekset er uden for grænserne" msgstr "Indekset er uden for grænserne"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array længde skal være et endeligt positivt heltal" msgstr "Array længde skal være et endeligt positivt heltal"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array objekt forventet" msgstr "Array objekt forventet"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "«[objekt]» er ikke et dato objekt" msgstr "«[objekt]» er ikke et dato objekt"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3964,15 +3964,15 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "'@' erwartet" msgstr "'@' erwartet"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript Übersetzungsfehler" msgstr "Microsoft JScript Übersetzungsfehler"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript Laufzeitfehler" msgstr "Microsoft JScript Laufzeitfehler"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Unbekannter Laufzeitfehler" msgstr "Unbekannter Laufzeitfehler"
@ -4029,34 +4029,40 @@ msgid "Syntax error in regular expression"
msgstr "Syntaxfehler in regulärem Ausdruck" msgstr "Syntaxfehler in regulärem Ausdruck"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Bezeichner erwartet"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Exception ausgelöst und nicht abgefangen" msgstr "Exception ausgelöst und nicht abgefangen"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Zu entschlüsselnde URI ist ungültig" msgstr "Zu entschlüsselnde URI ist ungültig"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs" msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Genauigkeit außerhalb des zulässigen Bereichs" msgstr "Genauigkeit außerhalb des zulässigen Bereichs"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array-Größe muss eine natürliche Zahl sein" msgstr "Array-Größe muss eine natürliche Zahl sein"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array-Objekt erwartet" msgstr "Array-Objekt erwartet"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4064,32 +4070,32 @@ msgstr ""
"'writable'-Attribut des Eigenschaftendeskriptors kann bei diesem Objekt " "'writable'-Attribut des Eigenschaftendeskriptors kann bei diesem Objekt "
"nicht auf 'true' gesetzt werden" "nicht auf 'true' gesetzt werden"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Zyklischer __proto__-Wert" msgstr "Zyklischer __proto__-Wert"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Eigenschaft für nicht-erweiterbares Objekt kann nicht angelegt werden" msgstr "Eigenschaft für nicht-erweiterbares Objekt kann nicht angelegt werden"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Eigenschaft '|' kann nicht definiert werden: Objekt nicht erweiterbar" msgstr "Eigenschaft '|' kann nicht definiert werden: Objekt nicht erweiterbar"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
"Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden" "Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden" msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' ist kein |-Objekt" msgstr "'this' ist kein |-Objekt"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben" msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben"

View file

@ -3902,15 +3902,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "&Περιεχόμενα" msgstr "&Περιεχόμενα"
@ -3968,64 +3968,68 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:71
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:72
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:73
msgid "Array object expected"
msgstr ""
#: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3952,15 +3952,15 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Expected '@'" msgstr "Expected '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Unknown runtime error" msgstr "Unknown runtime error"
@ -4017,34 +4017,38 @@ msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression" msgstr "Syntax error in regular expression"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Unexpected quantifier"
msgstr "Unexpected quantifier"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught" msgstr "Exception thrown and not caught"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precision is out of range" msgstr "Precision is out of range"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4052,31 +4056,31 @@ msgstr ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Cyclic __proto__ value" msgstr "Cyclic __proto__ value"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Cannot create property for a non-extensible object" msgstr "Cannot create property for a non-extensible object"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Cannot define property '|': object is not extensible" msgstr "Cannot define property '|': object is not extensible"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' is not a | object" msgstr "'this' is not a | object"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value"

View file

@ -3952,15 +3952,15 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Expected '@'" msgstr "Expected '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error" msgstr "Microsoft JScript compilation error"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error" msgstr "Microsoft JScript runtime error"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Unknown runtime error" msgstr "Unknown runtime error"
@ -4017,34 +4017,38 @@ msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression" msgstr "Syntax error in regular expression"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Unexpected quantifier"
msgstr "Unexpected quantifier"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught" msgstr "Exception thrown and not caught"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Number of fraction digits is out of range" msgstr "Number of fraction digits is out of range"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precision is out of range" msgstr "Precision is out of range"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4052,31 +4056,31 @@ msgstr ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Cyclic __proto__ value" msgstr "Cyclic __proto__ value"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Cannot create property for a non-extensible object" msgstr "Cannot create property for a non-extensible object"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Cannot define property '|': object is not extensible" msgstr "Cannot define property '|': object is not extensible"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' is not a | object" msgstr "'this' is not a | object"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Property cannot have both accessors and a value" msgstr "Property cannot have both accessors and a value"

View file

@ -3908,15 +3908,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown printer driver." #| msgid "Unknown printer driver."
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -3975,66 +3975,70 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Etendiĝon" msgstr "Etendiĝon"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3978,15 +3978,15 @@ msgstr "La compilación condicional está desactivada"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Esperado '@'" msgstr "Esperado '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Error de compilación Microsoft JScript" msgstr "Error de compilación Microsoft JScript"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Error de ejecución Microsoft JScript" msgstr "Error de ejecución Microsoft JScript"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Error desconocido en tiempo de ejecución" msgstr "Error desconocido en tiempo de ejecución"
@ -4043,34 +4043,40 @@ msgid "Syntax error in regular expression"
msgstr "Error de sintaxis en la expresión regular" msgstr "Error de sintaxis en la expresión regular"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Identificador esperado"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Excepción lanzada y no atrapada" msgstr "Excepción lanzada y no atrapada"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a codificar contiene caracteres no válidos" msgstr "URI a codificar contiene caracteres no válidos"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a decodificar es incorrecta" msgstr "URI a decodificar es incorrecta"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Número de dígitos de fracciones fuera de rango" msgstr "Número de dígitos de fracciones fuera de rango"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Pecisión fuera de rango" msgstr "Pecisión fuera de rango"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longitud del array debe ser un entero positivo finito" msgstr "La longitud del array debe ser un entero positivo finito"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto array esperado" msgstr "Objeto array esperado"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4078,35 +4084,35 @@ msgstr ""
"El atributo 'escribible' en el descriptor de propiedad no se puede " "El atributo 'escribible' en el descriptor de propiedad no se puede "
"establecer en 'verdadero' en este objeto" "establecer en 'verdadero' en este objeto"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
#, fuzzy #, fuzzy
#| msgid "Cannot define property '|': object is not extensible" #| msgid "Cannot define property '|': object is not extensible"
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "No se puede definir la propiedad '|': el objeto no es extensible" msgstr "No se puede definir la propiedad '|': el objeto no es extensible"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "No se puede definir la propiedad '|': el objeto no es extensible" msgstr "No se puede definir la propiedad '|': el objeto no es extensible"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "No se puede redefinir la propiedad no configurable '|'" msgstr "No se puede redefinir la propiedad no configurable '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "No se puede modificar la propiedad no modificable '|'" msgstr "No se puede modificar la propiedad no modificable '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'this' is not a Map object" #| msgid "'this' is not a Map object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[this]' no es un objeto Map" msgstr "'[this]' no es un objeto Map"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "La propiedad no puede tener tanto descriptores de acceso como un valor" msgstr "La propiedad no puede tener tanto descriptores de acceso como un valor"

View file

@ -3928,15 +3928,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3994,65 +3994,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "&حذف\tDel" msgstr "&حذف\tDel"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

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

View file

@ -3974,15 +3974,15 @@ msgstr "La compilation conditionnelle est désactivée"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "« @ » attendu" msgstr "« @ » attendu"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Erreur de compilation Microsoft JScript" msgstr "Erreur de compilation Microsoft JScript"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Erreur d'exécution de Microsoft JScript" msgstr "Erreur d'exécution de Microsoft JScript"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Erreur d'exécution inconnue" msgstr "Erreur d'exécution inconnue"
@ -4039,66 +4039,72 @@ msgid "Syntax error in regular expression"
msgstr "Erreur de syntaxe dans l'expression rationnelle" msgstr "Erreur de syntaxe dans l'expression rationnelle"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Identifiant attendu"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Exception levée mais non capturée" msgstr "Exception levée mais non capturée"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI à coder contient des caractères invalides" msgstr "L'URI à coder contient des caractères invalides"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI à décoder est incorrecte" msgstr "L'URI à décoder est incorrecte"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Nombre de décimales hors plage" msgstr "Nombre de décimales hors plage"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Précision hors limites" msgstr "Précision hors limites"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longueur d'un tableau doit être un entier positif" msgstr "La longueur d'un tableau doit être un entier positif"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Objet tableau attendu" msgstr "Objet tableau attendu"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Impossible de redéfinir une propriété qui n'est pas configurable '|'" msgstr "Impossible de redéfinir une propriété qui n'est pas configurable '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Impossible de modifier une propriété qui est protégée en écriture '|'" msgstr "Impossible de modifier une propriété qui est protégée en écriture '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'this' is not a Map object" #| msgid "'this' is not a Map object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "« this » n'est pas un objet de type Map" msgstr "« this » n'est pas un objet de type Map"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "La propriété ne peut à la fois avoir une valeur et des accesseurs" msgstr "La propriété ne peut à la fois avoir une valeur et des accesseurs"

View file

@ -3991,15 +3991,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4059,68 +4059,74 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected an operand.\n"
msgid "Unexpected quantifier"
msgstr "Expected an operand.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "טווח ההדפסה" msgstr "טווח ההדפסה"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'%s' is not a valid port name" #| msgid "'%s' is not a valid port name"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'%s' אינו שם תקני לפתחה" msgstr "'%s' אינו שם תקני לפתחה"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3858,15 +3858,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3923,65 +3923,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "फ़ॉन्ट (&F)..." msgstr "फ़ॉन्ट (&F)..."
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4004,15 +4004,15 @@ msgstr "Kondicionalna kompilacija je isključena"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Očekivano ';'" msgstr "Očekivano ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4075,66 +4075,72 @@ msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu" msgstr "Sintaksna greška u regularnom izrazu"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected an operand.\n"
msgid "Unexpected quantifier"
msgstr "Očekivan operand.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje sadrži neispravne znakove" msgstr "URI za kodiranje sadrži neispravne znakove"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI za dekodiranje je neispravan" msgstr "URI za dekodiranje je neispravan"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Broj decimalnih znamenki je izvan dosega" msgstr "Broj decimalnih znamenki je izvan dosega"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Preciznost je izvan dosega" msgstr "Preciznost je izvan dosega"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Duljina niza treba biti konačan prirodan broj" msgstr "Duljina niza treba biti konačan prirodan broj"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekivan niz objekata" msgstr "Očekivan niz objekata"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' nije vremenski objekt" msgstr "'[object]' nije vremenski objekt"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4050,15 +4050,15 @@ msgstr "Feltételes fordítás kikapcsolva"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Hiányzó ';'" msgstr "Hiányzó ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4121,70 +4121,76 @@ msgid "Syntax error in regular expression"
msgstr "Szinttaktikai hiba a reguláris kifejezésben" msgstr "Szinttaktikai hiba a reguláris kifejezésben"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "Tárgy kulcs azonosító"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
#| msgid "Enumeration value out of range.\n" #| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Felsorolási érték határon kívül esik.\n" msgstr "Felsorolási érték határon kívül esik.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Érvénytelen alszkript" msgstr "Érvénytelen alszkript"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie" msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Tömb objektumot vártam" msgstr "Tömb objektumot vártam"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'Az [object]' nem egy date (dátum) objektum" msgstr "'Az [object]' nem egy date (dátum) objektum"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4058,15 +4058,15 @@ msgstr "Compilazione condizionale disattivata"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Richiesto ';'" msgstr "Richiesto ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4129,70 +4129,76 @@ msgid "Syntax error in regular expression"
msgstr "Errore di sintassi nell'espressione regolare" msgstr "Errore di sintassi nell'espressione regolare"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "Identificatore della chiave del soggetto"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI da codificare contiene caratteri non validi" msgstr "L'URI da codificare contiene caratteri non validi"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI da decodificare non è corretto" msgstr "L'URI da decodificare non è corretto"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
#| msgid "Enumeration value out of range.\n" #| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Valore dell'enumerazione fuori portata.\n" msgstr "Valore dell'enumerazione fuori portata.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Sottoscript fuori portata" msgstr "Sottoscript fuori portata"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La lunghezza dell'array deve essere un intero finito e positivo" msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Previsto un oggetto array" msgstr "Previsto un oggetto array"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[oggetto]' non è un oggetto data" msgstr "'[oggetto]' non è un oggetto data"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3948,15 +3948,15 @@ msgstr "条件コンパイルはオフにされています"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "'@'を期待していました" msgstr "'@'を期待していました"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript コンパイル エラー" msgstr "Microsoft JScript コンパイル エラー"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript 実行時エラー" msgstr "Microsoft JScript 実行時エラー"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "未知の実行時エラー" msgstr "未知の実行時エラー"
@ -4013,34 +4013,40 @@ msgid "Syntax error in regular expression"
msgstr "正規表現に構文誤りがあります" msgstr "正規表現に構文誤りがあります"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "識別子を期待していました"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "例外が送出されましたが捕捉されませんでした" msgstr "例外が送出されましたが捕捉されませんでした"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "エンコードされる URI に使用できない文字が含まれています" msgstr "エンコードされる URI に使用できない文字が含まれています"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "デコードされる URI が正しくありません" msgstr "デコードされる URI が正しくありません"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "小数点以下の桁数が範囲外です" msgstr "小数点以下の桁数が範囲外です"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "精度指定が範囲外です" msgstr "精度指定が範囲外です"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "配列の長さは有限の正整数である必要があります" msgstr "配列の長さは有限の正整数である必要があります"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "配列オブジェクトを期待していました" msgstr "配列オブジェクトを期待していました"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4048,31 +4054,31 @@ msgstr ""
"このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で" "このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で"
"きません" "きません"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "循環した __proto__ 値" msgstr "循環した __proto__ 値"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "拡張可能ではないオブジェクトにプロパティを作成できません" msgstr "拡張可能ではないオブジェクトにプロパティを作成できません"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "プロパティ '|' を定義できません: オブジェクトは拡張可能ではありません" msgstr "プロパティ '|' を定義できません: オブジェクトは拡張可能ではありません"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "変更不可のプロパティ '|' は再定義できません" msgstr "変更不可のプロパティ '|' は再定義できません"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "書換不可のプロパティ '|' は変更できません" msgstr "書換不可のプロパティ '|' は変更できません"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' は | オブジェクトではありません" msgstr "'this' は | オブジェクトではありません"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "プロパティはアクセサーと値の両方になることはできません" msgstr "プロパティはアクセサーと値の両方になることはできません"

View file

@ -3938,15 +3938,15 @@ msgstr "조건부 컴파일이 해제되었습니다"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "'@'가 필요합니다" msgstr "'@'가 필요합니다"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript 컴파일 오류" msgstr "Microsoft JScript 컴파일 오류"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript 런타임 오류" msgstr "Microsoft JScript 런타임 오류"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "알 수 없는 런타임 오류" msgstr "알 수 없는 런타임 오류"
@ -4003,65 +4003,71 @@ msgid "Syntax error in regular expression"
msgstr "정규식에 구문 오류가 있습니다" msgstr "정규식에 구문 오류가 있습니다"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "필요한 식별자"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "예외가 발생했지만 catch할 수 없습니다" msgstr "예외가 발생했지만 catch할 수 없습니다"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "인코딩할 URI에 잘못된 문자가 들어 있습니다" msgstr "인코딩할 URI에 잘못된 문자가 들어 있습니다"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "디코딩할 URI가 잘못되었습니다" msgstr "디코딩할 URI가 잘못되었습니다"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "분수 자리수 값이 범위를 벗어났습니다" msgstr "분수 자리수 값이 범위를 벗어났습니다"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "정밀도가 범위를 벗어났습니다" msgstr "정밀도가 범위를 벗어났습니다"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "배열의 길이는 유한한 양의 정수이어야 합니다" msgstr "배열의 길이는 유한한 양의 정수이어야 합니다"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "배열 개체가 필요합니다" msgstr "배열 개체가 필요합니다"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
"속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다" "속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "순환하는 __proto__ 값" msgstr "순환하는 __proto__ 값"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "확장 가능하지 않은 개체에 대한 속성을 만들 수 없습니다" msgstr "확장 가능하지 않은 개체에 대한 속성을 만들 수 없습니다"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "확장 가능하지 않은 속성 '|'을(를) 정의할 수 없습니다" msgstr "확장 가능하지 않은 속성 '|'을(를) 정의할 수 없습니다"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "구성 가능하지 않은 속성 '|'을(를) 재정의할 수 없습니다" msgstr "구성 가능하지 않은 속성 '|'을(를) 재정의할 수 없습니다"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "쓰기 가능하지 않은 속성 '|'을(를) 수정할 수 없습니다" msgstr "쓰기 가능하지 않은 속성 '|'을(를) 수정할 수 없습니다"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this'는 '|' 개체가 아닙니다" msgstr "'this'는 '|' 개체가 아닙니다"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다" msgstr "속성에 접근자와 값을 둘 다 지정할 수는 없습니다"

View file

@ -3955,15 +3955,15 @@ msgstr "Sąlyginis kompiliavimas išjungtas"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Tikėtasi „@“" msgstr "Tikėtasi „@“"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript kompiliavimo klaida" msgstr "Microsoft JScript kompiliavimo klaida"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript vykdymo klaida" msgstr "Microsoft JScript vykdymo klaida"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Nežinoma vykdymo klaida" msgstr "Nežinoma vykdymo klaida"
@ -4020,34 +4020,40 @@ msgid "Syntax error in regular expression"
msgstr "Sintaksės klaida reguliariajame reiškinyje" msgstr "Sintaksės klaida reguliariajame reiškinyje"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Tikėtasi identifikatoriaus"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Išimtinė situacija sugeneruota ir neapdorota" msgstr "Išimtinė situacija sugeneruota ir neapdorota"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Koduotiname URI yra netinkamų simbolių" msgstr "Koduotiname URI yra netinkamų simbolių"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Dekoduojamas URI neteisingas" msgstr "Dekoduojamas URI neteisingas"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius" msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Tikslumas nepatenka į rėžius" msgstr "Tikslumas nepatenka į rėžius"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Tikėtasi masyvo objekto" msgstr "Tikėtasi masyvo objekto"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4055,31 +4061,31 @@ msgstr ""
"savybės aprašo atributas „writable“ negali būti nustatytas į „tiesa“ šiam " "savybės aprašo atributas „writable“ negali būti nustatytas į „tiesa“ šiam "
"objektui" "objektui"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Ciklinė __proto__ reikšmė" msgstr "Ciklinė __proto__ reikšmė"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Negalima sukurti savybės neišplečiamam objektui" msgstr "Negalima sukurti savybės neišplečiamam objektui"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Negalima apibrėžti savybės „|“: objektas nėra išplečiamas" msgstr "Negalima apibrėžti savybės „|“: objektas nėra išplečiamas"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“" msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Negalima modifikuoti nerašomos savybės „|“" msgstr "Negalima modifikuoti nerašomos savybės „|“"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "„Šis“ nėra | objektas" msgstr "„Šis“ nėra | objektas"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės" msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės"

View file

@ -3860,15 +3860,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3925,65 +3925,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "_അക്ഷരസഞ്ചയ..." msgstr "_അക്ഷരസഞ്ചയ..."
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3974,15 +3974,15 @@ msgstr "Avhengig kompilering er skrudd av"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Forventet '@'" msgstr "Forventet '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript kompileringsfeil" msgstr "Microsoft JScript kompileringsfeil"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4045,66 +4045,72 @@ msgid "Syntax error in regular expression"
msgstr "Syntaksfeil i regulært uttrykk" msgstr "Syntaksfeil i regulært uttrykk"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Forventet identifiserer"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI'en som skal kodes inneholder ugyldige tegn" msgstr "URI'en som skal kodes inneholder ugyldige tegn"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI'en som skal dekodes er feil" msgstr "URI'en som skal dekodes er feil"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Antall brøktegn er utenfor rekken av gyldige verdier" msgstr "Antall brøktegn er utenfor rekken av gyldige verdier"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Presisjonen er utenfor rekken av gyldige verdier" msgstr "Presisjonen er utenfor rekken av gyldige verdier"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Rekkens lengde må være et endelig, positivt tall" msgstr "Rekkens lengde må være et endelig, positivt tall"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Forventet rekke-objekt" msgstr "Forventet rekke-objekt"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' er ikke et dataobjekt" msgstr "'[object]' er ikke et dataobjekt"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3965,15 +3965,15 @@ msgstr "Conditionele compilatie is uitgeschakeld"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Verwacht '@'" msgstr "Verwacht '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilatie fout" msgstr "Microsoft JScript compilatie fout"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime-fout" msgstr "Microsoft JScript runtime-fout"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Onbekende runtime-fout" msgstr "Onbekende runtime-fout"
@ -4030,34 +4030,40 @@ msgid "Syntax error in regular expression"
msgstr "Formuleringsfout in reguliere expressie" msgstr "Formuleringsfout in reguliere expressie"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Verwachte ID"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Uitzondering geactiveerd maar niet afgehandeld" msgstr "Uitzondering geactiveerd maar niet afgehandeld"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "De te coderen URI bevat ongeldige tekens" msgstr "De te coderen URI bevat ongeldige tekens"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "De te decoderen URI is niet correct" msgstr "De te decoderen URI is niet correct"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Aantal getallen achter de komma buiten bereik" msgstr "Aantal getallen achter de komma buiten bereik"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisie is buiten bereik" msgstr "Precisie is buiten bereik"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array lengte moet een eindig, positief geheel getal zijn" msgstr "Array lengte moet een eindig, positief geheel getal zijn"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object verwacht" msgstr "Array object verwacht"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4065,31 +4071,31 @@ msgstr ""
"'writable' kenmerk van de eigenschapsdescriptor kan niet op 'true' worden " "'writable' kenmerk van de eigenschapsdescriptor kan niet op 'true' worden "
"ingesteld voor dit object" "ingesteld voor dit object"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Cyclische __proto__ waarde" msgstr "Cyclische __proto__ waarde"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Kan geen eigenschap maken voor een niet-uitbreidbaar object" msgstr "Kan geen eigenschap maken voor een niet-uitbreidbaar object"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Kan de eigenschap '|' niet definiëren: object is niet uitbreidbaar" msgstr "Kan de eigenschap '|' niet definiëren: object is niet uitbreidbaar"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Kan onconfigureerbare eigenschap '|' niet herdefiniëren" msgstr "Kan onconfigureerbare eigenschap '|' niet herdefiniëren"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Kan onschrijfbare eigenschap '|' niet veranderen" msgstr "Kan onschrijfbare eigenschap '|' niet veranderen"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' is geen | object" msgstr "'this' is geen | object"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Eigenschap kan niet zowel accessors als een waarde hebben" msgstr "Eigenschap kan niet zowel accessors als een waarde hebben"

View file

@ -3858,15 +3858,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3923,65 +3923,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ଅକ୍ଷରରୂପ (&F)..." msgstr "ଅକ୍ଷରରୂପ (&F)..."
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3858,15 +3858,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3923,65 +3923,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ਫੌਂਟ(&F)..." msgstr "ਫੌਂਟ(&F)..."
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3977,15 +3977,15 @@ msgstr "Warunkowa kompilacja jest wyłączona"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Oczekiwano '@'" msgstr "Oczekiwano '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Błąd kompilacji Microsoft JScript" msgstr "Błąd kompilacji Microsoft JScript"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Błąd biblioteki uruchomieniowej Microsoft JScript" msgstr "Błąd biblioteki uruchomieniowej Microsoft JScript"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Nieznany błąd biblioteki uruchomieniowej" msgstr "Nieznany błąd biblioteki uruchomieniowej"
@ -4042,34 +4042,40 @@ msgid "Syntax error in regular expression"
msgstr "Błąd składni w regularnym wyrażeniu" msgstr "Błąd składni w regularnym wyrażeniu"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Oczekiwano identyfikatora"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Rzucono wyjątek i go nie złapano" msgstr "Rzucono wyjątek i go nie złapano"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Kodowane URI zawiera niewłaściwe znaki" msgstr "Kodowane URI zawiera niewłaściwe znaki"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI do dekodowania jest niepoprawny" msgstr "URI do dekodowania jest niepoprawny"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Ilość cyfr znaczących jest poza zakresem" msgstr "Ilość cyfr znaczących jest poza zakresem"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precyzja jest poza poza zakresem" msgstr "Precyzja jest poza poza zakresem"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Oczekiwany obiekt tablicowy" msgstr "Oczekiwany obiekt tablicowy"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4077,35 +4083,35 @@ msgstr ""
"nie można ustawić atrybutu 'writable' na opisie własności na 'true' na tym " "nie można ustawić atrybutu 'writable' na opisie własności na 'true' na tym "
"obiekcie" "obiekcie"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
#, fuzzy #, fuzzy
#| msgid "Cannot define property '|': object is not extensible" #| msgid "Cannot define property '|': object is not extensible"
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Nie można określić własności '|': obiekt jest nierozciągalny" msgstr "Nie można określić własności '|': obiekt jest nierozciągalny"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Nie można określić własności '|': obiekt jest nierozciągalny" msgstr "Nie można określić własności '|': obiekt jest nierozciągalny"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Nie można określić nieustawialnej własności '|'" msgstr "Nie można określić nieustawialnej własności '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Nie można zmienić niezapisywalnej własności '|'" msgstr "Nie można zmienić niezapisywalnej własności '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'this' is not a Map object" #| msgid "'this' is not a Map object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' nie jest obiektem Map" msgstr "'this' nie jest obiektem Map"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Własność nie może mieć zarówno akcesorów i wartości" msgstr "Własność nie może mieć zarówno akcesorów i wartości"

View file

@ -3973,15 +3973,15 @@ msgstr "Compilação condicional está desligada"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Esperado '@'" msgstr "Esperado '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript erro de compilação" msgstr "Microsoft JScript erro de compilação"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript erro de execução" msgstr "Microsoft JScript erro de execução"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Erro de execução desconhecido" msgstr "Erro de execução desconhecido"
@ -4038,34 +4038,40 @@ msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Identificador esperado"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Exceção lancada e não capturada" msgstr "Exceção lancada e não capturada"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a ser decodificado está incorreto" msgstr "URI a ser decodificado está incorreto"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Número de dígitos fracionários fora do limite" msgstr "Número de dígitos fracionários fora do limite"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisão fora do limite" msgstr "Precisão fora do limite"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto tipo vetor esperado" msgstr "Objeto tipo vetor esperado"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4073,35 +4079,35 @@ msgstr ""
"atributo 'gravável' no descritor de propriedades não pode ser setado para " "atributo 'gravável' no descritor de propriedades não pode ser setado para "
"'verdade' neste objeto" "'verdade' neste objeto"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
#, fuzzy #, fuzzy
#| msgid "Cannot define property '|': object is not extensible" #| msgid "Cannot define property '|': object is not extensible"
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Não posso definir propriedade '|': objeto não é extensível" msgstr "Não posso definir propriedade '|': objeto não é extensível"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Não posso definir propriedade '|': objeto não é extensível" msgstr "Não posso definir propriedade '|': objeto não é extensível"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Não pode redefinir propriedade não configurável '|'" msgstr "Não pode redefinir propriedade não configurável '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Não pode modificar propriedade não gravável '|'" msgstr "Não pode modificar propriedade não gravável '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'this' is not a Map object" #| msgid "'this' is not a Map object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' não é um objeto Map" msgstr "'this' não é um objeto Map"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Propriedade não pode ter ambos acessores e valor" msgstr "Propriedade não pode ter ambos acessores e valor"

View file

@ -4022,15 +4022,15 @@ msgstr "A compilação condicional está desactivada"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Esperado '@'" msgstr "Esperado '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4093,66 +4093,72 @@ msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Identificador esperado"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI a ser descodificado é incorreto" msgstr "URI a ser descodificado é incorreto"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Número de dígitos fraccionários está fora de alcance" msgstr "Número de dígitos fraccionários está fora de alcance"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisão fora de alcance" msgstr "Precisão fora de alcance"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vector tem de ser um inteiro finito positivo" msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Objecto Array esperado" msgstr "Objecto Array esperado"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' não é um objecto de data" msgstr "'[object]' não é um objecto de data"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3888,15 +3888,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3953,65 +3953,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "&Stampar tema" msgstr "&Stampar tema"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3975,15 +3975,15 @@ msgstr "Compilarea condițională este dezactivată"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Se așteaptă „@”" msgstr "Se așteaptă „@”"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4046,68 +4046,74 @@ msgid "Syntax error in regular expression"
msgstr "Eroare de sintaxă în expresia regulată" msgstr "Eroare de sintaxă în expresia regulată"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Se așteaptă un identificator"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI care trebuie codificat conține caractere nevalide" msgstr "URI care trebuie codificat conține caractere nevalide"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI care trebuie decodat este incorect" msgstr "URI care trebuie decodat este incorect"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Interval tipărire" msgstr "Interval tipărire"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Se așteaptă un obiect matrice" msgstr "Se așteaptă un obiect matrice"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "„[obiect]” nu este un obiect de tip dată" msgstr "„[obiect]” nu este un obiect de tip dată"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

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

View file

@ -3907,15 +3907,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "අපේක්ෂා කරේ '='" msgstr "අපේක්ෂා කරේ '='"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -3978,66 +3978,72 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "අපේක්ෂා කරේ අනන්යකාරකයක්"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ" msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'%s' is not a valid port name" #| msgid "'%s' is not a valid port name"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'%s' වලංගු තොට නමක් නෙමෙයි." msgstr "'%s' වලංගු තොට නමක් නෙමෙයි."
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3944,15 +3944,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4013,66 +4013,72 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Unexpected network error.\n"
msgid "Unexpected quantifier"
msgstr "Neočakávaná sieťová chyba.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Rozsah tlače" msgstr "Rozsah tlače"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4052,15 +4052,15 @@ msgstr "Pogojno kodno prevajanje je izklopljeno"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Pričakovan je bil ';'" msgstr "Pričakovan je bil ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4123,70 +4123,76 @@ msgid "Syntax error in regular expression"
msgstr "Napaka skladnje v logičnem izrazu" msgstr "Napaka skladnje v logičnem izrazu"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "Določilo ključa zahteve"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje vsebuje neveljavne znake" msgstr "URI za kodiranje vsebuje neveljavne znake"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI za odkodiranje je nepravilen" msgstr "URI za odkodiranje je nepravilen"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
#| msgid "Enumeration value out of range.\n" #| msgid "Enumeration value out of range.\n"
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Vrednost oštevilčenja je izven obsega.\n" msgstr "Vrednost oštevilčenja je izven obsega.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Podskript je izven obsega" msgstr "Podskript je izven obsega"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Dolžina polja mora bit pozitivno celo število" msgstr "Dolžina polja mora bit pozitivno celo število"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Pričakovan je bil predmet polja" msgstr "Pričakovan je bil predmet polja"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' ni predmet datuma" msgstr "'[object]' ni predmet datuma"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4027,15 +4027,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Очекивано ';'" msgstr "Очекивано ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Непознат извор" msgstr "Непознат извор"
@ -4098,70 +4098,75 @@ msgid "Syntax error in regular expression"
msgstr "Синтаксна грешка у регуларном изразу" msgstr "Синтаксна грешка у регуларном изразу"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
msgid "Unexpected quantifier"
msgstr "Грешка у синтакси.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Потпис је ван домета.\n" msgstr "Потпис је ван домета.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Потпис је ван домета" msgstr "Потпис је ван домета"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Низ дужине мора бити коначан позитиван цео број" msgstr "Низ дужине мора бити коначан позитиван цео број"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Очекивани низ објекта" msgstr "Очекивани низ објекта"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "„[object]“ није временски објекат" msgstr "„[object]“ није временски објекат"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4113,15 +4113,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Očekivano ';'" msgstr "Očekivano ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Nepoznat izvor" msgstr "Nepoznat izvor"
@ -4184,70 +4184,75 @@ msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu" msgstr "Sintaksna greška u regularnom izrazu"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
msgid "Unexpected quantifier"
msgstr "Greška u sintaksi.\n"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
#, fuzzy #, fuzzy
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Potpis je van dometa.\n" msgstr "Potpis je van dometa.\n"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Subscript out of range" #| msgid "Subscript out of range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Potpis je van dometa" msgstr "Potpis je van dometa"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Niz dužine mora biti konačan pozitivan ceo broj" msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekivani niz objekta" msgstr "Očekivani niz objekta"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "„[object]“ nije vremenski objekat" msgstr "„[object]“ nije vremenski objekat"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -4001,15 +4001,15 @@ msgstr "Villkorlig kompilering är avslagen"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "'@' förväntades" msgstr "'@' förväntades"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4072,66 +4072,72 @@ msgid "Syntax error in regular expression"
msgstr "Syntaxfel i reguljärt uttryck" msgstr "Syntaxfel i reguljärt uttryck"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Identifierare förväntades"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Den URI som ska kodas innehåller ogiltiga tecken" msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Den URI som ska avkodas är felaktig" msgstr "Den URI som ska avkodas är felaktig"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Antal decimaler är utanför giltigt intervall" msgstr "Antal decimaler är utanför giltigt intervall"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precision är utanför giltigt intervall" msgstr "Precision är utanför giltigt intervall"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array-längd måste vara ett positivt ändligt heltal" msgstr "Array-längd måste vara ett positivt ändligt heltal"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Array-objekt förväntades" msgstr "Array-objekt förväntades"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'[object]' is not a date object" #| msgid "'[object]' is not a date object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'[object]' är inte ett datumobjekt" msgstr "'[object]' är inte ett datumobjekt"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3874,15 +3874,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3939,64 +3939,68 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:71
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:72
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:73
msgid "Array object expected"
msgstr ""
#: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3858,15 +3858,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3923,65 +3923,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ఫాంట్... (&F)" msgstr "ఫాంట్... (&F)"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3920,15 +3920,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown printer driver." #| msgid "Unknown printer driver."
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -3988,66 +3988,70 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ย่อ" msgstr "ย่อ"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3957,15 +3957,15 @@ msgstr "Şartlı derleme kapatıldı"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Beklenen '@'" msgstr "Beklenen '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript derleme hatası" msgstr "Microsoft JScript derleme hatası"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript çalışma zamanı hatası" msgstr "Microsoft JScript çalışma zamanı hatası"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "Bilinmeyen çalışma zamanı hatası" msgstr "Bilinmeyen çalışma zamanı hatası"
@ -4022,34 +4022,40 @@ msgid "Syntax error in regular expression"
msgstr "Düzenli ifadede sözdizimi hatası" msgstr "Düzenli ifadede sözdizimi hatası"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "Beklenen kimlik"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Hata verildi ve yakalanmadı" msgstr "Hata verildi ve yakalanmadı"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Kodlanacak URI geçersiz karakterler içeriyor" msgstr "Kodlanacak URI geçersiz karakterler içeriyor"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Kodu çözülecek URI geçersiz" msgstr "Kodu çözülecek URI geçersiz"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Kesirli rakam sayısı aralık dışı" msgstr "Kesirli rakam sayısı aralık dışı"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Aralık erişim dışında" msgstr "Aralık erişim dışında"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Dizi adı pozitif sonlu bir sayı olmalıdır" msgstr "Dizi adı pozitif sonlu bir sayı olmalıdır"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Beklenen dizi nesnesi" msgstr "Beklenen dizi nesnesi"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
@ -4057,31 +4063,31 @@ msgstr ""
"Nesne açıklayıcısındaki 'yazılabilir' özelliği bu nesnede 'doğru' olarak " "Nesne açıklayıcısındaki 'yazılabilir' özelliği bu nesnede 'doğru' olarak "
"ayarlananmıyor" "ayarlananmıyor"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "Döngüsel __protokol__ değeri" msgstr "Döngüsel __protokol__ değeri"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Genişletilemez bir nesne için özellik oluşturulamaz" msgstr "Genişletilemez bir nesne için özellik oluşturulamaz"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "'|' özelliği tanımlanamıyor: nesne genişletilebilir değil" msgstr "'|' özelliği tanımlanamıyor: nesne genişletilebilir değil"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor" msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "'|' yazılamayan nesnesi değiştirilemiyor" msgstr "'|' yazılamayan nesnesi değiştirilemiyor"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'bu' bir | nesne değil" msgstr "'bu' bir | nesne değil"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Nesnenin erişimcisi ve değeri birden olamaz" msgstr "Nesnenin erişimcisi ve değeri birden olamaz"

View file

@ -3972,15 +3972,15 @@ msgstr "Умовна компіляція вимкнена"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "Очікується ';'" msgstr "Очікується ';'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
#, fuzzy #, fuzzy
#| msgid "Unknown error" #| msgid "Unknown error"
msgid "Unknown runtime error" msgid "Unknown runtime error"
@ -4039,69 +4039,75 @@ msgid "Syntax error in regular expression"
msgstr "Синтаксична помилка в регулярному виразі" msgstr "Синтаксична помилка в регулярному виразі"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Subject Key Identifier"
msgid "Unexpected quantifier"
msgstr "Ідентифікатор ключа суб’єкта"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "Виняток викликано, але не перехоплено" msgstr "Виняток викликано, але не перехоплено"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, що буде закодований, містить неприпустимі символи" msgstr "URI, що буде закодований, містить неприпустимі символи"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI, що буде закодований, некоректний" msgstr "URI, що буде закодований, некоректний"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Кількість знаків після коми поза діапазоном" msgstr "Кількість знаків після коми поза діапазоном"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Точність поза діапазоном" msgstr "Точність поза діапазоном"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "Очікується об'єкт Array" msgstr "Очікується об'єкт Array"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
"Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта" "Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
#, fuzzy #, fuzzy
#| msgid "Cannot define property '|': object is not extensible" #| msgid "Cannot define property '|': object is not extensible"
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "Неможливо визначити властивість '|': об'єкт не є розширюваним" msgstr "Неможливо визначити властивість '|': об'єкт не є розширюваним"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "Неможливо визначити властивість '|': об'єкт не є розширюваним" msgstr "Неможливо визначити властивість '|': об'єкт не є розширюваним"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'" msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Неможливо змінити властивість, яка не підлягає запису '|'" msgstr "Неможливо змінити властивість, яка не підлягає запису '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
#, fuzzy #, fuzzy
#| msgid "'this' is not a Map object" #| msgid "'this' is not a Map object"
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'це' не є Map об'єкта" msgstr "'це' не є Map об'єкта"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Властивість не може одночасно мати доступ і значення" msgstr "Властивість не може одночасно мати доступ і значення"

View file

@ -3924,15 +3924,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3990,65 +3990,69 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range"
msgstr ""
#: dlls/jscript/jscript.rc:71
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Cwé rexhe" msgstr "Cwé rexhe"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3813,15 +3813,15 @@ msgstr ""
msgid "Expected '@'" msgid "Expected '@'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "" msgstr ""
@ -3878,64 +3878,68 @@ msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
msgid "Exception thrown and not caught" msgid "Unexpected quantifier"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be encoded contains invalid characters"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:67
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:69
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:70
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:71
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:72
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:73
msgid "Array object expected"
msgstr ""
#: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "" msgstr ""
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

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

View file

@ -3912,15 +3912,15 @@ msgstr "條件編譯已關閉"
msgid "Expected '@'" msgid "Expected '@'"
msgstr "預期為 '@'" msgstr "預期為 '@'"
#: dlls/jscript/jscript.rc:82 #: dlls/jscript/jscript.rc:83
msgid "Microsoft JScript compilation error" msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript 編譯錯誤" msgstr "Microsoft JScript 編譯錯誤"
#: dlls/jscript/jscript.rc:83 #: dlls/jscript/jscript.rc:84
msgid "Microsoft JScript runtime error" msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript 執行期錯誤" msgstr "Microsoft JScript 執行期錯誤"
#: dlls/jscript/jscript.rc:84 dlls/vbscript/vbscript.rc:64 #: dlls/jscript/jscript.rc:85 dlls/vbscript/vbscript.rc:64
msgid "Unknown runtime error" msgid "Unknown runtime error"
msgstr "不明執行期錯誤" msgstr "不明執行期錯誤"
@ -3977,64 +3977,70 @@ msgid "Syntax error in regular expression"
msgstr "正規表示式語法發生錯誤" msgstr "正規表示式語法發生錯誤"
#: dlls/jscript/jscript.rc:66 #: dlls/jscript/jscript.rc:66
#, fuzzy
#| msgid "Expected identifier"
msgid "Unexpected quantifier"
msgstr "預期為識別碼"
#: dlls/jscript/jscript.rc:67
msgid "Exception thrown and not caught" msgid "Exception thrown and not caught"
msgstr "發生異常且未被捕捉" msgstr "發生異常且未被捕捉"
#: dlls/jscript/jscript.rc:68 #: dlls/jscript/jscript.rc:69
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "要編碼的 URI 內含無效字元" msgstr "要編碼的 URI 內含無效字元"
#: dlls/jscript/jscript.rc:67 #: dlls/jscript/jscript.rc:68
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "要解碼的 URI 不正確" msgstr "要解碼的 URI 不正確"
#: dlls/jscript/jscript.rc:69 #: dlls/jscript/jscript.rc:70
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "小數位數超出範圍" msgstr "小數位數超出範圍"
#: dlls/jscript/jscript.rc:70 #: dlls/jscript/jscript.rc:71
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "精確度超出範圍" msgstr "精確度超出範圍"
#: dlls/jscript/jscript.rc:71 #: dlls/jscript/jscript.rc:72
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "陣列長度必須是有限正整數" msgstr "陣列長度必須是有限正整數"
#: dlls/jscript/jscript.rc:72 #: dlls/jscript/jscript.rc:73
msgid "Array object expected" msgid "Array object expected"
msgstr "預期為陣列物件" msgstr "預期為陣列物件"
#: dlls/jscript/jscript.rc:73 #: dlls/jscript/jscript.rc:74
msgid "" msgid ""
"'writable' attribute on the property descriptor cannot be set to 'true' on " "'writable' attribute on the property descriptor cannot be set to 'true' on "
"this object" "this object"
msgstr "無法在這個物件更改屬性描述符中的 'writable' 屬性為 'true'" msgstr "無法在這個物件更改屬性描述符中的 'writable' 屬性為 'true'"
#: dlls/jscript/jscript.rc:74 #: dlls/jscript/jscript.rc:75
msgid "Cyclic __proto__ value" msgid "Cyclic __proto__ value"
msgstr "循環的 __proto__ 值" msgstr "循環的 __proto__ 值"
#: dlls/jscript/jscript.rc:75 #: dlls/jscript/jscript.rc:76
msgid "Cannot create property for a non-extensible object" msgid "Cannot create property for a non-extensible object"
msgstr "無法為不可擴展的物件建立屬性" msgstr "無法為不可擴展的物件建立屬性"
#: dlls/jscript/jscript.rc:76 #: dlls/jscript/jscript.rc:77
msgid "Cannot define property '|': object is not extensible" msgid "Cannot define property '|': object is not extensible"
msgstr "無法定義屬性 '|': 物件不能擴展" msgstr "無法定義屬性 '|': 物件不能擴展"
#: dlls/jscript/jscript.rc:77 #: dlls/jscript/jscript.rc:78
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "無法重新定義不可設定的屬性 '|'" msgstr "無法重新定義不可設定的屬性 '|'"
#: dlls/jscript/jscript.rc:78 #: dlls/jscript/jscript.rc:79
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "無法修改不可寫入的屬性 '|'" msgstr "無法修改不可寫入的屬性 '|'"
#: dlls/jscript/jscript.rc:79 #: dlls/jscript/jscript.rc:80
msgid "'this' is not a | object" msgid "'this' is not a | object"
msgstr "'this' 不是一個 | 物件" msgstr "'this' 不是一個 | 物件"
#: dlls/jscript/jscript.rc:80 #: dlls/jscript/jscript.rc:81
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "屬性不可同時有存取子和值" msgstr "屬性不可同時有存取子和值"