We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04692d8 commit f61fe27Copy full SHA for f61fe27
core/string/translation_domain.cpp
@@ -389,6 +389,10 @@ void TranslationDomain::set_pseudolocalization_suffix(const String &p_suffix) {
389
}
390
391
StringName TranslationDomain::pseudolocalize(const StringName &p_message) const {
392
+ if (p_message.is_empty()) {
393
+ return p_message;
394
+ }
395
+
396
String message = p_message;
397
int length = message.length();
398
if (pseudolocalization.override_enabled) {
0 commit comments