diff options
author | 0neGal <mail@0negal.com> | 2022-01-03 17:25:47 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-03 17:25:47 +0100 |
commit | 0c30429ab4b0a941f00b7ced79065ef05575d583 (patch) | |
tree | 1490ad9ad699210279af7def48df39fd9c57403e | |
parent | ea8e9ac988561162f8594525ad044cf94f0f1ef4 (diff) | |
download | Viper-0c30429ab4b0a941f00b7ced79065ef05575d583.tar.gz Viper-0c30429ab4b0a941f00b7ced79065ef05575d583.zip |
fixed missingpath localization
-rw-r--r-- | src/app/main.js | 2 | ||||
-rw-r--r-- | src/utils.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.js b/src/app/main.js index d30489e..8cd00a3 100644 --- a/src/app/main.js +++ b/src/app/main.js @@ -21,7 +21,7 @@ if (fs.existsSync("viper.json")) { settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); } else { - alert(lang("general.missinggamepath")); + alert(lang("general.missingpath")); setpath(); } diff --git a/src/utils.js b/src/utils.js index e378366..35c8932 100644 --- a/src/utils.js +++ b/src/utils.js @@ -30,7 +30,7 @@ if (fs.existsSync("viper.json")) { settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); } else { - console.log(lang("general.missinggamepath")); + console.log(lang("general.missingpath")); } function setpath(win) { |