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:
parent
3c9b7011ff
commit
9855c248f8
|
@ -858,10 +858,29 @@ static HRESULT interp_case(script_ctx_t *ctx)
|
|||
static void set_error_value(script_ctx_t *ctx, jsval_t value)
|
||||
{
|
||||
jsexcept_t *ei = ctx->ei;
|
||||
jsdisp_t *obj;
|
||||
|
||||
reset_ei(ei);
|
||||
ei->error = JS_E_EXCEPTION_THROWN;
|
||||
ei->valid_value = TRUE;
|
||||
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 */
|
||||
|
|
|
@ -222,6 +222,8 @@ static inline scope_chain_t *scope_addref(scope_chain_t *scope)
|
|||
}
|
||||
|
||||
struct _jsexcept_t {
|
||||
HRESULT error;
|
||||
|
||||
BOOL valid_value;
|
||||
jsval_t value;
|
||||
|
||||
|
|
|
@ -103,6 +103,7 @@ static inline BOOL is_started(script_ctx_t *ctx)
|
|||
|
||||
void reset_ei(jsexcept_t *ei)
|
||||
{
|
||||
ei->error = S_OK;
|
||||
if(ei->valid_value) {
|
||||
jsval_release(ei->value);
|
||||
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);
|
||||
|
||||
ctx->ei = ei->prev;
|
||||
if(result == DISP_E_EXCEPTION)
|
||||
result = ei->error;
|
||||
if(FAILED(result))
|
||||
WARN("%08x\n", result);
|
||||
reset_ei(ei);
|
||||
|
|
|
@ -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_ENUMERATOR_EXPECTED MAKE_JSERROR(IDS_NOT_ENUMERATOR)
|
||||
#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_CHAR MAKE_JSERROR(IDS_URI_INVALID_CHAR)
|
||||
#define JS_E_FRACTION_DIGITS_OUT_OF_RANGE MAKE_JSERROR(IDS_FRACTION_DIGITS_OUT_OF_RANGE)
|
||||
|
|
|
@ -59,6 +59,7 @@ STRINGTABLE
|
|||
IDS_NOT_VBARRAY "VBArray object expected"
|
||||
IDS_JSCRIPT_EXPECTED "JScript object expected"
|
||||
IDS_REGEXP_SYNTAX_ERROR "Syntax error in regular expression"
|
||||
IDS_EXCEPTION_THROWN "Exception thrown and not caught"
|
||||
IDS_URI_INVALID_CODING "URI to be decoded is incorrect"
|
||||
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"
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
#define IDS_JSCRIPT_EXPECTED 0x1396
|
||||
#define IDS_NOT_ENUMERATOR 0x1397
|
||||
#define IDS_REGEXP_SYNTAX_ERROR 0x1399
|
||||
#define IDS_EXCEPTION_THROWN 0x139E
|
||||
#define IDS_URI_INVALID_CHAR 0x13A0
|
||||
#define IDS_URI_INVALID_CODING 0x13A1
|
||||
#define IDS_FRACTION_DIGITS_OUT_OF_RANGE 0x13A2
|
||||
|
|
24
po/ar.po
24
po/ar.po
|
@ -3776,45 +3776,49 @@ msgstr "عنصر جافا سكربت متوقع"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "الرابط المراد تشفيره يحوي محارف غير سليمة"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "الرابط المراد تشفيره غير صحيح"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "عدد الأرقام المجزأة خارج المدى"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "الدقة خارج المدى"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "يجب أن يكون طول المصفوفة عدد صحيح موجب محدود"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "عنصر مصفوفة متوقع"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/ast.po
28
po/ast.po
|
@ -3661,45 +3661,49 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Precision is out of range"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "Precision is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
msgid "Array object expected"
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/bg.po
28
po/bg.po
|
@ -3786,47 +3786,51 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Разпечатай"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/ca.po
24
po/ca.po
|
@ -3768,31 +3768,35 @@ msgstr "S'esperava un objecte JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "L'URI a codificar conté caràcters no vàlids"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "L'URI a descodificar és incorrecte"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "El nombre de xifres de fracció és fora d'interval"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "La precisió és fora d'interval"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La longitud del vector ha de ser un nombre enter positiu finit"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "S'esperava un objecte Array"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3800,15 +3804,15 @@ msgstr ""
|
|||
"no es pot establir l'atribut 'writable' en el descriptor de propietat com a "
|
||||
"'true' en aquest objecte"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "No es pot redefinir la propietat no configurable '|'"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "No es pot modificar la propietat no escrivible '|'"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
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"
|
||||
|
||||
|
|
28
po/cs.po
28
po/cs.po
|
@ -3717,45 +3717,49 @@ msgstr "Očekáván objekt JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr "Počet desetinných čísel je mimo rozsah"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Přesnost je mimo rozsah"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Rozměr pole musí být konečné kladné celé číslo"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Očekáván objekt typu pole"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/da.po
24
po/da.po
|
@ -3813,49 +3813,53 @@ msgstr "JScript objekt forventet"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI, der skal kodes indeholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI der skal afkodes er forkert"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
#| msgid "Enumeration value out of range.\n"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Opregnings værdi uden for intervallet.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Indekset er uden for grænserne"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array længde skal være et endeligt positivt heltal"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array objekt forventet"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/de.po
24
po/de.po
|
@ -3759,31 +3759,35 @@ msgstr "JScript-Objekt erwartet"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Zu verschlüsselnde URI enthält ungültige Zeichen"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Zu entschlüsselnde URI ist ungültig"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Anzahl der Nachkommastellen außerhalb des zulässigen Bereichs"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Genauigkeit außerhalb des zulässigen Bereichs"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array-Größe muss eine natürliche Zahl sein"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array-Objekt erwartet"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3791,16 +3795,16 @@ msgstr ""
|
|||
"'writable'-Attribut des Eigenschaftendeskriptors kann bei diesem Objekt "
|
||||
"nicht auf 'true' gesetzt werden"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
"Nicht-konfigurierbare Eigenschaft '|' kann nicht erneut definiert werden"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "Nicht-schreibbare Eigenschaft '|' kann nicht geändert werden"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Eigenschaft kann nicht sowohl Accessoren als auch einen Wert haben"
|
||||
|
||||
|
|
28
po/el.po
28
po/el.po
|
@ -3701,45 +3701,49 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Precision is out of range"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "Precision is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
msgid "Array object expected"
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/en.po
24
po/en.po
|
@ -3751,31 +3751,35 @@ msgstr "JScript object expected"
|
|||
msgid "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"
|
||||
msgstr "URI to be encoded contains invalid characters"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "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"
|
||||
msgstr "Number of fraction digits is out of range"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "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"
|
||||
msgstr "Array length must be a finite positive integer"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object expected"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3783,15 +3787,15 @@ msgstr ""
|
|||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Cannot redefine non-configurable property '|'"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "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"
|
||||
msgstr "Property cannot have both accessors and a value"
|
||||
|
||||
|
|
24
po/en_US.po
24
po/en_US.po
|
@ -3751,31 +3751,35 @@ msgstr "JScript object expected"
|
|||
msgid "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"
|
||||
msgstr "URI to be encoded contains invalid characters"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "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"
|
||||
msgstr "Number of fraction digits is out of range"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "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"
|
||||
msgstr "Array length must be a finite positive integer"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object expected"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3783,15 +3787,15 @@ msgstr ""
|
|||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Cannot redefine non-configurable property '|'"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "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"
|
||||
msgstr "Property cannot have both accessors and a value"
|
||||
|
||||
|
|
28
po/eo.po
28
po/eo.po
|
@ -3693,47 +3693,51 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Etendiĝon"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/es.po
24
po/es.po
|
@ -3822,49 +3822,53 @@ msgstr "Objeto JScript esperado"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI a codificar contiene caracteres no válidos"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a decodificar es incorrecta"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
#| msgid "Enumeration value out of range.\n"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Valor de la enumeración fuera de rango.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Subíndice fuera de rango"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La longitud del array debe ser un entero positivo finito"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Objeto array esperado"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/fa.po
28
po/fa.po
|
@ -3731,46 +3731,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "&حذف\tDel"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/fi.po
24
po/fi.po
|
@ -3745,46 +3745,50 @@ msgstr "Odotettiin JScript-objektia"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Enkoodattava URI sisältää virheellisiä merkkejä"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Dekoodattava URI on virheellinen"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Desimaalien määrä ei kelpaa"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Tarkkuus ei kelpaa"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Taulukon pituuden täytyy olla positiivinen kokonaisluku"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Odotettiin taulukkoa"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
"Attribuutti 'writable' ei voi olla 'true' tämän objektin ominaisuuksissa"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Ei-konfiguroitavaa ominaisuutta '|' ei voi määritellä uudestaan"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "Kirjoitussuojattua ominaisuutta '|' ei voi muokata"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Ominaisuudella ei voi olla sekä hakufunktiota että arvoa"
|
||||
|
||||
|
|
24
po/fr.po
24
po/fr.po
|
@ -3801,45 +3801,49 @@ msgstr "Objet JScript attendu"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "L'URI à coder contient des caractères invalides"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "L'URI à décoder est incorrecte"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Nombre de décimales hors plage"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Précision hors limites"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La longueur d'un tableau doit être un entier positif"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Objet tableau attendu"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/he.po
28
po/he.po
|
@ -3779,47 +3779,51 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "טווח ההדפסה"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/hi.po
28
po/hi.po
|
@ -3663,46 +3663,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "फ़ॉन्ट (&F)..."
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/hr.po
24
po/hr.po
|
@ -3781,45 +3781,49 @@ msgstr "Očekivan JScript objekt"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI za kodiranje sadrži neispravne znakove"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI za dekodiranje je neispravan"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Broj decimalnih znamenki je izvan dosega"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Preciznost je izvan dosega"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Duljina niza treba biti konačan prirodan broj"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Očekivan niz objekata"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/hu.po
24
po/hu.po
|
@ -3831,49 +3831,53 @@ msgstr "JScript objektumot vártam"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "A kódolandó URI érvénytelen karaktereket tartalmaz"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
#| msgid "Enumeration value out of range.\n"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Felsorolási érték határon kívül esik.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Érvénytelen alszkript"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "A tömb hosszának egy véges pozitív egész számnak kell lennie"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Tömb objektumot vártam"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/it.po
24
po/it.po
|
@ -3839,49 +3839,53 @@ msgstr "Previsto un oggetto JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "L'URI da codificare contiene caratteri non validi"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "L'URI da decodificare non è corretto"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
#| msgid "Enumeration value out of range.\n"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Valore dell'enumerazione fuori portata.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Sottoscript fuori portata"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "La lunghezza dell'array deve essere un intero finito e positivo"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Previsto un oggetto array"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/ja.po
24
po/ja.po
|
@ -3743,31 +3743,35 @@ msgstr "JScript オブジェクトを期待していました"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "エンコードされる URI に無効な文字が含まれています"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "デコードされる URI が正しくありません"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "小数点以下の桁数が範囲外です"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "精度指定が範囲外です"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "配列の長さは有限の正整数でなければなりません"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "配列オブジェクトを期待していました"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3775,15 +3779,15 @@ msgstr ""
|
|||
"このオブジェクトにおけるプロパティ記述子の 'writable' 属性は 'true' に設定で"
|
||||
"きません"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "変更不可のプロパティ '|' は再定義できません"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "書換不可のプロパティ '|' は変更できません"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "プロパティはアクセサと値の両方になることはできません"
|
||||
|
||||
|
|
24
po/ko.po
24
po/ko.po
|
@ -3735,46 +3735,50 @@ msgstr "JScript 객체가 필요함"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "인코딩할 URI에 올바르지 않은 문자가 들어 있습니다"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "디코딩할 URI가 올바르지 않습니다"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "분수 자리수 값이 범위를 벗어났습니다"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "정밀도가 범위를 벗어났습니다"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "배열 길이는 유한한 양의 정수이어야 합니다"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "배열 객체가 필요합니다"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
"속성 설명자의 'writable' 특성은 이 개체에서 'true'로 설정할 수 없습니다"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "구성되지 않은 요소 '|'를 재처리할 수 없습니다"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "쓰기 가능하지 않은 요소 '|'를 편집할 수 없습니다"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "속성은 접근자와 값을 모두 가질 수 없습니다"
|
||||
|
||||
|
|
24
po/lt.po
24
po/lt.po
|
@ -3754,31 +3754,35 @@ msgstr "Tikėtasi JScript objekto"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Koduotiname URI yra netinkamų simbolių"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Dekoduojamas URI neteisingas"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Trupmeninės dalies skaitmenų skaičius nepatenka į rėžius"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Tikslumas nepatenka į rėžius"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Masyvo dydis turi būti teigiamas sveikasis skaičius"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Tikėtasi masyvo objekto"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3786,15 +3790,15 @@ msgstr ""
|
|||
"savybės aprašo atributas „writable“ negali būti nustatytas į „tiesa“ šiam "
|
||||
"objektui"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Negalima iš naujo apibrėžti nekonfigūruojamos savybės „|“"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "Negalima modifikuoti nerašomos savybės „|“"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Savybė negali turėti ir kreipiklių, ir reikšmės"
|
||||
|
||||
|
|
28
po/ml.po
28
po/ml.po
|
@ -3665,46 +3665,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "_അക്ഷരസഞ്ചയം..."
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/nb_NO.po
24
po/nb_NO.po
|
@ -3757,45 +3757,49 @@ msgstr "Forventet JScript-objekt"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI'en som skal kodes inneholder ugyldige tegn"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI'en som skal dekodes er feil"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Antall brøktegn er utenfor rekken av gyldige verdier"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Presisjonen er utenfor rekken av gyldige verdier"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Rekkens lengde må være et endelig, positivt tall"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Forventet rekke-objekt"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/nl.po
24
po/nl.po
|
@ -3816,45 +3816,49 @@ msgstr "JScript object verwacht"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "De te coderen URI bevat ongeldige tekens"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "De te decoderen URI is niet correct"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Aantal getallen achter de komma buiten bereik"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Precisie is buiten bereik"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array lengte moet een eindig, positief geheel getal zijn"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array object verwacht"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/or.po
28
po/or.po
|
@ -3663,46 +3663,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "ଅକ୍ଷରରୂପ (&F)..."
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/pa.po
28
po/pa.po
|
@ -3663,46 +3663,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "ਫੌਂਟ(&F)..."
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/pl.po
24
po/pl.po
|
@ -3795,45 +3795,49 @@ msgstr "Oczekiwany obiekt JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Kodowane URI zawiera niewłaściwe znaki"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI do dekodowania jest niepoprawny"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Ilość cyfr znaczących jest poza zakresem"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Precyzja jest poza poza zakresem"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Długość tablicy musi być skończoną dodatnią liczbą stałą"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Oczekiwany obiekt tablicowy"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/pt_BR.po
24
po/pt_BR.po
|
@ -3766,31 +3766,35 @@ msgstr "Objeto JScript esperado"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a ser decodificado está incorreto"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Número de dígitos fracionários fora do limite"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Precisão fora do limite"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Tamanho do vetor tem que ser um inteiro finito positivo"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Objeto tipo vetor esperado"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3798,15 +3802,15 @@ msgstr ""
|
|||
"atributo 'gravável' no descritor de propriedades não pode ser setado para "
|
||||
"'verdade' neste objeto"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Não pode redefinir propriedade não configurável '|'"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
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"
|
||||
msgstr "Propriedade não pode ter ambos acessores e valor"
|
||||
|
||||
|
|
24
po/pt_PT.po
24
po/pt_PT.po
|
@ -3799,45 +3799,49 @@ msgstr "Objecto JScript esperado"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI a ser codificado contém caracteres inválidos"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI a ser descodificado é incorreto"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Número de dígitos fraccionários está fora de alcance"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Precisão fora de alcance"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Tamanho do vector tem de ser um inteiro finito positivo"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Objecto Array esperado"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/rm.po
28
po/rm.po
|
@ -3692,46 +3692,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "&Stampar tema"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/ro.po
24
po/ro.po
|
@ -3754,47 +3754,51 @@ msgstr "Se așteaptă un obiect JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI care trebuie codificat conține caractere nevalide"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI care trebuie decodat este incorect"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Interval tipărire"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Lungimea unei matrice trebuie să fie un număr întreg pozitiv"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Se așteaptă un obiect matrice"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/ru.po
24
po/ru.po
|
@ -3761,45 +3761,49 @@ msgstr "Ожидается объект типа «JScript»"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "В кодируемом URI обнаружен неверный символ"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Декодируемый URI неверен"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Количество знаков после запятой вне диапазона"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Точность представления вне диапазона"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Длиной массива должно быть конечное положительное число"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Ожидается объект типа «Array»"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr "Невозможно установить атрибут «writable» в «true» для этого объекта"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Невозможно переопределить ненастраиваемое свойство «|»"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "Невозможно изменить свойство «|»"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Свойство не может одновременно иметь методы для доступа и значение"
|
||||
|
||||
|
|
28
po/si.po
28
po/si.po
|
@ -3686,45 +3686,49 @@ msgstr "JScript වස්තුවක් අපේක්ෂා කරේ"
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Precision is out of range"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "Precision is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "ආරාව වස්තුවක් අපේක්ෂා කරේ"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/sk.po
28
po/sk.po
|
@ -3730,47 +3730,51 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Rozsah tlače"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/sl.po
24
po/sl.po
|
@ -3833,49 +3833,53 @@ msgstr "Pričakovan je bil predmet JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI za kodiranje vsebuje neveljavne znake"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI za odkodiranje je nepravilen"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
#| msgid "Enumeration value out of range.\n"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Vrednost oštevilčenja je izven obsega.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Podskript je izven obsega"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Dolžina polja mora bit pozitivno celo število"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Pričakovan je bil predmet polja"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -3813,49 +3813,53 @@ msgstr "Очекивани објекат JScript врсте"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI садржи неисправне знакове"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI садржи неисправне знакове"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Потпис је ван домета.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Потпис је ван домета"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Низ дужине мора бити коначан позитиван цео број"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Очекивани низ објекта"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -3893,49 +3893,53 @@ msgstr "Očekivani objekat JScript vrste"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI sadrži neispravne znakove"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
#, fuzzy
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI sadrži neispravne znakove"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
#, fuzzy
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Potpis je van dometa.\n"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Subscript out of range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Potpis je van dometa"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Niz dužine mora biti konačan pozitivan ceo broj"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Očekivani niz objekta"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/sv.po
24
po/sv.po
|
@ -3778,45 +3778,49 @@ msgstr "JScript-objekt förväntades"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Den URI som ska kodas innehåller ogiltiga tecken"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Den URI som ska avkodas är felaktig"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Antal decimaler är utanför giltigt intervall"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Precision är utanför giltigt intervall"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Array-längd måste vara ett positivt ändligt heltal"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Array-objekt förväntades"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/ta.po
28
po/ta.po
|
@ -3627,45 +3627,49 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Precision is out of range"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "Precision is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
msgid "Array object expected"
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/te.po
28
po/te.po
|
@ -3663,46 +3663,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "ఫాంట్... (&F)"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/th.po
28
po/th.po
|
@ -3719,47 +3719,51 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
#| msgid "Print range"
|
||||
msgid "Precision is out of range"
|
||||
msgstr "ย่อ"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/tr.po
24
po/tr.po
|
@ -3752,31 +3752,35 @@ msgstr "Beklenen JScript nesnesi"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "Kodlanacak URI geçersiz karakterler içeriyor"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "Kodu çözülecek URI geçersiz"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Kesirli rakam sayısı aralık dışı"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Aralık erişim dışında"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Dizi adı pozitif sonlu bir sayı olmalıdır"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Beklenen dizi nesnesi"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
|
@ -3784,15 +3788,15 @@ msgstr ""
|
|||
"Nesne açıklayıcısındaki 'yazılabilir' özelliği bu nesnede 'doğru' olarak "
|
||||
"ayarlananmıyor"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "'|' yapılandırılamayan nesnesi yeniden tanımlanamıyor"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "'|' yazılamayan nesnesi değiştirilemiyor"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Nesnenin erişimcisi ve değeri birden olamaz"
|
||||
|
||||
|
|
24
po/uk.po
24
po/uk.po
|
@ -3763,46 +3763,50 @@ msgstr "Очікується об'єкт JScript"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "URI, що буде закодований, містить неприпустимі символи"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "URI, що буде закодований, некоректний"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "Кількість знаків після коми поза діапазоном"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Точність поза діапазоном"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "Довжиною масиву повинне бути скінченне додатнє ціле число"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "Очікується об'єкт Array"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
"Властивість 'writable' не може бути встановлена на 'true' для цього об'єкта"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "Неможливо перевизначити властивість, яка не підлягає налаштуванню '|'"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "Неможливо змінити властивість, яка не підлягає запису '|'"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "Властивість не може одночасно мати доступ і значення"
|
||||
|
||||
|
|
28
po/wa.po
28
po/wa.po
|
@ -3726,46 +3726,50 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
#, fuzzy
|
||||
msgid "Precision is out of range"
|
||||
msgstr "Cwé rexhe"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/wine.pot
28
po/wine.pot
|
@ -3620,45 +3620,49 @@ msgstr ""
|
|||
msgid "Syntax error in regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be encoded contains invalid characters"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:63
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgid "Exception thrown and not caught"
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: jscript.rc:66
|
||||
msgid "Precision is out of range"
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:67
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgid "Precision is out of range"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:68
|
||||
msgid "Array object expected"
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
24
po/zh_CN.po
24
po/zh_CN.po
|
@ -3700,45 +3700,49 @@ msgstr "期望得到 JScript 对象"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "待编码的 URI 包含无效字符"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "待解码的 URI 不正确"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "分数位数的数字超出范围"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "精度超出范围"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "数组的长度必须为一个有限正整数"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "期望得到 Array 对象"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr "无法在此对象上更改属性描述符中的“writable”属性为“true”"
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr "无法重定义不可配置的属性“|”"
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr "无法更改不可写的属性“|”"
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr "属性不能同时包含存取器和值"
|
||||
|
||||
|
|
24
po/zh_TW.po
24
po/zh_TW.po
|
@ -3746,45 +3746,49 @@ msgstr "預期為 JScript 物件"
|
|||
msgid "Syntax error in regular expression"
|
||||
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"
|
||||
msgstr "要編碼的 URI 內含無效字元"
|
||||
|
||||
#: jscript.rc:63
|
||||
#: jscript.rc:64
|
||||
msgid "URI to be decoded is incorrect"
|
||||
msgstr "要解碼的 URI 不正確"
|
||||
|
||||
#: jscript.rc:65
|
||||
#: jscript.rc:66
|
||||
msgid "Number of fraction digits is out of range"
|
||||
msgstr "小數位數超出範圍"
|
||||
|
||||
#: jscript.rc:66
|
||||
#: jscript.rc:67
|
||||
msgid "Precision is out of range"
|
||||
msgstr "精確度超出範圍"
|
||||
|
||||
#: jscript.rc:67
|
||||
#: jscript.rc:68
|
||||
msgid "Array length must be a finite positive integer"
|
||||
msgstr "陣列長度必須是有限正整數"
|
||||
|
||||
#: jscript.rc:68
|
||||
#: jscript.rc:69
|
||||
msgid "Array object expected"
|
||||
msgstr "預期為陣列物件"
|
||||
|
||||
#: jscript.rc:69
|
||||
#: jscript.rc:70
|
||||
msgid ""
|
||||
"'writable' attribute on the property descriptor cannot be set to 'true' on "
|
||||
"this object"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:70
|
||||
#: jscript.rc:71
|
||||
msgid "Cannot redefine non-configurable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:71
|
||||
#: jscript.rc:72
|
||||
msgid "Cannot modify non-writable property '|'"
|
||||
msgstr ""
|
||||
|
||||
#: jscript.rc:72
|
||||
#: jscript.rc:73
|
||||
msgid "Property cannot have both accessors and a value"
|
||||
msgstr ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue