You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +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:
@@ -251,7 +251,7 @@ void CreateDialog::_notification(int p_what) {
|
||||
void CreateDialog::set_base_type(const String& p_base) {
|
||||
|
||||
base_type=p_base;
|
||||
set_title(TTR("Create New ")+p_base);
|
||||
set_title(TTR("Create New")+" "+p_base);
|
||||
_update_search();
|
||||
}
|
||||
|
||||
@@ -541,7 +541,7 @@ void CreateDialog::_bind_methods() {
|
||||
|
||||
void CreateDialog::set_base_type(const String& p_base) {
|
||||
|
||||
set_title(TTR("Create ")+p_base+" Type");
|
||||
set_title(vformat(TTR("Create %s Type"),p_base));
|
||||
|
||||
if (base==p_base)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user