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

@@ -1096,7 +1096,7 @@ void ProjectManager::_set_new_tag_name(const String p_name) {
for (const String &c : forbidden_tag_characters) {
if (p_name.contains(c)) {
tag_error->set_text(vformat(TTRC("These characters are not allowed in tags: %s."), String(" ").join(forbidden_tag_characters)));
tag_error->set_text(vformat(TTR("These characters are not allowed in tags: %s."), String(" ").join(forbidden_tag_characters)));
return;
}
}