jscript: Store error location in jsexcept_t.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2020-02-03 14:47:15 +01:00 committed by Alexandre Julliard
parent 83fa76c25e
commit 0f4d4f7184
56 changed files with 703 additions and 1 deletions

View File

@ -1976,6 +1976,8 @@ static HRESULT disp_invoke(script_ctx_t *ctx, IDispatch *disp, DISPID id, WORD f
TRACE("DISP_E_EXCEPTION: %08x %s %s\n", ei.scode, debugstr_w(ei.bstrSource), debugstr_w(ei.bstrDescription));
reset_ei(ctx->ei);
ctx->ei->error = (SUCCEEDED(ei.scode) || ei.scode == DISP_E_EXCEPTION) ? E_FAIL : ei.scode;
if(ei.bstrSource)
ctx->ei->source = jsstr_alloc_len(ei.bstrSource, SysStringLen(ei.bstrSource));
SysFreeString(ei.bstrSource);
SysFreeString(ei.bstrDescription);
SysFreeString(ei.bstrHelpFile);

View File

@ -2768,10 +2768,12 @@ static HRESULT unwind_exception(script_ctx_t *ctx, HRESULT exception_hres)
print_backtrace(ctx);
}
frame = ctx->call_ctx;
if(exception_hres != DISP_E_EXCEPTION)
ei->error = exception_hres;
set_error_location(ei, frame->bytecode, frame->bytecode->instrs[frame->ip].loc, IDS_RUNTIME_ERROR);
for(frame = ctx->call_ctx; !frame->except_frame; frame = ctx->call_ctx) {
while(!frame->except_frame) {
DWORD flags;
while(frame->scope != frame->base_scope)
@ -2783,6 +2785,7 @@ static HRESULT unwind_exception(script_ctx_t *ctx, HRESULT exception_hres)
pop_call_frame(ctx);
if(!(flags & EXEC_RETURN_TO_INTERP))
return DISP_E_EXCEPTION;
frame = ctx->call_ctx;
}
except_frame = frame->except_frame;

View File

@ -227,6 +227,11 @@ struct _jsexcept_t {
BOOL valid_value;
jsval_t value;
jsstr_t *source;
bytecode_t *code;
unsigned loc;
BOOL enter_notified;
jsexcept_t *prev;
};
@ -234,6 +239,7 @@ struct _jsexcept_t {
void enter_script(script_ctx_t*,jsexcept_t*) DECLSPEC_HIDDEN;
HRESULT leave_script(script_ctx_t*,HRESULT) DECLSPEC_HIDDEN;
void reset_ei(jsexcept_t*) DECLSPEC_HIDDEN;
void set_error_location(jsexcept_t*,bytecode_t*,unsigned,unsigned) DECLSPEC_HIDDEN;
typedef struct _except_frame_t except_frame_t;
struct _parser_ctx_t;

View File

@ -445,6 +445,24 @@ HRESULT throw_type_error(script_ctx_t *ctx, HRESULT error, const WCHAR *str)
return throw_error(ctx, error, str, ctx->type_error_constr);
}
void set_error_location(jsexcept_t *ei, bytecode_t *code, unsigned loc, unsigned source_id)
{
if(is_jscript_error(ei->error)) {
if(!ei->source) {
const WCHAR *res;
size_t len;
len = LoadStringW(jscript_hinstance, source_id, (WCHAR*)&res, 0);
ei->source = jsstr_alloc_len(res, len);
}
}
TRACE("source %s in %s\n", debugstr_w(code->source + loc), debugstr_w(code->source));
ei->code = bytecode_addref(code);
ei->loc = loc;
}
jsdisp_t *create_builtin_error(script_ctx_t *ctx)
{
jsdisp_t *constr = ctx->error_constr, *r;

View File

@ -214,6 +214,15 @@ void reset_ei(jsexcept_t *ei)
jsval_release(ei->value);
ei->valid_value = FALSE;
}
if(ei->code) {
release_bytecode(ei->code);
ei->code = NULL;
ei->loc = 0;
}
if(ei->source) {
jsstr_release(ei->source);
ei->source = NULL;
}
}
void enter_script(script_ctx_t *ctx, jsexcept_t *ei)

