aboutsummaryrefslogtreecommitdiff
path: root/src/modules/launch.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2023-09-16 02:17:46 +0200
committer0neGal <mail@0negal.com>2023-09-16 02:20:05 +0200
commitb125018808b43fac9f5c81d7e7b07ec92eef30fc (patch)
tree1356b2236b3f26525d1fc13f10b684ac0baebb30 /src/modules/launch.js
parenta91f0d2eac46510c109a4faebf520f68a3456aab (diff)
downloadViper-b125018808b43fac9f5c81d7e7b07ec92eef30fc.tar.gz
Viper-b125018808b43fac9f5c81d7e7b07ec92eef30fc.zip
made some lang keys far more logical
Most of these are from back when Viper was originally started, I also removed a few keys as they were no longer in use, but were forgotten about, most of these are from pre-v1.0.0 aka, the old smaller UI
Diffstat (limited to 'src/modules/launch.js')
-rw-r--r--src/modules/launch.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/launch.js b/src/modules/launch.js
index 8801d1b..24ea4b2 100644
--- a/src/modules/launch.js
+++ b/src/modules/launch.js
@@ -15,8 +15,8 @@ console = require("./console");
function launch(game_version) {
// return early, and show error message if on Linux
if (process.platform == "linux") {
- win.alert(lang("cli.launch.linuxerror"));
- console.error(lang("cli.launch.linuxerror"));
+ win.alert(lang("cli.launch.linux_error"));
+ console.error(lang("cli.launch.linux_error"));
cli.exit(1);
return;
}