diff options
| author | Juan Linietsky | 2016-05-03 22:25:37 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-05-03 22:25:37 -0300 |
| commit | 567cb691ec49844101247bb9dc34bc2722f6af4f (patch) | |
| tree | caa577fdc22feec8869e66b32be34db0c90f8aa8 /tools/editor/fileserver/editor_file_server.cpp | |
| parent | c7e8def44696da9ddf0b459e166280668c84c4cb (diff) | |
| download | godot-567cb691ec49844101247bb9dc34bc2722f6af4f.tar.gz godot-567cb691ec49844101247bb9dc34bc2722f6af4f.tar.zst godot-567cb691ec49844101247bb9dc34bc2722f6af4f.zip | |
Diffstat (limited to 'tools/editor/fileserver/editor_file_server.cpp')
| -rw-r--r-- | tools/editor/fileserver/editor_file_server.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/editor/fileserver/editor_file_server.cpp b/tools/editor/fileserver/editor_file_server.cpp index ea95e4da1..82dcd7819 100644 --- a/tools/editor/fileserver/editor_file_server.cpp +++ b/tools/editor/fileserver/editor_file_server.cpp @@ -124,13 +124,13 @@ void EditorFileServer::_subthread_start(void*s) { s.parse_utf8(fileutf8.ptr()); if (cmd==FileAccessNetwork::COMMAND_FILE_EXISTS) { - print_line("FILE EXISTS: "+s); + print_line(TTR("FILE EXISTS: ")+s); } if (cmd==FileAccessNetwork::COMMAND_GET_MODTIME) { - print_line("MOD TIME: "+s); + print_line(TTR("MOD TIME: ")+s); } if (cmd==FileAccessNetwork::COMMAND_OPEN_FILE) { - print_line("OPEN: "+s); + print_line(TTR("OPEN: ")+s); } if ( !s.begins_with("res://")) { @@ -218,7 +218,7 @@ void EditorFileServer::_subthread_start(void*s) { int read = cd->files[id]->get_buffer(buf.ptr(),blocklen); ERR_CONTINUE(read<0); - print_line("GET BLOCK - offset: "+itos(offset)+", blocklen: "+itos(blocklen)); + print_line(TTR("GET BLOCK - offset: ")+itos(offset)+", blocklen: "+itos(blocklen)); //not found, continue encode_uint32(id,buf4); @@ -235,7 +235,7 @@ void EditorFileServer::_subthread_start(void*s) { } break; case FileAccessNetwork::COMMAND_CLOSE: { - print_line("CLOSED"); + print_line(TTR("CLOSED")); ERR_CONTINUE(!cd->files.has(id)); memdelete(cd->files[id]); cd->files.erase(id); |
