diff options
| author | DimOkGamer | 2016-06-07 22:48:16 +0300 |
|---|---|---|
| committer | DimOkGamer | 2016-06-07 22:48:16 +0300 |
| commit | ceae11ee290debf84ab06494df1c7a88e0c0e65d (patch) | |
| tree | 059eb0fab7adeea002dbdc13f5c21f97d8b09213 /tools/editor/project_manager.cpp | |
| parent | ce328ce99b6dd41862dea3c95aa8621dc4b83d15 (diff) | |
| download | godot-ceae11ee290debf84ab06494df1c7a88e0c0e65d.tar.gz godot-ceae11ee290debf84ab06494df1c7a88e0c0e65d.tar.zst godot-ceae11ee290debf84ab06494df1c7a88e0c0e65d.zip | |
Fixed localization in file dialogs
and two more lines.
2 fixes in ru.po.
Diffstat (limited to 'tools/editor/project_manager.cpp')
| -rw-r--r-- | tools/editor/project_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/project_manager.cpp b/tools/editor/project_manager.cpp index 84d6a8768..7f2f8e338 100644 --- a/tools/editor/project_manager.cpp +++ b/tools/editor/project_manager.cpp @@ -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); |
