diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-19 11:56:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 11:56:29 +0200 |
commit | 71c40ff4da85a4770958533cdc65f2c9f7ddeaff (patch) | |
tree | ed7ad88cad6f12c4c60f8db404a2bc192ca11fbb /core/string | |
parent | c0d189fbb85cbfc1b7e91e38d882e123730f7e98 (diff) | |
parent | fc3b845c072538f33836db38eb9d4f4d3fcfb16a (diff) |
Merge pull request #61180 from timothyqiu/property-extract
Diffstat (limited to 'core/string')
-rw-r--r-- | core/string/ustring.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 0d10d4cf10..e4f6c3327a 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -528,6 +528,16 @@ String DTRN(const String &p_text, const String &p_text_plural, int p_n, const St #define TTRGET(m_value) (m_value) #endif +// Use this to mark property names for editor translation. +// Often for dynamic properties defined in _get_property_list(). +// Property names defined directly inside EDITOR_DEF, GLOBAL_DEF, and ADD_PROPERTY macros don't need this. +#define PNAME(m_value) (m_value) + +// Similar to PNAME, but to mark groups, i.e. properties with PROPERTY_USAGE_GROUP. +// Groups defined directly inside ADD_GROUP macros don't need this. +// The arguments are the same as ADD_GROUP. m_prefix is only used for extraction. +#define GNAME(m_value, m_prefix) (m_value) + // Runtime translate for the public node API. String RTR(const String &p_text, const String &p_context = ""); String RTRN(const String &p_text, const String &p_text_plural, int p_n, const String &p_context = ""); |