View File

@ -70,6 +70,10 @@ STRINGTABLE
IDS_NONCONFIGURABLE_REDEFINED "Cannot redefine non-configurable property '|'"
IDS_NONWRITABLE_MODIFIED "Cannot modify non-writable property '|'"
IDS_PROP_DESC_MISMATCH "Property cannot have both accessors and a value"
IDS_COMPILATION_ERROR "Microsoft JScript compilation error"
IDS_RUNTIME_ERROR "Microsoft JScript runtime error"
IDS_UNKNOWN_ERROR "Unknown runtime error"
}
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

View File

@ -71,3 +71,7 @@
/* FIXME: This is not compatible with native, but we would
* conflict with IDS_UNSUPPORTED_ACTION otherwise */
#define IDS_PROP_DESC_MISMATCH 0x1F00
#define IDS_COMPILATION_ERROR 0x1000
#define IDS_RUNTIME_ERROR 0x1001
#define IDS_UNKNOWN_ERROR 0x1002

View File

@ -3732,6 +3732,20 @@ msgstr "البناء الشرطي معطل"
msgid "Expected '@'"
msgstr "متوقع ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "خطأ غير معلوم"
#: jscript.rc:54
msgid "Number expected"
msgstr "رقم متوقع"

View File

@ -3617,6 +3617,18 @@ msgstr ""
msgid "Expected '@'"
msgstr "Esperábase «@»"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3742,6 +3742,19 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
msgid "Unknown runtime error"
msgstr "Пре&гледай изходния код"
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3724,6 +3724,20 @@ msgstr "La compilació condicional està desactivada"
msgid "Expected '@'"
msgstr "S'esperava '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Error desconegut"
#: jscript.rc:54
msgid "Number expected"
msgstr "S'esperava un nombre"

View File

@ -3673,6 +3673,20 @@ msgstr "Podmíněná kompilace je vypnutá"
msgid "Expected '@'"
msgstr "Očekáváno „@“"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Neznámá chyba"
#: jscript.rc:54
msgid "Number expected"
msgstr "Očekáváno číslo"

View File

@ -3769,6 +3769,20 @@ msgstr "Betinget kompilering er slået fra"
msgid "Expected '@'"
msgstr "Forventet ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Ukendt fejl"
#: jscript.rc:54
msgid "Number expected"
msgstr "Nummer forventet"

View File

@ -3715,6 +3715,20 @@ msgstr "Bedingte Kompilierung ist ausgeschaltet"
msgid "Expected '@'"
msgstr "'@' erwartet"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Unbekannter Fehler"
#: jscript.rc:54
msgid "Number expected"
msgstr "Zahl erwartet"

View File

@ -3657,6 +3657,19 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
msgid "Unknown runtime error"
msgstr "&Περιεχόμενα"
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3707,6 +3707,18 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'"
msgstr "Expected '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error"
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error"
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr "Unknown runtime error"
#: jscript.rc:54
msgid "Number expected"
msgstr "Number expected"

View File

@ -3707,6 +3707,18 @@ msgstr "Conditional compilation is turned off"
msgid "Expected '@'"
msgstr "Expected '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr "Microsoft JScript compilation error"
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr "Microsoft JScript runtime error"
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr "Unknown runtime error"
#: jscript.rc:54
msgid "Number expected"
msgstr "Number expected"

View File

@ -3649,6 +3649,20 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown printer driver."
msgid "Unknown runtime error"
msgstr "Nekonata printilzorgilo."
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3778,6 +3778,20 @@ msgstr "La compilación condicional está desactivada"
msgid "Expected '@'"
msgstr "Esperado ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Error desconocido"
#: jscript.rc:54
msgid "Number expected"
msgstr "Número esperado"

View File

