diff --git a/app/assets/js/scripts/landing.js b/app/assets/js/scripts/landing.js index 06d29ecb..68f6f5de 100644 --- a/app/assets/js/scripts/landing.js +++ b/app/assets/js/scripts/landing.js @@ -165,14 +165,14 @@ function updateSelectedServer(serv){ } ConfigManager.setSelectedServer(serv != null ? serv.rawServer.id : null) ConfigManager.save() - server_selection_button.innerHTML = Lang.queryJS('landing.selectedServer.icon') + (serv != null ? serv.rawServer.name : Lang.queryJS('landing.noSelection')) + server_selection_button.innerHTML = '• ' + (serv != null ? serv.rawServer.name : Lang.queryJS('landing.noSelection')) if(getCurrentView() === VIEWS.settings){ animateSettingsTabRefresh() } setLaunchEnabled(serv != null) } // Real text is set in uibinder.js on distributionIndexDone. -server_selection_button.innerHTML = Lang.queryJS('landing.selectedServer.icon') + Lang.queryJS('landing.selectedServer.loading') +server_selection_button.innerHTML = '• ' + Lang.queryJS('landing.selectedServer.loading') server_selection_button.onclick = async e => { e.target.blur() await toggleServerSelection(true) @@ -202,7 +202,7 @@ const refreshMojangStatuses = async function(){ const service = statuses[i] const tooltipHTML = `
- ${Lang.queryJS('landing.mojangStatus.icon')} + ${service.name}
` if(service.essential){ diff --git a/app/assets/lang/en_US.toml b/app/assets/lang/en_US.toml index 32868d37..bcdc2992 100644 --- a/app/assets/lang/en_US.toml +++ b/app/assets/lang/en_US.toml @@ -6,7 +6,6 @@ settingsTooltip = "Settings" serverStatus = "SERVER" serverStatusPlaceholder = "OFFLINE" mojangStatus = "MOJANG STATUS" -mojangStatusIcon = "•" mojangStatusTooltipTitle = "Services" mojangStatusNETitle = "Non Essential" newsButton = "NEWS" @@ -21,7 +20,6 @@ newsErrorRetryButton = "Try Again" newsErrorNoneSpan = "No News" [ejs.login] -loginCancelIcon = "X" loginCancelText = "Cancel" loginSubheader = "MINECRAFT LOGIN" loginEmailError = "* Invalid Value" @@ -161,13 +159,9 @@ okay = "Okay" noAccountSelected = "No Account Selected" [js.landing.selectedServer] -icon = "• " noSelection = "No Server Selected" loading = "Loading.." -[js.landing.mojangStatus] -icon = "•" - [js.landing.serverStatus] server = "SERVER" offline = "OFFLINE" diff --git a/app/landing.ejs b/app/landing.ejs index 16b98f9d..7630cffa 100644 --- a/app/landing.ejs +++ b/app/landing.ejs @@ -102,7 +102,7 @@
<%- lang('landing.mojangStatus') %> - <%- lang('landing.mojangStatusIcon') %> +
<%- lang('landing.mojangStatusTooltipTitle') %>
diff --git a/app/login.ejs b/app/login.ejs index d059abed..2da80729 100644 --- a/app/login.ejs +++ b/app/login.ejs @@ -1,7 +1,7 @@