1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Fix TTR misuse

This commit is contained in:
SkyJJ
2020-07-24 15:14:56 +02:00
parent 3f1fc5af7a
commit 280d4e2965
7 changed files with 43 additions and 43 deletions

View File

@@ -411,7 +411,7 @@ void AnimationPlayerEditor::_animation_remove() {
String current = animation->get_item_text(animation->get_selected());
delete_dialog->set_text(TTR("Delete Animation '" + current + "'?"));
delete_dialog->set_text(vformat(TTR("Delete Animation '%s'?"), current));
delete_dialog->popup_centered();
}