Merge pull request #114405 from KoBeWi/TracToR

Fix some invalid translation usages
This commit is contained in:
Rémi Verschelde
2026-01-01 16:47:35 +01:00
9 changed files with 31 additions and 31 deletions

View File

@@ -784,7 +784,7 @@ Variant EditorSettingsDialog::get_drag_data_fw(const Point2 &p_point, Control *p
return Variant();
}
String label_text = vformat(TTRC("Event %d"), selected->get_meta("event_index"));
String label_text = vformat(TTR("Event %d"), selected->get_meta("event_index"));
Label *label = memnew(Label(label_text));
label->set_modulate(Color(1, 1, 1, 1.0f));
shortcuts->set_drag_preview(label);