diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-04 11:21:50 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-04 11:21:50 +0200 |
commit | 6d9a797ea48e521bf8a7bba1b4b3b1924c77ab6f (patch) | |
tree | 0c075cb126c5beb0517f2c0f58b7e9166bcc61b2 /scene/main | |
parent | 783b15078d8ac1f240791d81407963a420c85391 (diff) | |
parent | 210810bacb084392f552966eb5b970a415d6ed6e (diff) | |
download | redot-engine-6d9a797ea48e521bf8a7bba1b4b3b1924c77ab6f.tar.gz |
Merge pull request #97624 from timothyqiu/atrn
Fix `atr_n()` behavior when auto translation is disabled
Diffstat (limited to 'scene/main')
-rw-r--r-- | scene/main/node.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scene/main/node.h b/scene/main/node.h index 298cbc7e59..799478fa35 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -743,8 +743,13 @@ public: virtual void set_translation_domain(const StringName &p_domain) override; void set_translation_domain_inherited(); - _FORCE_INLINE_ String atr(const String p_message, const StringName p_context = "") const { return can_auto_translate() ? tr(p_message, p_context) : p_message; } - _FORCE_INLINE_ String atr_n(const String p_message, const StringName &p_message_plural, int p_n, const StringName p_context = "") const { return can_auto_translate() ? tr_n(p_message, p_message_plural, p_n, p_context) : p_message; } + _FORCE_INLINE_ String atr(const String &p_message, const StringName &p_context = "") const { return can_auto_translate() ? tr(p_message, p_context) : p_message; } + _FORCE_INLINE_ String atr_n(const String &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context = "") const { + if (can_auto_translate()) { + return tr_n(p_message, p_message_plural, p_n, p_context); + } + return p_n == 1 ? p_message : String(p_message_plural); + } /* THREADING */ |