aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/control_editor_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-05-21 01:18:35 +0200
committerRémi Verschelde2016-05-21 01:27:27 +0200
commit00d8f8604476b525869787f0962bf41b4b591061 (patch)
tree3c7503bc7f52678a8e342197a418ba10b776ad4d /tools/editor/plugins/control_editor_plugin.cpp
parentc2d754516f1c94674fc27afe329f41c34aedaaa9 (diff)
downloadgodot-00d8f8604476b525869787f0962bf41b4b591061.tar.gz
godot-00d8f8604476b525869787f0962bf41b4b591061.tar.zst
godot-00d8f8604476b525869787f0962bf41b4b591061.zip
i18n: Second pass at proofreading
Mostly removing commented out strings, plus a few critical ones that should not be translated.
Diffstat (limited to 'tools/editor/plugins/control_editor_plugin.cpp')
-rw-r--r--tools/editor/plugins/control_editor_plugin.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/editor/plugins/control_editor_plugin.cpp b/tools/editor/plugins/control_editor_plugin.cpp
index 0958343f2..9dff5e6ce 100644
--- a/tools/editor/plugins/control_editor_plugin.cpp
+++ b/tools/editor/plugins/control_editor_plugin.cpp
@@ -112,7 +112,7 @@ void ControlEditor::_key_move(const Vector2& p_dir, bool p_snap) {
if (p_snap)
motion*=snap_val->get_text().to_double();
- undo_redo->create_action(TTR("Edit Control"));
+ undo_redo->create_action("Edit Control");
for(ControlMap::Element *E=controls.front();E;E=E->next()) {
Control *control = E->key();
undo_redo->add_do_method(control,"set_pos",control->get_pos()+motion);
@@ -156,7 +156,7 @@ void ControlEditor::_input_event(InputEvent p_event) {
if (undo_redo) {
- undo_redo->create_action(TTR("Edit Control"));
+ undo_redo->create_action("Edit Control");
for(ControlMap::Element *E=controls.front();E;E=E->next()) {
Control *control = E->key();
undo_redo->add_do_method(control,"set_pos",control->get_pos());
@@ -752,17 +752,17 @@ ControlEditor::ControlEditor(EditorNode *p_editor) {
handle_len=10;
popup=memnew( PopupMenu );
- popup->add_check_item(TTR("Use Snap"));
- popup->add_item(TTR("Configure Snap.."));
+ popup->add_check_item("Use Snap");
+ popup->add_item("Configure Snap..");
add_child(popup);
snap_dialog = memnew( ConfirmationDialog );
snap_dialog->get_ok()->hide();
- snap_dialog->get_cancel()->set_text(TTR("Close"));
+ snap_dialog->get_cancel()->set_text("Close");
add_child(snap_dialog);
Label *l = memnew(Label);
- l->set_text(TTR("Snap:"));
+ l->set_text("Snap:");
l->set_pos(Point2(5,5));
snap_dialog->add_child(l);