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:
@@ -333,11 +333,11 @@ void SpriteFramesEditor::_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));*/
|
||||
|
||||
}
|
||||
@@ -530,7 +530,7 @@ void SpriteFramesEditor::_update_library(bool p_skip_selector) {
|
||||
|
||||
if (frames->get_frame(edited_anim,i).is_null()) {
|
||||
|
||||
name=itos(i)+TTR(": (empty)");
|
||||
name=itos(i)+": "+TTR("(empty)");
|
||||
|
||||
} else {
|
||||
name=itos(i)+": "+frames->get_frame(edited_anim,i)->get_name();
|
||||
|
||||
Reference in New Issue
Block a user