diff options
| author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-04-22 19:36:01 +0200 |
|---|---|---|
| committer | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-04-22 19:36:01 +0200 |
| commit | 1c419531a009f48aa074f9b5f93b98d387c33723 (patch) | |
| tree | 6beff4f51161e61e22b70266b5e0385496e35b6b /editor/plugins/asset_library_editor_plugin.cpp | |
| parent | ca25f1e6eae9ffd498ddba05f94e341827269fea (diff) | |
| download | redot-engine-1c419531a009f48aa074f9b5f93b98d387c33723.tar.gz | |
Change ".." punctuation for "..." in editor strings (#16507)
Diffstat (limited to 'editor/plugins/asset_library_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index c203b4b81e..23cdde299c 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -407,13 +407,13 @@ void EditorAssetLibraryItemDownload::_notification(int p_what) { switch (cstatus) { case HTTPClient::STATUS_RESOLVING: { - status->set_text(TTR("Resolving..")); + status->set_text(TTR("Resolving...")); } break; case HTTPClient::STATUS_CONNECTING: { - status->set_text(TTR("Connecting..")); + status->set_text(TTR("Connecting...")); } break; case HTTPClient::STATUS_REQUESTING: { - status->set_text(TTR("Requesting..")); + status->set_text(TTR("Requesting...")); } break; default: {} } @@ -1382,7 +1382,7 @@ EditorAssetLibrary::EditorAssetLibrary(bool p_templates_only) { support = memnew(MenuButton); search_hb2->add_child(support); - support->set_text(TTR("Support..")); + support->set_text(TTR("Support...")); support->get_popup()->add_check_item(TTR("Official"), SUPPORT_OFFICIAL); support->get_popup()->add_check_item(TTR("Community"), SUPPORT_COMMUNITY); support->get_popup()->add_check_item(TTR("Testing"), SUPPORT_TESTING); |
