aboutsummaryrefslogtreecommitdiff
path: root/editor/export_template_manager.cpp
diff options
context:
space:
mode:
authorPoommetee Ketson2017-12-12 22:57:17 +0700
committerPoommetee Ketson2017-12-12 23:04:37 +0700
commit24df9f3707767f94a8b7842a24013aa3709b1805 (patch)
tree6afe7e0d6be6e1d886c2c40e929d9f50301f22f1 /editor/export_template_manager.cpp
parent55962ce28fec5f06016ed3f66f52e6e84b817dbe (diff)
downloadgodot-24df9f3707767f94a8b7842a24013aa3709b1805.tar.gz
godot-24df9f3707767f94a8b7842a24013aa3709b1805.tar.zst
godot-24df9f3707767f94a8b7842a24013aa3709b1805.zip
Diffstat (limited to 'editor/export_template_manager.cpp')
-rw-r--r--editor/export_template_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp
index 2aad4774b..cdb725632 100644
--- a/editor/export_template_manager.cpp
+++ b/editor/export_template_manager.cpp
@@ -385,7 +385,7 @@ void ExportTemplateManager::_http_download_templates_completed(int p_status, int
template_list_state->set_text(TTR("No response."));
} break;
case HTTPRequest::RESULT_REQUEST_FAILED: {
- template_list_state->set_text(TTR("Req. Failed."));
+ template_list_state->set_text(TTR("Request Failed."));
} break;
case HTTPRequest::RESULT_REDIRECT_LIMIT_REACHED: {
template_list_state->set_text(TTR("Redirect Loop."));
@@ -465,7 +465,7 @@ void ExportTemplateManager::_notification(int p_what) {
break;
case HTTPClient::STATUS_CONNECTING: status = TTR("Connecting.."); break;
case HTTPClient::STATUS_CANT_CONNECT:
- status = TTR("Can't Conect");
+ status = TTR("Can't Connect");
errored = true;
break;
case HTTPClient::STATUS_CONNECTED: status = TTR("Connected"); break;