1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fixed localization in file dialogs

and two more lines.
2 fixes in ru.po.
This commit is contained in:
DimOkGamer
2016-06-07 22:48:16 +03:00
parent ce328ce99b
commit ceae11ee29
5 changed files with 24 additions and 24 deletions

View File

@@ -866,10 +866,10 @@ ProjectManager::ProjectManager() {
panel->add_child(vb);
vb->set_area_as_parent_rect(20);
OS::get_singleton()->set_window_title(_MKSTR(VERSION_NAME)" - Project Manager");
OS::get_singleton()->set_window_title(_MKSTR(VERSION_NAME)+TTR(" - Project Manager"));
Label *l = memnew( Label );
l->set_text(_MKSTR(VERSION_NAME)" - Project Manager");
l->set_text(_MKSTR(VERSION_NAME)+TTR(" - Project Manager"));
l->add_font_override("font",get_font("large","Fonts"));
l->set_align(Label::ALIGN_CENTER);
vb->add_child(l);