You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-05 17:15:09 +00:00
Change ".." punctuation for "..." in editor strings (#16507)
(cherry picked from commit 1c419531a0)
This commit is contained in:
committed by
Rémi Verschelde
parent
e09170dffa
commit
403f7dc35f
@@ -408,13 +408,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: {}
|
||||
}
|
||||
@@ -1383,7 +1383,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);
|
||||
|
||||
Reference in New Issue
Block a user