summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-05-29 23:51:07 +0200
committerRémi Verschelde <remi@verschelde.fr>2016-05-29 23:51:07 +0200
commitd5fe48831a52acf808f4688ecf938406ad5e9c67 (patch)
treeb71e84399609a6016cf577a83b25a5d1d46259be
parentc7d24b7814b335fb9503f6a957ac5923a47da161 (diff)
parente623a50be623e3e714e28c2346d8130eb2f0e471 (diff)
Merge pull request #4888 from vnen/pr-remove-comment-ttr
Remove translatable strings in comments
-rw-r--r--tools/editor/io_plugins/editor_scene_import_plugin.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/editor/io_plugins/editor_scene_import_plugin.cpp b/tools/editor/io_plugins/editor_scene_import_plugin.cpp
index 3effb1d0aa..a4bbada931 100644
--- a/tools/editor/io_plugins/editor_scene_import_plugin.cpp
+++ b/tools/editor/io_plugins/editor_scene_import_plugin.cpp
@@ -1235,18 +1235,18 @@ EditorSceneImportDialog::EditorSceneImportDialog(EditorNode *p_editor, EditorSce
/*
this_import = memnew( OptionButton );
- this_import->add_item(TTR("Overwrite Existing Scene"));
- this_import->add_item(TTR("Overwrite Existing, Keep Materials"));
- this_import->add_item(TTR("Keep Existing, Merge with New"));
- this_import->add_item(TTR("Keep Existing, Ignore New"));
- vbc->add_margin_child(TTR("This Time:"),this_import);
+ this_import->add_item("Overwrite Existing Scene");
+ this_import->add_item("Overwrite Existing, Keep Materials");
+ this_import->add_item("Keep Existing, Merge with New");
+ this_import->add_item("Keep Existing, Ignore New");
+ vbc->add_margin_child("This Time:",this_import);
next_import = memnew( OptionButton );
- next_import->add_item(TTR("Overwrite Existing Scene"));
- next_import->add_item(TTR("Overwrite Existing, Keep Materials"));
- next_import->add_item(TTR("Keep Existing, Merge with New"));
- next_import->add_item(TTR("Keep Existing, Ignore New"));
- vbc->add_margin_child(TTR("Next Time:"),next_import);
+ next_import->add_item("Overwrite Existing Scene");
+ next_import->add_item("Overwrite Existing, Keep Materials");
+ next_import->add_item("Keep Existing, Merge with New");
+ next_import->add_item("Keep Existing, Ignore New");
+ vbc->add_margin_child("Next Time:",next_import);
*/
set_hide_on_ok(false);