@ -3686,6 +3686,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3701,6 +3701,20 @@ msgstr "Ehdollinen kääntäminen on pois käytöstä"
msgid "Expected '@'"
msgstr "Odotettiin merkkiä '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Tuntematon virhe"
#: jscript.rc:54
msgid "Number expected"
msgstr "Odotettiin lukua"

View File

@ -3757,6 +3757,20 @@ msgstr "La compilation conditionnelle est désactivée"
msgid "Expected '@'"
msgstr "« @ » attendu"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Erreur inconnue"
#: jscript.rc:54
msgid "Number expected"
msgstr "Nombre attendu"

View File

@ -3734,6 +3734,20 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "שגיאה בלתי ידועה"
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3619,6 +3619,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3737,6 +3737,20 @@ msgstr "Kondicionalna kompilacija je isključena"
msgid "Expected '@'"
msgstr "Očekivano ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Nepoznata greška"
#: jscript.rc:54
msgid "Number expected"
msgstr "Očekivan broj"

View File

@ -3787,6 +3787,20 @@ msgstr "Feltételes fordítás kikapcsolva"
msgid "Expected '@'"
msgstr "Hiányzó ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Ismeretlen hiba"
#: jscript.rc:54
msgid "Number expected"
msgstr "Számot vártam"

View File

@ -3795,6 +3795,20 @@ msgstr "Compilazione condizionale disattivata"
msgid "Expected '@'"
msgstr "Richiesto ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Errore sconosciuto"
#: jscript.rc:54
msgid "Number expected"
msgstr "Richiesto un numero"

View File

@ -3699,6 +3699,20 @@ msgstr "条件コンパイルはオフにされています"
msgid "Expected '@'"
msgstr "'@'を期待していました"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "不明なエラー"
#: jscript.rc:54
msgid "Number expected"
msgstr "数値を期待していました"

View File

@ -3691,6 +3691,20 @@ msgstr "조건부 컴파일이 해제되어 있음"
msgid "Expected '@'"
msgstr "'@'가 필요합니다"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "알 수 없는 오류"
#: jscript.rc:54
msgid "Number expected"
msgstr "숫자가 필요합니다"

View File

@ -3710,6 +3710,20 @@ msgstr "Sąlyginis kompiliavimas išjungtas"
msgid "Expected '@'"
msgstr "Tikėtasi „@“"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Nežinoma klaida"
#: jscript.rc:54
msgid "Number expected"
msgstr "Tikėtasi skaičiaus"

View File

@ -3621,6 +3621,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3713,6 +3713,20 @@ msgstr "Avhengig kompilering er skrudd av"
msgid "Expected '@'"
msgstr "Forventet '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Ukjent feil"
#: jscript.rc:54
msgid "Number expected"
msgstr "Forventet nummer"

View File

@ -3772,6 +3772,20 @@ msgstr "Conditionele compilatie is uitgeschakeld"
msgid "Expected '@'"
msgstr "';' verwacht"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Onbekende fout"
#: jscript.rc:54
msgid "Number expected"
msgstr "Getal verwacht"

View File

@ -3619,6 +3619,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3619,6 +3619,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3751,6 +3751,20 @@ msgstr "Warunkowa kompilacja jest wyłączona"
msgid "Expected '@'"
msgstr "Oczekiwano '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Nieznany błąd"
#: jscript.rc:54
msgid "Number expected"
msgstr "Oczekiwana liczba"

View File

@ -3722,6 +3722,20 @@ msgstr "Compilação condicional está desligada"
msgid "Expected '@'"
msgstr "'@' esperado"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Erro desconhecido"
#: jscript.rc:54
msgid "Number expected"
msgstr "Número esperado"

View File

@ -3755,6 +3755,20 @@ msgstr "A compilação condicional está desactivada"
msgid "Expected '@'"
msgstr "Esperado '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Erro desconhecido"
#: jscript.rc:54
msgid "Number expected"
msgstr "Número esperado"

View File

@ -3648,6 +3648,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3710,6 +3710,20 @@ msgstr "Compilarea condițională este dezactivată"
msgid "Expected '@'"
msgstr "Se așteaptă „@”"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Eroare necunoscută"
#: jscript.rc:54
msgid "Number expected"
msgstr "Se așteaptă un număr"

View File

@ -3717,6 +3717,20 @@ msgstr "Условная компиляция отключена"
msgid "Expected '@'"
msgstr "Ожидается «@»"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Неизвестная ошибка"
#: jscript.rc:54
msgid "Number expected"
msgstr "Ожидается число"

View File

@ -3642,6 +3642,20 @@ msgstr ""
msgid "Expected '@'"
msgstr "අපේක්ෂා කරේ '='"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "දන්නේ නැති දෝෂයක්"
#: jscript.rc:54
msgid "Number expected"
msgstr "නොම්බරයක් අපේක්ෂා කරේ"

View File

@ -3686,6 +3686,20 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Neznáma chyba"
#: jscript.rc:54
msgid "Number expected"
msgstr "Očakávané číslo"

View File

@ -3789,6 +3789,20 @@ msgstr "Pogojno kodno prevajanje je izklopljeno"
msgid "Expected '@'"
msgstr "Pričakovan je bil ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Neznana napaka"
#: jscript.rc:54
msgid "Number expected"
msgstr "Pričakovano je bilo število"

View File

@ -3768,6 +3768,19 @@ msgstr ""
msgid "Expected '@'"
msgstr "Очекивано ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
msgid "Unknown runtime error"
msgstr "Непознат извор"
#: jscript.rc:54
msgid "Number expected"
msgstr "Очекивани број"

View File

@ -3848,6 +3848,19 @@ msgstr ""
msgid "Expected '@'"
msgstr "Očekivano ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
msgid "Unknown runtime error"
msgstr "Nepoznat izvor"
#: jscript.rc:54
msgid "Number expected"
msgstr "Očekivani broj"

View File

@ -3734,6 +3734,20 @@ msgstr "Villkorlig kompilering är avslagen"
msgid "Expected '@'"
msgstr "'@' förväntades"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Okänt fel"
#: jscript.rc:54
msgid "Number expected"
msgstr "Nummer förväntades"

View File

@ -3583,6 +3583,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3619,6 +3619,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3674,6 +3674,20 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown printer driver."
msgid "Unknown runtime error"
msgstr "ไม่รู้จักดไร์เวอร์์เครื่องพิมพ์"
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3708,6 +3708,20 @@ msgstr "Şartlı derleme kapatıldı"
msgid "Expected '@'"
msgstr "Beklenen '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Bilinmeyen hata"
#: jscript.rc:54
msgid "Number expected"
msgstr "Beklenen sayı"

View File

@ -3719,6 +3719,20 @@ msgstr "Умовна компіляція вимкнена"
msgid "Expected '@'"
msgstr "Очікується ';'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "Невідома помилка"
#: jscript.rc:54
msgid "Number expected"
msgstr "Очікується число"

View File

@ -3681,6 +3681,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3576,6 +3576,18 @@ msgstr ""
msgid "Expected '@'"
msgstr ""
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
msgid "Unknown runtime error"
msgstr ""
#: jscript.rc:54
msgid "Number expected"
msgstr ""

View File

@ -3656,6 +3656,20 @@ msgstr "条件编译已关闭"
msgid "Expected '@'"
msgstr "期望 '@'"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "未知错误"
#: jscript.rc:54
msgid "Number expected"
msgstr "期望得到数字"

View File

@ -3702,6 +3702,20 @@ msgstr "條件編譯已被關閉"
msgid "Expected '@'"
msgstr "預期為 ;"
#: jscript.rc:75
msgid "Microsoft JScript compilation error"
msgstr ""
#: jscript.rc:76
msgid "Microsoft JScript runtime error"
msgstr ""
#: jscript.rc:77
#, fuzzy
#| msgid "Unknown error"
msgid "Unknown runtime error"
msgstr "未知錯誤"
#: jscript.rc:54
msgid "Number expected"
msgstr "預期為編號"