diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-13 08:36:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-13 08:36:47 +0100 |
| commit | b0aeecc02b0669d36ea31a2e5c36797bd5c6067c (patch) | |
| tree | 3cf232804ccef9e3d084eca9d7df91960b303de7 /editor/create_dialog.cpp | |
| parent | c68b031b052467096a6d8f059e791facb09d82fa (diff) | |
| parent | 24df9f3707767f94a8b7842a24013aa3709b1805 (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.cpp | 2 |
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(); } |