diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 00:24:52 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 16:55:50 +0800 |
commit | 26581ca574a5299762ae8522e1545f640ecade2b (patch) | |
tree | d9a4bd26b3ad35d8e9799805d4190bad435df116 /editor/editor_autoload_settings.cpp | |
parent | 929ee61170ec4d431d6d2cfeddccdec2a59a11b7 (diff) | |
download | redot-engine-26581ca574a5299762ae8522e1545f640ecade2b.tar.gz |
Add some missing translatable editor strings
Diffstat (limited to 'editor/editor_autoload_settings.cpp')
-rw-r--r-- | editor/editor_autoload_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_autoload_settings.cpp b/editor/editor_autoload_settings.cpp index f843733f2c..a6defd0e14 100644 --- a/editor/editor_autoload_settings.cpp +++ b/editor/editor_autoload_settings.cpp @@ -890,7 +890,7 @@ EditorAutoloadSettings::EditorAutoloadSettings() { hbc->add_child(autoload_add_path); autoload_add_path->set_h_size_flags(Control::SIZE_EXPAND_FILL); autoload_add_path->set_clear_button_enabled(true); - autoload_add_path->set_placeholder(vformat(TTR(R"(Set path or press "%s" to create a script.)"), TTR("Add"))); + autoload_add_path->set_placeholder(vformat(TTR("Set path or press \"%s\" to create a script."), TTR("Add"))); autoload_add_path->connect("text_changed", callable_mp(this, &EditorAutoloadSettings::_autoload_path_text_changed)); browse_button = memnew(Button); |