You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
i18n: Proofreading of all strings
Done to ensure that no important identifiers are translatable, to fix compound strings using the new vformat() function, and some general English proofreading here and there.
This commit is contained in:
@@ -206,11 +206,11 @@ void ResourcePreloaderEditor::_delete_pressed() {
|
||||
|
||||
_delete_confirm_pressed(); //it has undo.. why bother with a dialog..
|
||||
/*
|
||||
dialog->set_title(TTR("Confirm..."));
|
||||
dialog->set_text(TTR("Remove Resource '")+tree->get_selected()->get_text(0)+"' ?");
|
||||
//dialog->get_cancel()->set_text(TTR("Cancel"));
|
||||
dialog->set_title("Confirm...");
|
||||
dialog->set_text("Remove Resource '"+tree->get_selected()->get_text(0)+"' ?");
|
||||
//dialog->get_cancel()->set_text("Cancel");
|
||||
//dialog->get_ok()->show();
|
||||
dialog->get_ok()->set_text(TTR("Remove"));
|
||||
dialog->get_ok()->set_text("Remove");
|
||||
dialog->popup_centered(Size2(300,60));*/
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user