aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/asset_library_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-12-13 08:36:47 +0100
committerGitHub2017-12-13 08:36:47 +0100
commitb0aeecc02b0669d36ea31a2e5c36797bd5c6067c (patch)
tree3cf232804ccef9e3d084eca9d7df91960b303de7 /editor/plugins/asset_library_editor_plugin.cpp
parentc68b031b052467096a6d8f059e791facb09d82fa (diff)
parent24df9f3707767f94a8b7842a24013aa3709b1805 (diff)
downloadgodot-b0aeecc02b0669d36ea31a2e5c36797bd5c6067c.tar.gz
godot-b0aeecc02b0669d36ea31a2e5c36797bd5c6067c.tar.zst
godot-b0aeecc02b0669d36ea31a2e5c36797bd5c6067c.zip
Merge pull request #14596 from Noshyaar/pr
Enhance undoredo action name, TTR, cleanup
Diffstat (limited to '')
-rw-r--r--editor/plugins/asset_library_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp
index 3ab8f318a..f04bc04d9 100644
--- a/editor/plugins/asset_library_editor_plugin.cpp
+++ b/editor/plugins/asset_library_editor_plugin.cpp
@@ -340,7 +340,7 @@ void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int
} break;
case HTTPRequest::RESULT_REQUEST_FAILED: {
error_text = TTR("Request failed, return code:") + " " + itos(p_code);
- status->set_text(TTR("Req. Failed."));
+ status->set_text(TTR("Request Failed."));
} break;
case HTTPRequest::RESULT_REDIRECT_LIMIT_REACHED: {
error_text = TTR("Request failed, too many redirects");