1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fix various i18n failures

This commit is contained in:
Haoyu Qiu
2021-08-03 23:53:36 +08:00
parent 80fc90e82a
commit 04ad838e2c
3 changed files with 16 additions and 12 deletions

View File

@@ -889,8 +889,8 @@ ExportTemplateManager::ExportTemplateManager() {
request_mirrors->connect("request_completed", callable_mp(this, &ExportTemplateManager::_refresh_mirrors_completed));
mirror_options_button = memnew(MenuButton);
mirror_options_button->get_popup()->add_item("Open in Web Browser", VISIT_WEB_MIRROR);
mirror_options_button->get_popup()->add_item("Copy Mirror URL", COPY_MIRROR_URL);
mirror_options_button->get_popup()->add_item(TTR("Open in Web Browser"), VISIT_WEB_MIRROR);
mirror_options_button->get_popup()->add_item(TTR("Copy Mirror URL"), COPY_MIRROR_URL);
download_install_hb->add_child(mirror_options_button);
mirror_options_button->get_popup()->connect("id_pressed", callable_mp(this, &ExportTemplateManager::_mirror_options_button_cbk));