summaryrefslogtreecommitdiff
path: root/tools/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-05-04 15:28:37 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-05-04 15:28:37 +0200
commitfb277dbde6a337a3294867f54cebc54c7cd91653 (patch)
treeea3dcb0f1ba9dd7d64fa35790994700af4becff9 /tools/editor/editor_file_system.cpp
parentdd419e8efa347a8c1d6be464a89ec056cb4e4712 (diff)
i18n: Don't make print_line calls translatable
Diffstat (limited to 'tools/editor/editor_file_system.cpp')
-rw-r--r--tools/editor/editor_file_system.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp
index 9b30436507..6423b75abc 100644
--- a/tools/editor/editor_file_system.cpp
+++ b/tools/editor/editor_file_system.cpp
@@ -873,7 +873,7 @@ void EditorFileSystem::scan_sources() {
s.priority=Thread::PRIORITY_LOW;
thread_sources = Thread::create(_thread_func_sources,this,s);
//tree->hide();
- //print_line(TTR("SCAN BEGIN!"));
+ //print_line("SCAN BEGIN!");
//progress->show();
}
@@ -900,7 +900,7 @@ void EditorFileSystem::_notification(int p_what) {
Thread::wait_to_finish(thread);
memdelete(thread);
thread=NULL;
- WARN_PRINTS(TTR("Scan thread aborted..."));
+ WARN_PRINTS("Scan thread aborted...");
set_process(false);
}
@@ -1247,7 +1247,7 @@ void EditorFileSystem::update_file(const String& p_file) {
}
- //print_line(TTR("UPDATING: ")+p_file);
+ //print_line("UPDATING: "+p_file);
fs->files[cpos]->type=type;
fs->files[cpos]->modified_time=FileAccess::get_modified_time(p_file);
fs->files[cpos]->meta=_get_meta(p_file);