summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-04 14:31:43 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-04 14:31:43 +0200
commitc97885be7d1da7ac1e327f36b68d061d42c46a56 (patch)
tree5be7d36a130519d935033f75039f434ba6f1a3f6 /editor/editor_properties.cpp
parent27dec32699a686c69d9284a3458736680e3d2307 (diff)
parent91204f6f3f701887716d4628baa72b4f647d8857 (diff)
downloadredot-engine-c97885be7d1da7ac1e327f36b68d061d42c46a56.tar.gz
Merge pull request #89811 from timothyqiu/missing-i18n
Fix missing i18n for some editor strings
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r--editor/editor_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index c6a6163a4e..4858fcf78f 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -2159,7 +2159,7 @@ EditorPropertyQuaternion::EditorPropertyQuaternion() {
warning_dialog->set_text(TTR("Temporary Euler will not be stored in the object with the original value. Instead, it will be stored as Quaternion with irreversible conversion.\nThis is due to the fact that the result of Euler->Quaternion can be determined uniquely, but the result of Quaternion->Euler can be multi-existent."));
euler_label = memnew(Label);
- euler_label->set_text("Temporary Euler");
+ euler_label->set_text(TTR("Temporary Euler"));
edit_custom_bc->add_child(warning);
edit_custom_bc->add_child(edit_custom_layout);