diff --git a/app/assets/js/scripts/landing.js b/app/assets/js/scripts/landing.js
index 7d65ed60..b675cea9 100644
--- a/app/assets/js/scripts/landing.js
+++ b/app/assets/js/scripts/landing.js
@@ -202,7 +202,7 @@ const refreshMojangStatuses = async function(){
const service = statuses[i]
const tooltipHTML = `
- ${Lang.queryEJS('landing.mojangStatus.icon')}
+ ${Lang.queryJS('landing.mojangStatus.icon')}
${service.name}
`
if(service.essential){
@@ -335,7 +335,7 @@ async function asyncSystemScan(effectiveJavaOptions, launchAfter = true){
$('#overlayContent').fadeOut(250, () => {
//$('#overlayDismiss').toggle(false)
setOverlayContent(
- Lang.queryJS('landing.systemScan.javaRequired'),
+ Lang.queryJS('landing.systemScan.javaRequired', { 'major': effectiveJavaOptions.suggestedMajor }),
Lang.queryJS('landing.systemScan.javaRequiredMessage', { 'major': effectiveJavaOptions.suggestedMajor }),
Lang.queryJS('landing.systemScan.javaRequiredDismiss'),
Lang.queryJS('landing.systemScan.javaRequiredCancel')
@@ -621,7 +621,7 @@ async function dlAsync(login = true) {
DiscordWrapper.initRPC(distro.rawDistribution.discord, serv.rawServer.discord)
hasRPC = true
proc.on('close', (code, signal) => {
- loggerLaunchSuite.info(Lang.queryJS('landing.dlAsync.shuttingDownRPC'))
+ loggerLaunchSuite.info('Shutting down Discord Rich Presence..')
DiscordWrapper.shutdownRPC()
hasRPC = false
proc = null
diff --git a/app/assets/lang/en_US.toml b/app/assets/lang/en_US.toml
index d6522528..397db6c7 100644
--- a/app/assets/lang/en_US.toml
+++ b/app/assets/lang/en_US.toml
@@ -235,7 +235,6 @@ preparingToLaunch = "Preparing to launch.."
launchingGame = "Launching game.."
launchWrapperNotDownloaded = "The main file, LaunchWrapper, failed to download properly. As a result, the game cannot launch.
To fix this issue, temporarily turn off your antivirus software and launch the game again.
If you have time, please submit an issue and let us know what antivirus software you use. We'll contact them and try to straighten things out."
doneEnjoyServer = "Done. Enjoy the server!"
-shuttingDownRPC = "Shutting down Discord Rich Presence.."
checkConsoleForDetails = "Please check the console (CTRL + Shift + i) for more details."
[js.landing.news]