diff --git a/app/frontend/templates/server/wizard.html b/app/frontend/templates/server/wizard.html
index 5025a0ce..b9ccbf2b 100644
--- a/app/frontend/templates/server/wizard.html
+++ b/app/frontend/templates/server/wizard.html
@@ -187,11 +187,12 @@
{% if not data["server_api"] and data["online"] %}
{{
- translate('error', 'serverJars1', data['lang']) }} {{
translate('error',
'craftyStatus', data['lang']) }}
- {{ translate('error', 'serverJars2', data['lang']) }}
+ {{ translate('error', 'bigBucket2', data['lang']) }}
{{ translate('error', 'selfHost',
+ data['lang'])}}
{% end %}
{% if not data["online"] %}
@@ -1217,7 +1218,6 @@
newOption = document.createElement("option");
newOption.value = idx + "|" + type; // assumes option string and value are the same
newOption.text = type;
- console.log(type)
// add the new option
try {
cSelect.add(newOption); // this will fail in DOM browsers but is needed for IE
@@ -1247,7 +1247,6 @@
const type_select = document.getElementById('server_jar')
const tidx = type_select.selectedIndex;
const val = type_select.options[tidx].value;
- console.log(val);
let jcSelect = {};
if (val == 'None') {
jcSelect = document.getElementById("server_type");
diff --git a/app/translations/en_EN.json b/app/translations/en_EN.json
index 5c48b873..84abdb78 100644
--- a/app/translations/en_EN.json
+++ b/app/translations/en_EN.json
@@ -203,8 +203,9 @@
"not-downloaded": "We can't seem to find your executable file. Has it finished downloading? Are the permissions set to executable?",
"portReminder": "We have detected this is the first time {} has been run. Make sure to forward port {} through your router/firewall to make this remotely accessible from the internet.",
"privMsg": "and the ",
- "serverJars1": "Server JARs API unreachable. Please check",
- "serverJars2": "for the most up to date information.",
+ "bigBucket1": "Big Bucket Health Check Failed. Please check",
+ "bigBucket2": "for the most up to date information.",
+ "selfHost": "If you are self-hosting this repo please check your address or consult our troubleshooting guide.",
"start-error": "Server {} failed to start with error code: {}",
"superError": "You must be a super user to complete this action.",
"terribleFailure": "What a Terrible Failure!"
@@ -671,4 +672,4 @@
"webhook_body": "Webhook Body",
"webhooks": "Webhooks"
}
-}
+}
\ No newline at end of file