jscript: Store error code in jsexcept_t.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2020-01-30 15:50:33 +01:00 committed by Alexandre Julliard
parent 3c9b7011ff
commit 9855c248f8
55 changed files with 751 additions and 528 deletions

View file

@ -858,10 +858,29 @@ static HRESULT interp_case(script_ctx_t *ctx)
static void set_error_value(script_ctx_t *ctx, jsval_t value) static void set_error_value(script_ctx_t *ctx, jsval_t value)
{ {
jsexcept_t *ei = ctx->ei; jsexcept_t *ei = ctx->ei;
jsdisp_t *obj;
reset_ei(ei); reset_ei(ei);
ei->error = JS_E_EXCEPTION_THROWN;
ei->valid_value = TRUE; ei->valid_value = TRUE;
ei->value = value; ei->value = value;
if(is_object_instance(value) && get_object(value) && (obj = to_jsdisp(get_object(value)))) {
UINT32 number;
jsval_t v;
HRESULT hres;
/* FIXME: We should check if object is an error instance */
hres = jsdisp_propget_name(obj, L"number", &v);
if(SUCCEEDED(hres)) {
hres = to_uint32(ctx, v, &number);
if(SUCCEEDED(hres))
ei->error = FAILED(number) ? number : E_FAIL;
jsval_release(v);
}
}
} }
/* ECMA-262 3rd Edition 12.13 */ /* ECMA-262 3rd Edition 12.13 */

View file

