mirror of
https://github.com/godotengine/godot.git
synced 2025-10-21 08:53:35 +00:00
Fix vformat(), minor typos and word puzzles
This commit is contained in:
parent
d42807371c
commit
06e73522dc
6 changed files with 11 additions and 11 deletions
|
@ -191,10 +191,10 @@ void VisualScriptPropertySelector::_update_search() {
|
|||
if (type_filter.size() && type_filter.find(E->get().type) == -1)
|
||||
continue;
|
||||
|
||||
String get_text_raw = String(TTR("Get")) + String(" ") + E->get().name;
|
||||
String get_text_raw = String(vformat(TTR("Get %s"), E->get().name));
|
||||
String get_text = get_text_raw.capitalize();
|
||||
|
||||
String set_text_raw = String(TTR("Set ")) + String(" ") + E->get().name;
|
||||
String set_text_raw = String(vformat(TTR("Set %s"), E->get().name));
|
||||
String set_text = set_text_raw.capitalize();
|
||||
String input = search_box->get_text().capitalize();
|
||||
if (input == String() ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue