diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-21 14:41:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-21 14:41:18 +0100 |
commit | 78f1513928bd5a683f0a0b40d4a4fec42fb1d4f3 (patch) | |
tree | 7e1818e14fc96569d969437cf1e3cbfa35f12479 /editor/connections_dialog.cpp | |
parent | 0b776ebbe4105c5ef3b1c6314157f76be58227b7 (diff) | |
parent | 0693718164bcb5875af9211713bfa7c4cce86d58 (diff) |
Merge pull request #34508 from timothyqiu/i18n
Makes more editor strings translatable
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index f5a01dfb04..44034fd127 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -413,7 +413,7 @@ ConnectDialog::ConnectDialog() { vbc_right->add_margin_child(TTR("Extra Call Arguments:"), bind_editor, true); HBoxContainer *dstm_hb = memnew(HBoxContainer); - vbc_left->add_margin_child("Receiver Method:", dstm_hb); + vbc_left->add_margin_child(TTR("Receiver Method:"), dstm_hb); dst_method = memnew(LineEdit); dst_method->set_h_size_flags(SIZE_EXPAND_FILL); |