summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-08 07:54:05 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-06-08 07:54:05 -0300
commit040c87ea7b81c8235435626bca02f1046b059c1b (patch)
tree837b28e247c30e4732501e98cba433183b6272cd /tools/editor
parent732e5be3fff2883feb4f1434bec953f936e7c9e7 (diff)
parent9c762fef0fb8c4af6cd2b3fb97525114b2d35d27 (diff)
Merge pull request #5093 from DimOkGamer/more_translatable_strings
Fixed localization in file dialogs
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/editor_log.cpp2
-rw-r--r--tools/editor/editor_node.cpp2
-rw-r--r--tools/editor/project_manager.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/editor/editor_log.cpp b/tools/editor/editor_log.cpp
index 8d977b881b..20613467d3 100644
--- a/tools/editor/editor_log.cpp
+++ b/tools/editor/editor_log.cpp
@@ -174,7 +174,7 @@ EditorLog::EditorLog() {
HBoxContainer *hb = memnew( HBoxContainer );
vb->add_child(hb);
title = memnew( Label );
- title->set_text(" Output:");
+ title->set_text(TTR(" Output:"));
title->set_h_size_flags(SIZE_EXPAND_FILL);
hb->add_child(title);
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index cc5a44a650..8dd579b06c 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -1937,7 +1937,7 @@ void EditorNode::_run(bool p_current,const String& p_custom) {
current_option=-1;
//accept->get_cancel()->hide();
accept->get_ok()->set_text(TTR("I see.."));
- accept->set_text("No main scene has ever been defined.\nSelect one from \"Project Settings\" under the 'application' category.");
+ accept->set_text(TTR("No main scene has ever been defined.\nSelect one from \"Project Settings\" under the 'application' category."));
accept->popup_centered_minsize();
return;
}
diff --git a/tools/editor/project_manager.cpp b/tools/editor/project_manager.cpp
index 84d6a87688..7f2f8e338f 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);