mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00: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:
parent
2e85105959
commit
7119d355eb
65 changed files with 202 additions and 207 deletions
|
@ -388,7 +388,7 @@ String CSharpLanguage::validate_path(const String &p_path) const {
|
|||
List<String> keywords;
|
||||
get_reserved_words(&keywords);
|
||||
if (keywords.find(class_name)) {
|
||||
return TTR("Class name can't be a reserved keyword");
|
||||
return RTR("Class name can't be a reserved keyword");
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue