Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0f4d4f71
Commit
0f4d4f71
authored
Feb 03, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Store error location in jsexcept_t.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
83fa76c2
Hide whitespace changes
Inline
Side-by-side
Showing
56 changed files
with
703 additions
and
1 deletion
+703
-1
dispex.c
dlls/jscript/dispex.c
+2
-0
engine.c
dlls/jscript/engine.c
+4
-1
engine.h
dlls/jscript/engine.h
+6
-0
error.c
dlls/jscript/error.c
+18
-0
jscript.c
dlls/jscript/jscript.c
+9
-0
jscript.rc
dlls/jscript/jscript.rc
+4
-0
resource.h
dlls/jscript/resource.h
+4
-0
ar.po
po/ar.po
+14
-0
ast.po
po/ast.po
+12
-0
bg.po
po/bg.po
+13
-0
ca.po
po/ca.po
+14
-0
cs.po
po/cs.po
+14
-0
da.po
po/da.po
+14
-0
de.po
po/de.po
+14
-0
el.po
po/el.po
+13
-0
en.po
po/en.po
+12
-0
en_US.po
po/en_US.po
+12
-0
eo.po
po/eo.po
+14
-0
es.po
po/es.po
+14
-0
fa.po
po/fa.po
+12
-0
fi.po
po/fi.po
+14
-0
fr.po
po/fr.po
+14
-0
he.po
po/he.po
+14
-0
hi.po
po/hi.po
+12
-0
hr.po
po/hr.po
+14
-0
hu.po
po/hu.po
+14
-0
it.po
po/it.po
+14
-0
ja.po
po/ja.po
+14
-0
ko.po
po/ko.po
+14
-0
lt.po
po/lt.po
+14
-0
ml.po
po/ml.po
+12
-0
nb_NO.po
po/nb_NO.po
+14
-0
nl.po
po/nl.po
+14
-0
or.po
po/or.po
+12
-0
pa.po
po/pa.po
+12
-0
pl.po
po/pl.po
+14
-0
pt_BR.po
po/pt_BR.po
+14
-0
pt_PT.po
po/pt_PT.po
+14
-0
rm.po
po/rm.po
+12
-0
ro.po
po/ro.po
+14
-0
ru.po
po/ru.po
+14
-0
si.po
po/si.po
+14
-0
sk.po
po/sk.po
+14
-0
sl.po
po/sl.po
+14
-0
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+13
-0
sr_RS@latin.po
po/sr_RS@latin.po
+13
-0
sv.po
po/sv.po
+14
-0
ta.po
po/ta.po
+12
-0
te.po
po/te.po
+12
-0
th.po
po/th.po
+14
-0
tr.po
po/tr.po
+14
-0
uk.po
po/uk.po
+14
-0
wa.po
po/wa.po
+12
-0
wine.pot
po/wine.pot
+12
-0
zh_CN.po
po/zh_CN.po
+14
-0
zh_TW.po
po/zh_TW.po
+14
-0
No files found.
dlls/jscript/dispex.c
View file @
0f4d4f71
...
...
@@ -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
);
...
...
dlls/jscript/engine.c
View file @
0f4d4f71
...
...
@@ -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
;
...
...
dlls/jscript/engine.h
View file @
0f4d4f71
...
...
@@ -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
;
...
...
dlls/jscript/error.c
View file @
0f4d4f71
...
...
@@ -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
;
...
...
dlls/jscript/jscript.c
View file @
0f4d4f71
...
...
@@ -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
)
...
...
dlls/jscript/jscript.rc
View file @
0f4d4f71
...
...
@@ -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
...
...
dlls/jscript/resource.h
View file @
0f4d4f71
...
...
@@ -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
po/ar.po
View file @
0f4d4f71
...
...
@@ -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 "رقم متوقع"
...
...
po/ast.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/bg.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/ca.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/cs.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/da.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/de.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/el.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/en.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/en_US.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/eo.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/es.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/fa.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/fi.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/fr.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/he.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/hi.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/hr.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/hu.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/it.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/ja.po
View file @
0f4d4f71
...
...
@@ -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 "数値を期待していました"
...
...
po/ko.po
View file @
0f4d4f71
...
...
@@ -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 "숫자가 필요합니다"
...
...
po/lt.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/ml.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/nb_NO.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/nl.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/or.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/pa.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/pl.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/pt_BR.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/pt_PT.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/rm.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/ro.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/ru.po
View file @
0f4d4f71
...
...
@@ -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 "Ожидается число"
...
...
po/si.po
View file @
0f4d4f71
...
...
@@ -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 "නොම්බරයක් අපේක්ෂා කරේ"
...
...
po/sk.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/sl.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/sr_RS@cyrillic.po
View file @
0f4d4f71
...
...
@@ -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 "Очекивани број"
...
...
po/sr_RS@latin.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/sv.po
View file @
0f4d4f71
...
...
@@ -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"
...
...
po/ta.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/te.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/th.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/tr.po
View file @
0f4d4f71
...
...
@@ -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ı"
...
...
po/uk.po
View file @
0f4d4f71
...
...
@@ -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 "Очікується число"
...
...
po/wa.po
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/wine.pot
View file @
0f4d4f71
...
...
@@ -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 ""
...
...
po/zh_CN.po
View file @
0f4d4f71
...
...
@@ -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 "期望得到数字"
...
...
po/zh_TW.po
View file @
0f4d4f71
...
...
@@ -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 "預期為編號"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment