diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-09 12:38:17 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-09 12:38:17 +0100 |
commit | d02a7bc00d76d50843f1b938914340135060a119 (patch) | |
tree | e4c4d41874c7d692cd2aeca7cc03aaf3c8a5a22d /scene | |
parent | ebe3cfc061d84d3d1b4496165d666b2bbed093f7 (diff) | |
parent | a40ccc2d7e48f5cf5bfe36504c2969cbdfa4aa6b (diff) |
Merge pull request #72953 from timothyqiu/i18n-improvements
Improve some editor strings for localization
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/collision_shape_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_shape_3d.cpp b/scene/3d/collision_shape_3d.cpp index dbd50cfd19..f1d918ad9b 100644 --- a/scene/3d/collision_shape_3d.cpp +++ b/scene/3d/collision_shape_3d.cpp @@ -124,7 +124,7 @@ PackedStringArray CollisionShape3D::get_configuration_warnings() const { PackedStringArray warnings = Node::get_configuration_warnings(); if (!Object::cast_to<CollisionObject3D>(get_parent())) { - warnings.push_back(RTR("CollisionShape3D only serves to provide a collision shape to a CollisionObject3D derived node. Please only use it as a child of Area3D, StaticBody3D, RigidBody3D, CharacterBody3D, etc. to give them a shape.")); + warnings.push_back(RTR("CollisionShape3D only serves to provide a collision shape to a CollisionObject3D derived node.\nPlease only use it as a child of Area3D, StaticBody3D, RigidBody3D, CharacterBody3D, etc. to give them a shape.")); } if (!shape.is_valid()) { |