1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

i18n: Sync translation template with current source

Misc fixes to source strings.
This commit is contained in:
Rémi Verschelde
2019-01-07 16:57:52 +01:00
parent d2b17d8d60
commit ac8ae09bc3
60 changed files with 9287 additions and 2112 deletions

View File

@@ -79,7 +79,7 @@ void AnimationNodeBlendTreeEditor::_update_options_menu() {
add_node->get_popup()->add_item(TTR("Paste"), MENU_PASTE);
}
add_node->get_popup()->add_separator();
add_node->get_popup()->add_item(TTR("Load.."), MENU_LOAD_FILE);
add_node->get_popup()->add_item(TTR("Load..."), MENU_LOAD_FILE);
}
Size2 AnimationNodeBlendTreeEditor::get_minimum_size() const {
@@ -866,7 +866,7 @@ AnimationNodeBlendTreeEditor::AnimationNodeBlendTreeEditor() {
add_node = memnew(MenuButton);
graph->get_zoom_hbox()->add_child(add_node);
add_node->set_text(TTR("Add Node.."));
add_node->set_text(TTR("Add Node..."));
graph->get_zoom_hbox()->move_child(add_node, 0);
add_node->get_popup()->connect("id_pressed", this, "_add_node");
add_node->connect("about_to_show", this, "_update_options_menu");