msgbox & translations

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2022-10-14 11:19:49 +08:00
parent 5ddb10366e
commit 77de0d05f9
42 changed files with 271 additions and 64 deletions

View File

@@ -238,8 +238,8 @@ impl InvokeUiSession for SciterHandler {
self.call("updatePi", &make_args!(pi_sciter));
}
fn msgbox(&self, msgtype: &str, title: &str, text: &str, retry: bool) {
self.call2("msgbox_retry", &make_args!(msgtype, title, text, retry));
fn msgbox(&self, msgtype: &str, title: &str, text: &str, link: &str, retry: bool) {
self.call2("msgbox_retry", &make_args!(msgtype, title, text, link, retry));
}
fn new_message(&self, msg: String) {