diff options
author | 0neGal <mail@0negal.com> | 2023-09-16 02:17:46 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-09-16 02:20:05 +0200 |
commit | b125018808b43fac9f5c81d7e7b07ec92eef30fc (patch) | |
tree | 1356b2236b3f26525d1fc13f10b684ac0baebb30 /src/index.js | |
parent | a91f0d2eac46510c109a4faebf520f68a3456aab (diff) | |
download | Viper-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/index.js')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index b8a9f97..2a7f4d7 100644 --- a/src/index.js +++ b/src/index.js @@ -209,7 +209,7 @@ ipcMain.on("setlang", (event, lang) => { ipcMain.on("update-northstar", async () => { if (await is_running.game()) { - return win_show.alert(lang("general.autoupdates.gamerunning")); + return win_show.alert(lang("general.auto_updates.game_running")); } update.northstar(); |