Merge pull request #3219 from nounoursheureux/change_subscene_string

Change Import > Sub-Scene to Import > Node from scene
This commit is contained in:
Rémi Verschelde 2016-01-06 11:48:22 +01:00
commit a82e6f0baa

View file

@ -415,7 +415,7 @@ void EditorNode::_rebuild_import_menu()
{
PopupMenu* p = import_menu->get_popup();
p->clear();
p->add_item("Sub-Scene", FILE_IMPORT_SUBSCENE);
p->add_item("Node from scene", FILE_IMPORT_SUBSCENE);
p->add_separator();
for (int i = 0; i < editor_import_export->get_import_plugin_count(); i++) {
p->add_item(editor_import_export->get_import_plugin(i)->get_visible_name(), IMPORT_PLUGIN_BASE + i);