fix: proper language export and restyle of game path notification

This commit is contained in:
SpikeHD
2023-06-06 18:07:54 -07:00
parent fe974a1ae1
commit 044be37e9e
5 changed files with 18 additions and 39 deletions

View File

@@ -8,7 +8,8 @@
"ip_placeholder": "Server Address...",
"port_placeholder": "Port...",
"files_downloading": "Files Downloading: ",
"files_extracting": "Files Extracting: "
"files_extracting": "Files Extracting: ",
"game_path_notify": "Game path not found, remember to set it in !"
},
"options": {
"enabled": "Enabled",

View File

@@ -114,13 +114,13 @@ pub fn unzip(
}
if zipfile.contains("GIMI") {
window
.emit(
"migoto_extracted",
destpath.to_string() + "3DMigoto Loader.exe",
)
.unwrap();
}
window
.emit(
"migoto_extracted",
destpath.to_string() + "3DMigoto Loader.exe",
)
.unwrap();
}
// Delete zip file
match std::fs::remove_file(&zipfile) {