aboutsummaryrefslogtreecommitdiff
path: root/core/ustring.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/ustring.h')
-rw-r--r--core/ustring.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/ustring.h b/core/ustring.h
index 78c041fb9..e03f74f50 100644
--- a/core/ustring.h
+++ b/core/ustring.h
@@ -257,6 +257,17 @@ struct NoCaseComparator {
/* end of namespace */
//tool translate
+#ifdef TOOLS_ENABLED
+
String TTR(const String&);
+#else
+
+#define TTR(m_val) (String())
+
+#endif
+
+//tool or regular translate
+String RTR(const String&);
+
#endif