summaryrefslogtreecommitdiff
path: root/editor/create_dialog.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-12-13 08:36:47 +0100
committerGitHub <noreply@github.com>2017-12-13 08:36:47 +0100
commitb0aeecc02b0669d36ea31a2e5c36797bd5c6067c (patch)
tree3cf232804ccef9e3d084eca9d7df91960b303de7 /editor/create_dialog.cpp
parentc68b031b052467096a6d8f059e791facb09d82fa (diff)
parent24df9f3707767f94a8b7842a24013aa3709b1805 (diff)
Merge pull request #14596 from Noshyaar/pr
Enhance undoredo action name, TTR, cleanup
Diffstat (limited to 'editor/create_dialog.cpp')
-rw-r--r--editor/create_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp
index c058d290bf..2584d26fc4 100644
--- a/editor/create_dialog.cpp
+++ b/editor/create_dialog.cpp
@@ -370,7 +370,7 @@ void CreateDialog::_notification(int p_what) {
void CreateDialog::set_base_type(const String &p_base) {
base_type = p_base;
- set_title(TTR("Create New") + " " + p_base);
+ set_title(vformat(TTR("Create New %s"), p_base));
_update_search();
}