@ -222,6 +222,8 @@ static inline scope_chain_t *scope_addref(scope_chain_t *scope)
} }
struct _jsexcept_t { struct _jsexcept_t {
HRESULT error;
BOOL valid_value; BOOL valid_value;
jsval_t value; jsval_t value;

View file

@ -103,6 +103,7 @@ static inline BOOL is_started(script_ctx_t *ctx)
void reset_ei(jsexcept_t *ei) void reset_ei(jsexcept_t *ei)
{ {
ei->error = S_OK;
if(ei->valid_value) { if(ei->valid_value) {
jsval_release(ei->value); jsval_release(ei->value);
ei->valid_value = FALSE; ei->valid_value = FALSE;
@ -124,6 +125,8 @@ HRESULT leave_script(script_ctx_t *ctx, HRESULT result)
TRACE("ctx %p ei %p prev %p\n", ctx, ei, ei->prev); TRACE("ctx %p ei %p prev %p\n", ctx, ei, ei->prev);
ctx->ei = ei->prev; ctx->ei = ei->prev;
if(result == DISP_E_EXCEPTION)
result = ei->error;
if(FAILED(result)) if(FAILED(result))
WARN("%08x\n", result); WARN("%08x\n", result);
reset_ei(ei); reset_ei(ei);

View file

@ -558,6 +558,7 @@ static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags)
#define JS_E_JSCRIPT_EXPECTED MAKE_JSERROR(IDS_JSCRIPT_EXPECTED) #define JS_E_JSCRIPT_EXPECTED MAKE_JSERROR(IDS_JSCRIPT_EXPECTED)
#define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_NOT_ENUMERATOR) #define JS_E_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_NOT_ENUMERATOR)
#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_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)
#define JS_E_FRACTION_DIGITS_OUT_OF_RANGE MAKE_JSERROR(IDS_FRACTION_DIGITS_OUT_OF_RANGE) #define JS_E_FRACTION_DIGITS_OUT_OF_RANGE MAKE_JSERROR(IDS_FRACTION_DIGITS_OUT_OF_RANGE)

View file

@ -59,6 +59,7 @@ STRINGTABLE
IDS_NOT_VBARRAY "VBArray object expected" IDS_NOT_VBARRAY "VBArray object expected"
IDS_JSCRIPT_EXPECTED "JScript object expected" IDS_JSCRIPT_EXPECTED "JScript object expected"
IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression" IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression"
IDS_EXCEPTION_THROWN "Exception thrown and not caught"
IDS_URI_INVALID_CODING "URI to be decoded is incorrect" 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"
IDS_FRACTION_DIGITS_OUT_OF_RANGE "Number of fraction digits is out of range" IDS_FRACTION_DIGITS_OUT_OF_RANGE "Number of fraction digits is out of range"

View file

@ -58,6 +58,7 @@
#define IDS_JSCRIPT_EXPECTED 0x1396 #define IDS_JSCRIPT_EXPECTED 0x1396
#define IDS_NOT_ENUMERATOR 0x1397 #define IDS_NOT_ENUMERATOR 0x1397
#define IDS_REGEXP_SYNTAX_ERROR 0x1399 #define IDS_REGEXP_SYNTAX_ERROR 0x1399
#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
#define IDS_FRACTION_DIGITS_OUT_OF_RANGE 0x13A2 #define IDS_FRACTION_DIGITS_OUT_OF_RANGE 0x13A2

View file

@ -3776,45 +3776,49 @@ msgstr "عنصر جافا سكربت متوقع"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "خطأ بنيوي في تفسير نظامي" msgstr "خطأ بنيوي في تفسير نظامي"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة" msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "الرابط المراد تشفيره غير صحيح" msgstr "الرابط المراد تشفيره غير صحيح"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "عدد الأرقام المجزأة خارج المدى" msgstr "عدد الأرقام المجزأة خارج المدى"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "الدقة خارج المدى" msgstr "الدقة خارج المدى"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود" msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "عنصر مصفوفة متوقع" msgstr "عنصر مصفوفة متوقع"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3661,45 +3661,49 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:67 #: jscript.rc:67
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:68
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:69
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3786,47 +3786,51 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Разпечатай" msgstr "Разпечатай"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3768,31 +3768,35 @@ msgstr "S'esperava un objecte JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Error de sintaxi en l'expressió regular" msgstr "Error de sintaxi en l'expressió regular"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
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"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
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"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "S'esperava un objecte Array" msgstr "S'esperava un objecte Array"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3800,15 +3804,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
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 '|'"
#: jscript.rc:71 #: jscript.rc:72
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 '|'"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3717,45 +3717,49 @@ msgstr "Očekáván objekt JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr ""
#: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Přesnost je mimo rozsah" msgstr "Přesnost je mimo rozsah"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekáván objekt typu pole" msgstr "Očekáván objekt typu pole"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3813,49 +3813,53 @@ msgstr "JScript objekt forventet"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaksfejl i regulært udtryk" msgstr "Syntaksfejl i regulært udtryk"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, der skal kodes indeholder ugyldige tegn" msgstr "URI, der skal kodes indeholder ugyldige tegn"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
#, 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"
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array længde skal være et endeligt positivt heltal" msgstr "Array længde skal være et endeligt positivt heltal"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array objekt forventet" msgstr "Array objekt forventet"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3759,31 +3759,35 @@ msgstr "JScript-Objekt erwartet"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaxfehler in regulärem Ausdruck" msgstr "Syntaxfehler in regulärem Ausdruck"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen" msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Zu entschlüsselnde URI ist ungültig" msgstr "Zu entschlüsselnde URI ist ungültig"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
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"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array-Objekt erwartet" msgstr "Array-Objekt erwartet"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3791,16 +3795,16 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
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"
#: jscript.rc:71 #: jscript.rc:72
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"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3701,45 +3701,49 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:67 #: jscript.rc:67
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:68
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:69
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3751,31 +3751,35 @@ msgstr "JScript object expected"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression" msgstr "Syntax error in regular expression"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught"
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precision is out of range" msgstr "Precision is out of range"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3783,15 +3787,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3751,31 +3751,35 @@ msgstr "JScript object expected"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax error in regular expression" msgstr "Syntax error in regular expression"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr "Exception thrown and not caught"
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI to be encoded contains invalid characters" msgstr "URI to be encoded contains invalid characters"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI to be decoded is incorrect" msgstr "URI to be decoded is incorrect"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precision is out of range" msgstr "Precision is out of range"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array length must be a finite positive integer" msgstr "Array length must be a finite positive integer"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object expected" msgstr "Array object expected"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3783,15 +3787,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Cannot redefine non-configurable property '|'" msgstr "Cannot redefine non-configurable property '|'"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Cannot modify non-writable property '|'" msgstr "Cannot modify non-writable property '|'"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3693,47 +3693,51 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3822,49 +3822,53 @@ msgstr "Objeto JScript esperado"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Error de sintaxis en la expresión regular" msgstr "Error de sintaxis en la expresión regular"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a codificar contiene caracteres no válidos" msgstr "URI a codificar contiene caracteres no válidos"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
#, 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 "Valor de la enumeración fuera de rango.\n" msgstr "Valor de la enumeración fuera de rango.\n"
#: jscript.rc:66 #: jscript.rc:67
#, 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 "Subíndice fuera de rango" msgstr "Subíndice fuera de rango"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto array esperado" msgstr "Objeto array esperado"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3731,46 +3731,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "&حذف\tDel" msgstr "&حذف\tDel"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3745,46 +3745,50 @@ msgstr "Odotettiin JScript-objektia"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaksivirhe säännöllisessä lausekkeessa" msgstr "Syntaksivirhe säännöllisessä lausekkeessa"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
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ä"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Dekoodattava URI on virheellinen" msgstr "Dekoodattava URI on virheellinen"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Tarkkuus ei kelpaa" msgstr "Tarkkuus ei kelpaa"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Odotettiin taulukkoa" msgstr "Odotettiin taulukkoa"
#: jscript.rc:69 #: jscript.rc:70
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"
#: jscript.rc:70 #: jscript.rc:71
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"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata" msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3801,45 +3801,49 @@ msgstr "Objet JScript attendu"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erreur de syntaxe dans l'expression rationnelle" msgstr "Erreur de syntaxe dans l'expression rationnelle"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI à coder contient des caractères invalides" msgstr "L'URI à coder contient des caractères invalides"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI à décoder est incorrecte" msgstr "L'URI à décoder est incorrecte"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Précision hors limites" msgstr "Précision hors limites"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La longueur d'un tableau doit être un entier positif" msgstr "La longueur d'un tableau doit être un entier positif"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Objet tableau attendu" msgstr "Objet tableau attendu"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3779,47 +3779,51 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "טווח ההדפסה" msgstr "טווח ההדפסה"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3663,46 +3663,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "फ़ॉन्ट (&F)..." msgstr "फ़ॉन्ट (&F)..."
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3781,45 +3781,49 @@ msgstr "Očekivan JScript objekt"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu" msgstr "Sintaksna greška u regularnom izrazu"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
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"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Preciznost je izvan dosega" msgstr "Preciznost je izvan dosega"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekivan niz objekata" msgstr "Očekivan niz objekata"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3831,49 +3831,53 @@ msgstr "JScript objektumot vártam"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Szinttaktikai hiba a reguláris kifejezésben" msgstr "Szinttaktikai hiba a reguláris kifejezésben"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz" msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
#: jscript.rc:65 #: jscript.rc:66
#, 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"
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie" msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Tömb objektumot vártam" msgstr "Tömb objektumot vártam"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3839,49 +3839,53 @@ msgstr "Previsto un oggetto JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Errore di sintassi nell'espressione regolare" msgstr "Errore di sintassi nell'espressione regolare"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "L'URI da codificare contiene caratteri non validi" msgstr "L'URI da codificare contiene caratteri non validi"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "L'URI da decodificare non è corretto" msgstr "L'URI da decodificare non è corretto"
#: jscript.rc:65 #: jscript.rc:66
#, 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"
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "La lunghezza dell'array deve essere un intero finito e positivo" msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Previsto un oggetto array" msgstr "Previsto un oggetto array"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3743,31 +3743,35 @@ msgstr "JScript オブジェクトを期待していました"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "正規表現に構文誤りがあります" msgstr "正規表現に構文誤りがあります"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "エンコードされる URI に無効な文字が含まれています" msgstr "エンコードされる URI に無効な文字が含まれています"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "デコードされる URI が正しくありません" msgstr "デコードされる URI が正しくありません"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "小数点以下の桁数が範囲外です" msgstr "小数点以下の桁数が範囲外です"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "精度指定が範囲外です" msgstr "精度指定が範囲外です"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "配列の長さは有限の正整数でなければなりません" msgstr "配列の長さは有限の正整数でなければなりません"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "配列オブジェクトを期待していました" msgstr "配列オブジェクトを期待していました"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3775,15 +3779,15 @@ msgstr ""
"このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で" "このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で"
"きません" "きません"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "変更不可のプロパティ '|' は再定義できません" msgstr "変更不可のプロパティ '|' は再定義できません"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "書換不可のプロパティ '|' は変更できません" msgstr "書換不可のプロパティ '|' は変更できません"
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "プロパティはアクセサと値の両方になることはできません" msgstr "プロパティはアクセサと値の両方になることはできません"

View file

@ -3735,46 +3735,50 @@ msgstr "JScript 객체가 필요함"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "정규 표현식에 문법오류가 있음" msgstr "정규 표현식에 문법오류가 있음"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "인코딩할 URI에 올바르지 않은 문자가 들어 있습니다" msgstr "인코딩할 URI에 올바르지 않은 문자가 들어 있습니다"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "디코딩할 URI가 올바르지 않습니다" msgstr "디코딩할 URI가 올바르지 않습니다"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "분수 자리수 값이 범위를 벗어났습니다" msgstr "분수 자리수 값이 범위를 벗어났습니다"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "정밀도가 범위를 벗어났습니다" msgstr "정밀도가 범위를 벗어났습니다"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "배열 길이는 유한한 양의 정수이어야 합니다" msgstr "배열 길이는 유한한 양의 정수이어야 합니다"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "배열 객체가 필요합니다" msgstr "배열 객체가 필요합니다"
#: jscript.rc:69 #: jscript.rc:70
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'로 설정할 수 없습니다"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "구성되지 않은 요소 '|'를 재처리할 수 없습니다" msgstr "구성되지 않은 요소 '|'를 재처리할 수 없습니다"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "쓰기 가능하지 않은 요소 '|'를 편집할 수 없습니다" msgstr "쓰기 가능하지 않은 요소 '|'를 편집할 수 없습니다"
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "속성은 접근자와 값을 모두 가질 수 없습니다" msgstr "속성은 접근자와 값을 모두 가질 수 없습니다"

View file

@ -3754,31 +3754,35 @@ msgstr "Tikėtasi JScript objekto"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Sintaksės klaida reguliariajame reiškinyje" msgstr "Sintaksės klaida reguliariajame reiškinyje"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Koduotiname URI yra netinkamų simbolių" msgstr "Koduotiname URI yra netinkamų simbolių"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Dekoduojamas URI neteisingas" msgstr "Dekoduojamas URI neteisingas"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Tikslumas nepatenka į rėžius" msgstr "Tikslumas nepatenka į rėžius"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius" msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Tikėtasi masyvo objekto" msgstr "Tikėtasi masyvo objekto"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3786,15 +3790,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
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 „|“"
#: jscript.rc:71 #: jscript.rc:72
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 „|“"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3665,46 +3665,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "_അക്ഷരസഞ്ചയ..." msgstr "_അക്ഷരസഞ്ചയ..."
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3757,45 +3757,49 @@ msgstr "Forventet JScript-objekt"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaksfeil i regulært uttrykk" msgstr "Syntaksfeil i regulært uttrykk"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
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"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Rekkens lengde må være et endelig, positivt tall" msgstr "Rekkens lengde må være et endelig, positivt tall"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Forventet rekke-objekt" msgstr "Forventet rekke-objekt"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3816,45 +3816,49 @@ msgstr "JScript object verwacht"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntax fout in reguliere expressie" msgstr "Syntax fout in reguliere expressie"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "De te coderen URI bevat ongeldige tekens" msgstr "De te coderen URI bevat ongeldige tekens"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "De te decoderen URI is niet correct" msgstr "De te decoderen URI is niet correct"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisie is buiten bereik" msgstr "Precisie is buiten bereik"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array lengte moet een eindig, positief geheel getal zijn" msgstr "Array lengte moet een eindig, positief geheel getal zijn"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array object verwacht" msgstr "Array object verwacht"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3663,46 +3663,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ଅକ୍ଷରରୂପ (&F)..." msgstr "ଅକ୍ଷରରୂପ (&F)..."
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3663,46 +3663,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ਫੌਂਟ(&F)..." msgstr "ਫੌਂਟ(&F)..."
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3795,45 +3795,49 @@ msgstr "Oczekiwany obiekt JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Błąd składni w regularnym wyrażeniu" msgstr "Błąd składni w regularnym wyrażeniu"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Kodowane URI zawiera niewłaściwe znaki" msgstr "Kodowane URI zawiera niewłaściwe znaki"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI do dekodowania jest niepoprawny" msgstr "URI do dekodowania jest niepoprawny"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precyzja jest poza poza zakresem" msgstr "Precyzja jest poza poza zakresem"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą" msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Oczekiwany obiekt tablicowy" msgstr "Oczekiwany obiekt tablicowy"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3766,31 +3766,35 @@ msgstr "Objeto JScript esperado"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisão fora do limite" msgstr "Precisão fora do limite"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo" msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Objeto tipo vetor esperado" msgstr "Objeto tipo vetor esperado"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3798,15 +3802,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
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 '|'"
#: jscript.rc:71 #: jscript.rc:72
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 '|'"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3799,45 +3799,49 @@ msgstr "Objecto JScript esperado"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Erro de sintaxe na expressão regular" msgstr "Erro de sintaxe na expressão regular"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI a ser codificado contém caracteres inválidos" msgstr "URI a ser codificado contém caracteres inválidos"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Precisão fora de alcance" msgstr "Precisão fora de alcance"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Tamanho do vector tem de ser um inteiro finito positivo" msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Objecto Array esperado" msgstr "Objecto Array esperado"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3692,46 +3692,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "&Stampar tema" msgstr "&Stampar tema"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3754,47 +3754,51 @@ msgstr "Se așteaptă un obiect JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Eroare de sintaxă în expresia regulată" msgstr "Eroare de sintaxă în expresia regulată"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI care trebuie codificat conține caractere nevalide" msgstr "URI care trebuie codificat conține caractere nevalide"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv" msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Se așteaptă un obiect matrice" msgstr "Se așteaptă un obiect matrice"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3761,45 +3761,49 @@ msgstr "Ожидается объект типа «JScript»"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксическая ошибка в регулярном выражении" msgstr "Синтаксическая ошибка в регулярном выражении"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "В кодируемом URI обнаружен неверный символ" msgstr "В кодируемом URI обнаружен неверный символ"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "Декодируемый URI неверен" msgstr "Декодируемый URI неверен"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Количество знаков после запятой вне диапазона" msgstr "Количество знаков после запятой вне диапазона"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Точность представления вне диапазона" msgstr "Точность представления вне диапазона"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Длиной массива должно быть конечное положительное число" msgstr "Длиной массива должно быть конечное положительное число"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Ожидается объект типа «Array»" msgstr "Ожидается объект типа «Array»"
#: jscript.rc:69 #: jscript.rc:70
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» для этого объекта"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Невозможно переопределить ненастраиваемое свойство «|»" msgstr "Невозможно переопределить ненастраиваемое свойство «|»"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Невозможно изменить свойство «|»" msgstr "Невозможно изменить свойство «|»"
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Свойство не может одновременно иметь методы для доступа и значение" msgstr "Свойство не может одновременно иметь методы для доступа и значение"

View file

@ -3686,45 +3686,49 @@ msgstr "JScript වස්තුවක් අපේක්ෂා කරේ"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:67 #: jscript.rc:67
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:68
msgid "Array length must be a finite positive integer"
msgstr ""
#: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ" msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3730,47 +3730,51 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3833,49 +3833,53 @@ msgstr "Pričakovan je bil predmet JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Napaka skladnje v logičnem izrazu" msgstr "Napaka skladnje v logičnem izrazu"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI za kodiranje vsebuje neveljavne znake" msgstr "URI za kodiranje vsebuje neveljavne znake"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
#, 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"
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Dolžina polja mora bit pozitivno celo število" msgstr "Dolžina polja mora bit pozitivno celo število"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Pričakovan je bil predmet polja" msgstr "Pričakovan je bil predmet polja"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3813,49 +3813,53 @@ msgstr "Очекивани објекат JScript врсте"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксна грешка у регуларном изразу" msgstr "Синтаксна грешка у регуларном изразу"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: jscript.rc:63 #: jscript.rc:64
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI садржи неисправне знакове" msgstr "URI садржи неисправне знакове"
#: jscript.rc:65 #: jscript.rc:66
#, fuzzy #, fuzzy
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Потпис је ван домета.\n" msgstr "Потпис је ван домета.\n"
#: jscript.rc:66 #: jscript.rc:67
#, 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 "Потпис је ван домета"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Низ дужине мора бити коначан позитиван цео број" msgstr "Низ дужине мора бити коначан позитиван цео број"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Очекивани низ објекта" msgstr "Очекивани низ објекта"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3893,49 +3893,53 @@ msgstr "Očekivani objekat JScript vrste"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Sintaksna greška u regularnom izrazu" msgstr "Sintaksna greška u regularnom izrazu"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: jscript.rc:63 #: jscript.rc:64
#, fuzzy #, fuzzy
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI sadrži neispravne znakove" msgstr "URI sadrži neispravne znakove"
#: jscript.rc:65 #: jscript.rc:66
#, 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"
#: jscript.rc:66 #: jscript.rc:67
#, 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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Niz dužine mora biti konačan pozitivan ceo broj" msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Očekivani niz objekta" msgstr "Očekivani niz objekta"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3778,45 +3778,49 @@ msgstr "JScript-objekt förväntades"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Syntaxfel i reguljärt uttryck" msgstr "Syntaxfel i reguljärt uttryck"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "Den URI som ska kodas innehåller ogiltiga tecken" msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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"
#: jscript.rc:66 #: jscript.rc:67
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"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Array-längd måste vara ett positivt ändligt heltal" msgstr "Array-längd måste vara ett positivt ändligt heltal"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Array-objekt förväntades" msgstr "Array-objekt förväntades"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3627,45 +3627,49 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:67 #: jscript.rc:67
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:68
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:69
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3663,46 +3663,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ఫాంట్... (&F)" msgstr "ఫాంట్... (&F)"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3719,47 +3719,51 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
#| msgid "Print range" #| msgid "Print range"
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "ย่อ" msgstr "ย่อ"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3752,31 +3752,35 @@ msgstr "Beklenen JScript nesnesi"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Düzenli ifadede sözdizimi hatası" msgstr "Düzenli ifadede sözdizimi hatası"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
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"
#: jscript.rc:63 #: jscript.rc:64
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"
#: jscript.rc:65 #: jscript.rc:66
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ışı"
#: jscript.rc:66 #: jscript.rc:67
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"
#: jscript.rc:67 #: jscript.rc:68
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"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Beklenen dizi nesnesi" msgstr "Beklenen dizi nesnesi"
#: jscript.rc:69 #: jscript.rc:70
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"
@ -3784,15 +3788,15 @@ 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"
#: jscript.rc:70 #: jscript.rc:71
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"
#: jscript.rc:71 #: jscript.rc:72
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"
#: jscript.rc:72 #: jscript.rc:73
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

@ -3763,46 +3763,50 @@ msgstr "Очікується об'єкт JScript"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "Синтаксична помилка в регулярному виразі" msgstr "Синтаксична помилка в регулярному виразі"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "URI, що буде закодований, містить неприпустимі символи" msgstr "URI, що буде закодований, містить неприпустимі символи"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "URI, що буде закодований, некоректний" msgstr "URI, що буде закодований, некоректний"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "Кількість знаків після коми поза діапазоном" msgstr "Кількість знаків після коми поза діапазоном"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Точність поза діапазоном" msgstr "Точність поза діапазоном"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число" msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "Очікується об'єкт Array" msgstr "Очікується об'єкт Array"
#: jscript.rc:69 #: jscript.rc:70
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' для цього об'єкта"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'" msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "Неможливо змінити властивість, яка не підлягає запису '|'" msgstr "Неможливо змінити властивість, яка не підлягає запису '|'"
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "Властивість не може одночасно мати доступ і значення" msgstr "Властивість не може одночасно мати доступ і значення"

View file

@ -3726,46 +3726,50 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Number of fraction digits is out of range"
msgstr ""
#: jscript.rc:67
#, fuzzy #, fuzzy
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "Cwé rexhe" msgstr "Cwé rexhe"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3620,45 +3620,49 @@ msgstr ""
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "" msgstr ""
#: jscript.rc:64
msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:63 #: jscript.rc:63
msgid "URI to be decoded is incorrect" msgid "Exception thrown and not caught"
msgstr "" msgstr ""
#: jscript.rc:65 #: jscript.rc:65
msgid "Number of fraction digits is out of range" msgid "URI to be encoded contains invalid characters"
msgstr ""
#: jscript.rc:64
msgid "URI to be decoded is incorrect"
msgstr "" msgstr ""
#: jscript.rc:66 #: jscript.rc:66
msgid "Precision is out of range" msgid "Number of fraction digits is out of range"
msgstr "" msgstr ""
#: jscript.rc:67 #: jscript.rc:67
msgid "Array length must be a finite positive integer" msgid "Precision is out of range"
msgstr "" msgstr ""
#: jscript.rc:68 #: jscript.rc:68
msgid "Array object expected" msgid "Array length must be a finite positive integer"
msgstr "" msgstr ""
#: jscript.rc:69 #: jscript.rc:69
msgid "Array object expected"
msgstr ""
#: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""

View file

@ -3700,45 +3700,49 @@ msgstr "期望得到 JScript 对象"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "正则表达式中出现语法错误" msgstr "正则表达式中出现语法错误"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "待编码的 URI 包含无效字符" msgstr "待编码的 URI 包含无效字符"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "待解码的 URI 不正确" msgstr "待解码的 URI 不正确"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "分数位数的数字超出范围" msgstr "分数位数的数字超出范围"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "精度超出范围" msgstr "精度超出范围"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "数组的长度必须为一个有限正整数" msgstr "数组的长度必须为一个有限正整数"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "期望得到 Array 对象" msgstr "期望得到 Array 对象"
#: jscript.rc:69 #: jscript.rc:70
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”"
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "无法重定义不可配置的属性“|”" msgstr "无法重定义不可配置的属性“|”"
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "无法更改不可写的属性“|”" msgstr "无法更改不可写的属性“|”"
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "属性不能同时包含存取器和值" msgstr "属性不能同时包含存取器和值"

View file

@ -3746,45 +3746,49 @@ msgstr "預期為 JScript 物件"
msgid "Syntax error in regular expression" msgid "Syntax error in regular expression"
msgstr "正規表示式語法發生錯誤" msgstr "正規表示式語法發生錯誤"
#: jscript.rc:64 #: jscript.rc:63
msgid "Exception thrown and not caught"
msgstr ""
#: jscript.rc:65
msgid "URI to be encoded contains invalid characters" msgid "URI to be encoded contains invalid characters"
msgstr "要編碼的 URI 內含無效字元" msgstr "要編碼的 URI 內含無效字元"
#: jscript.rc:63 #: jscript.rc:64
msgid "URI to be decoded is incorrect" msgid "URI to be decoded is incorrect"
msgstr "要解碼的 URI 不正確" msgstr "要解碼的 URI 不正確"
#: jscript.rc:65 #: jscript.rc:66
msgid "Number of fraction digits is out of range" msgid "Number of fraction digits is out of range"
msgstr "小數位數超出範圍" msgstr "小數位數超出範圍"
#: jscript.rc:66 #: jscript.rc:67
msgid "Precision is out of range" msgid "Precision is out of range"
msgstr "精確度超出範圍" msgstr "精確度超出範圍"
#: jscript.rc:67 #: jscript.rc:68
msgid "Array length must be a finite positive integer" msgid "Array length must be a finite positive integer"
msgstr "陣列長度必須是有限正整數" msgstr "陣列長度必須是有限正整數"
#: jscript.rc:68 #: jscript.rc:69
msgid "Array object expected" msgid "Array object expected"
msgstr "預期為陣列物件" msgstr "預期為陣列物件"
#: jscript.rc:69 #: jscript.rc:70
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 ""
#: jscript.rc:70 #: jscript.rc:71
msgid "Cannot redefine non-configurable property '|'" msgid "Cannot redefine non-configurable property '|'"
msgstr "" msgstr ""
#: jscript.rc:71 #: jscript.rc:72
msgid "Cannot modify non-writable property '|'" msgid "Cannot modify non-writable property '|'"
msgstr "" msgstr ""
#: jscript.rc:72 #: jscript.rc:73
msgid "Property cannot have both accessors and a value" msgid "Property cannot have both accessors and a value"
msgstr "" msgstr ""