|
@@ -1040,7 +1040,7 @@ void SceneTreeDock::_tool_selected(int p_tool, bool p_confirm_override) {
|
|
|
|
|
|
// Fire confirmation dialog when children are editable.
|
|
|
if (editable && !placeholder) {
|
|
|
- placeholder_editable_instance_remove_dialog->set_text(TTR("Enabling \"Load As Placeholder\" will disable \"Editable Children\" and cause all properties of the node to be reverted to their default."));
|
|
|
+ placeholder_editable_instance_remove_dialog->set_text(TTR("Enabling \"Load as Placeholder\" will disable \"Editable Children\" and cause all properties of the node to be reverted to their default."));
|
|
|
placeholder_editable_instance_remove_dialog->popup_centered();
|
|
|
break;
|
|
|
}
|
|
@@ -3149,13 +3149,13 @@ void SceneTreeDock::_tree_rmb(const Vector2 &p_menu_pos) {
|
|
|
bool placeholder = selection[0]->get_scene_instance_load_placeholder();
|
|
|
if (profile_allow_editing) {
|
|
|
menu->add_check_item(TTR("Editable Children"), TOOL_SCENE_EDITABLE_CHILDREN);
|
|
|
- menu->add_check_item(TTR("Load As Placeholder"), TOOL_SCENE_USE_PLACEHOLDER);
|
|
|
+ menu->add_check_item(TTR("Load as Placeholder"), TOOL_SCENE_USE_PLACEHOLDER);
|
|
|
menu->add_item(TTR("Make Local"), TOOL_SCENE_MAKE_LOCAL);
|
|
|
}
|
|
|
menu->add_icon_item(get_editor_theme_icon(SNAME("Load")), TTR("Open in Editor"), TOOL_SCENE_OPEN);
|
|
|
if (profile_allow_editing) {
|
|
|
menu->set_item_checked(menu->get_item_idx_from_text(TTR("Editable Children")), editable);
|
|
|
- menu->set_item_checked(menu->get_item_idx_from_text(TTR("Load As Placeholder")), placeholder);
|
|
|
+ menu->set_item_checked(menu->get_item_idx_from_text(TTR("Load as Placeholder")), placeholder);
|
|
|
}
|
|
|
}
|
|
|
}
|