diff options
| author | Rémi Verschelde | 2017-12-13 08:36:47 +0100 |
|---|---|---|
| committer | GitHub | 2017-12-13 08:36:47 +0100 |
| commit | b0aeecc02b0669d36ea31a2e5c36797bd5c6067c (patch) | |
| tree | 3cf232804ccef9e3d084eca9d7df91960b303de7 /editor/plugins/asset_library_editor_plugin.cpp | |
| parent | c68b031b052467096a6d8f059e791facb09d82fa (diff) | |
| parent | 24df9f3707767f94a8b7842a24013aa3709b1805 (diff) | |
| download | godot-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.cpp | 2 |
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"); |
