From fca481e7bd1195afd7c3b57f0fbcd23166799686 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 25 Mar 2019 01:54:29 +0100 Subject: [PATCH] Improve wording of various messages and make casing more consistent This also adds the number of selected projects to the confirmation dialog that appears before removing projects. --- visual_script_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visual_script_editor.cpp b/visual_script_editor.cpp index 7e54891..c32eed3 100644 --- a/visual_script_editor.cpp +++ b/visual_script_editor.cpp @@ -3564,7 +3564,7 @@ VisualScriptEditor::VisualScriptEditor() { graph->connect("scroll_offset_changed", this, "_graph_ofs_changed"); select_func_text = memnew(Label); - select_func_text->set_text(TTR("Select or create a function to edit graph")); + select_func_text->set_text(TTR("Select or create a function to edit its graph.")); select_func_text->set_align(Label::ALIGN_CENTER); select_func_text->set_valign(Label::VALIGN_CENTER); select_func_text->set_h_size_flags(SIZE_EXPAND_FILL);