mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
String: Remove TTR and DTR defines in non-tools build
This ensures we don't use TTR in runtime code, as it's specifically meant to source translations for the editor.
This commit is contained in:
@@ -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."));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user