diff options
author | saturneric <[email protected]> | 2024-09-28 12:10:17 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-09-28 12:10:17 +0000 |
commit | 8d7546ad5bab254d8c84289b6e3986f3e2027a2a (patch) | |
tree | b240857a5b95c7b9f805483204a2e694cc031c1e /include | |
parent | fix: addressing some of the issues identified (diff) | |
download | Modules-8d7546ad5bab254d8c84289b6e3986f3e2027a2a.tar.gz Modules-8d7546ad5bab254d8c84289b6e3986f3e2027a2a.zip |
fix: send origin meta text to application
Diffstat (limited to 'include')
-rw-r--r-- | include/GFModuleCommonUtils.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/GFModuleCommonUtils.hpp b/include/GFModuleCommonUtils.hpp index 7e1f654..af2ba4d 100644 --- a/include/GFModuleCommonUtils.hpp +++ b/include/GFModuleCommonUtils.hpp @@ -66,6 +66,8 @@ #define REGISTER_TRANS_READER() \ GFAppRegisterTranslatorReader(GFGetModuleID(), TranslatorDataReader) +#define GC_TR(text) QT_TRANSLATE_NOOP("GTrC", text) + #define CONCATENATE_DETAIL(x, y) x##y #define CONCATENATE(x, y) CONCATENATE_DETAIL(x, y) #define GTRC_TR(name, src) CONCATENATE(GTrC_, name)::tr(src) |