summaryrefslogtreecommitdiff
path: root/scene/2d/path_2d.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-28 21:12:44 +0200
committerGitHub <noreply@github.com>2022-03-28 21:12:44 +0200
commit1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch)
treec8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/2d/path_2d.cpp
parent0c7a15d777073860603f7f36f0eed731ff745ada (diff)
parent7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff)
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/2d/path_2d.cpp')
-rw-r--r--scene/2d/path_2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/path_2d.cpp b/scene/2d/path_2d.cpp
index d001652ca3..aa68349329 100644
--- a/scene/2d/path_2d.cpp
+++ b/scene/2d/path_2d.cpp
@@ -263,7 +263,7 @@ TypedArray<String> PathFollow2D::get_configuration_warnings() const {
if (is_visible_in_tree() && is_inside_tree()) {
if (!Object::cast_to<Path2D>(get_parent())) {
- warnings.push_back(TTR("PathFollow2D only works when set as a child of a Path2D node."));
+ warnings.push_back(RTR("PathFollow2D only works when set as a child of a Path2D node."));
}
}