1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

i18n: Don't make print_line calls translatable

This commit is contained in:
Rémi Verschelde
2016-05-04 15:28:37 +02:00
parent dd419e8efa
commit fb277dbde6
21 changed files with 80 additions and 80 deletions

View File

@@ -275,7 +275,7 @@ void EditorSettings::create() {
if (OS::get_singleton()->is_stdout_verbose()) {
print_line(TTR("EditorSettings: Load OK!"));
print_line("EditorSettings: Load OK!");
}
singleton->setup_network();
@@ -365,7 +365,7 @@ void EditorSettings::save() {
}
if (OS::get_singleton()->is_stdout_verbose()) {
print_line(TTR("EditorSettings Save OK!"));
print_line("EditorSettings Save OK!");
}
}